﻿/* FLEX ADMIN CORE CSS */

/* We've used some big text art as comments to split up our sections for easy readability. This works great with a text editor like Sublime Text! */

/* Global Styles

       ,o888888o.    8 8888         ,o888888o.     8 888888888o          .8.          8 8888
      8888     `88.  8 8888      . 8888     `88.   8 8888    `88.       .888.         8 8888
   ,8 8888       `8. 8 8888     ,8 8888       `8b  8 8888     `88      :88888.        8 8888
   88 8888           8 8888     88 8888        `8b 8 8888     ,88     . `88888.       8 8888
   88 8888           8 8888     88 8888         88 8 8888.   ,88'    .8. `88888.      8 8888
   88 8888           8 8888     88 8888         88 8 8888888888     .8`8. `88888.     8 8888
   88 8888   8888888 8 8888     88 8888        ,8P 8 8888    `88.  .8' `8. `88888.    8 8888
   `8 8888       .8' 8 8888     `8 8888       ,8P  8 8888      88 .8'   `8. `88888.   8 8888
      8888     ,88'  8 8888      ` 8888     ,88'   8 8888    ,88'.888888888. `88888.  8 8888
       `8888888P'    8 888888888888 `8888888P'     8 888888888P .8'       `8. `88888. 8 888888888888

*/

body {
    background: #ecf0f1;
    color: #59595a;
    line-height: 1.5;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

@media screen and (min-width: 768px) {
    html,
    body {
        height: 100%;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: 1.1;
}

.bolder {
    font-weight: 800;
}

a {
    color: #59595a;
    text-decoration: none;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

    a:visited,
    a:active,
    a:focus,
    a:hover {
        text-decoration: none;
        outline: 0;
    }

[class^="ti-"].pull-right,
[class*=" ti-"].pull-right {
    line-height: inherit;
}

/*@media(min-width:768px) {
    body {
        background: #4f5061;
    }
}*/

/* hr restyled*/
hr {
    display: block;
    margin: 1em 0;
    padding: 0;
    height: 1px;
    border: 0;
    border-top: 1px solid #e3e6f3;
}

/* Images and avatars */
img {
    max-width: 100%;
    height: auto;
}

img {
    -ms-interpolation-mode: bicubic;
}

.img-rounded {
    border-radius: 2px;
}

.img-circle {
    border-radius: 50%;
}

.avatar {
    position: relative;
    display: inline-block;
    width: 100%;
}

.avatar-lg {
    width: 128px;
}

.avatar-md {
    width: 64px;
}

.avatar-sm {
    width: 32px;
}

.avatar-xs {
    width: 16px;
}

.bordered-avatar {
    border: 3px solid #fff;
    background-color: #eaecf6;
}

/* Remove contenteditable outlines */
[contenteditable],
[contenteditable]:hover,
[contenteditable]:active {
    outline: 0;
}

blockquote {
    margin: 15px 0;
    padding: 10px;
    border: 0;
    font-size: 13px;
    float: left;
    display: block;
}

    blockquote:before {
        color: #4f5061;
        font-family: Georgia, serif;
        content: "“";
        font-size: 40px;
        margin-right: 10px;
        float: left;
        line-height: 1;
    }

    blockquote p {
        display: inline;
    }

.pullquote {
    font-style: italic;
    display: block;
    float: left;
    font-size: 1.6em;
    width: 55%;
}

    .pullquote:before {
        font-family: Georgia, serif;
        content: "“";
        font-style: normal;
        font-size: 40px;
        float: left;
        color: #E2E4E9;
    }

.drop-cap {
    float: left;
    font-size: 75px;
    line-height: 60px;
    padding-top: 4px;
    padding-right: 8px;
    font-family: Georgia;
}

    .drop-cap.boxed {
        padding: 10px;
        margin: 0 5px 5px 0;
        border-radius: 2px;
    }

ol {
    list-style-position: outside;
    list-style-type: decimal;
}

ul {
    list-style-position: outside;
    list-style-type: disc;
    line-height: 1.5;
}

    ol.list-style-none,
    ul.list-style-none {
        list-style: none;
        padding: 0;
    }

.nav {
    padding: 0;
    border-bottom: 1px solid #e3e6f3;
}

    .nav.nav-cliente {
        /*padding: 0;*/
        border-bottom: none;
    }

        .nav.nav-cliente li.active {
            left: 45px;
            width: auto;
        }


.pageload {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 99999;
}

    .pageload .loader {
        position: absolute;
        margin: -12px 0 0 -12px;
        top: 50%;
        left: 50%;
        text-align: center;
        width: 24px;
    }

.loader:after {
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 auto;
    display: block;
    z-index: 2000;
    border-radius: 24px;
    content: "";
    -webkit-animation: spinner 400ms linear infinite;
    -ms-animation: spinner 400ms linear infinite;
    animation: spinner 400ms linear infinite;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-ms-keyframes spinner {
    0% {
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media print {
    .content-wrap {
        width: 100%;
    }

    .sidebar,
    .header,
    .no-print {
        display: none;
    }
}

.header {
    min-height: 50px;
    z-index: 1000;
    border-radius: 0;
    border: 0;
    margin: 0;
    /* Branding */
}

    .header li:hover,
    .header li a:hover,
    .header li a:active {
        background: transparent;
    }

    .header .brand {
        width: 200px;
        float: left;
    }

        .header .brand .navbar-brand {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            padding-top: 0;
            padding-bottom: 0;
            line-height: 50px;
        }

            .header .brand .navbar-brand img {
                max-height: 25px;
                margin-right: 5px;
                margin-top: -5px;
            }

    .header .navbar-nav {
        margin: 0;
    }

        .header .navbar-nav > li > a {
            padding-top: 15px;
            padding-bottom: 15px;
            max-height: 50px;
        }

            .header .navbar-nav > li > a:focus {
                background-color: transparent;
            }

    .header .header-avatar {
        width: 32px;
        margin-top: -6px;
    }

    .header > .nav > li > a > .badge {
        position: absolute;
        top: 8px;
        right: 2px;
        width: 16px;
        height: 16px;
        font-size: 11px;
        line-height: 1.5;
        text-align: center;
        padding: 0;
    }

    .header .header-search {
        position: relative;
    }

        .header .header-search .search-container {
            top: 10px;
            width: 0;
            -webkit-transition: width 300ms;
            transition: width 300ms;
            position: absolute;
            left: 40px;
        }

            .header .header-search .search-container .search {
                height: 30px;
                border: 0;
                padding: 0;
                text-indent: 10px;
                border-top-right-radius: 2px;
                border-bottom-right-radius: 2px;
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

        .header .header-search .toggle-search {
            padding: 5px 9px !important;
            margin: 10px;
            width: 30px;
            height: 30px;
            border-radius: 2px;
        }

        .header .header-search.open > a {
            z-index: 1001;
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
            border-top-left-radius: 2px;
            border-bottom-left-radius: 2px;
        }

        .header .header-search.open .search-container {
            width: 300px;
        }

            .header .header-search.open .search-container .search {
                padding-right: 12px;
            }

    .header .notifications {
        position: relative;
    }

        .header .notifications .panel {
            border: 0;
        }

        .header .notifications .panel-heading {
            padding: 5px 15px;
            border-top-right-radius: 0;
            border-top-left-radius: 0;
        }

        .header .notifications ul li a {
            font-size: 13px;
        }

        .header .notifications .panel-footer {
            padding: 5px 15px;
        }

            .header .notifications .panel-footer > a {
                font-size: 13px;
            }

        .header .notifications .m-body {
            display: block;
            overflow: hidden;
        }

        .header .notifications .time {
            display: block;
        }

        .header .notifications .label {
            font-size: 10px;
        }

        .header .notifications a:hover,
        .header .notifications a:visited,
        .header .notifications a:active {
            color: #59595a;
        }

.horizontal-layout .brand {
    width: auto;
    background-color: transparent;
}

@media screen and (min-width: 768px) {
    .header {
        position: absolute;
        width: 100%;
        padding: 0 15px;
        /* Branding */
    }

        .header .brand {
            margin-left: -15px;
        }

            .header .brand .navbar-brand {
                width: 100%;
            }

        .header .header-avatar {
            float: left;
        }

        .header .notifications .dropdown-menu {
            min-width: 350px;
        }

    .app > header .dropdown-menu {
        border-top: 0;
        padding: 0;
        box-shadow: 0px 2px 5px rgba(88, 96, 114, 0.05);
        -webkit-animation-duration: 300ms;
        animation-duration: 300ms;
    }
}

@media (max-width: 767px) {
    .header {
        width: 100%;
    }

        .header.header-fixed {
            position: fixed;
            width: 100%;
            top: 0;
        }

        .header > .brand {
            width: 100%;
            text-align: center;
        }

            .header > .brand .navbar-brand {
                display: inline-block;
                float: none;
                text-align: center;
            }

        .header .notifications {
            margin-right: 10px;
        }

        .header .navbar-nav .open .dropdown-menu {
            position: absolute;
            margin-top: 0;
            background-color: #fff;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        }

        .header .navbar-collapse {
            width: 100%;
        }

        .header .off-right {
            position: absolute;
            right: 0;
            top: 0;
        }

        .header .off-left {
            position: absolute;
            left: 0;
            top: 0;
        }

        .header .navbar-toggle,
        .header .brand [data-toggle="offscreen"] {
            z-index: 999;
            padding: 10px 15px;
            margin-top: 8px;
            margin-right: 0;
            margin-left: 0;
            margin-bottom: 8px;
            background-color: transparent;
            background-image: none;
            border: 1px solid transparent;
            border-radius: 2px;
        }

        .header .search-container {
            width: 100%;
            max-width: 220px;
        }

    .app > .header > .nav > li {
        float: left;
    }

    .app > .header > .navbar-nav {
        float: left;
    }

    .app > .header > .navbar-right {
        float: right;
    }

    .app > .header .dropdown-menu {
        position: fixed !important;
        top: 100px;
        left: 0;
        right: 0;
        border-radius: 0 !important;
    }

    .app > header .dropdown-menu {
        padding: 0;
        border-bottom: 1px solid #e3e6f3 !important;
        box-shadow: none !important;
        -webkit-animation-duration: 0ms;
        animation-duration: 0ms;
    }
}
/*
 * $Sidebar layout
 *
 * Core theme layout styles
 */
/* main sidebar */
.sidebar {
    width: 200px;
}

    .sidebar .nav-title {
        font-size: 11px;
        padding: 10px 0 0;
        letter-spacing: 1px;
    }

    .sidebar > footer {
        position: absolute;
        bottom: 0;
        width: 100%;
    }
/* Menu links */
.main-navigation ul > li > a {
    display: block;
    padding: 10px 15px;
    text-align: left;
    width: 100%;
}

.main-navigation ul > li i {
    padding-right: 10px;
    min-width: 25px;
    text-align: center;
    font-size: 11px;
}

.main-navigation .nav > li > a:hover,
.main-navigation .nav > li > a:focus,
.main-navigation .nav .open > a,
.main-navigation .nav .open > a:hover,
.main-navigation .nav .open > a:focus {
    border-color: transparent;
    background-color: transparent;
}

.main-navigation {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
/* Disable background highlighting on touch devices */
.touch li:hover,
.touch li:focus,
.touch a:hover,
.touch a:focus {
    background-color: transparent !important;
}
/* collapsible menu */
.app .sidebar ul > li {
    position: relative;
    display: block;
}

    .app .sidebar ul > li:before,
    .app .sidebar ul > li:after {
        content: " ";
        display: table;
    }

    .app .sidebar ul > li:after {
        clear: both;
    }

    .app .sidebar ul > li a {
        position: relative;
    }

    .app .sidebar ul > li.open > .dropdown-menu {
        display: block;
    }

    .app .sidebar ul > li.open > a .toggle-accordion:before {
        content: "\e64b";
    }

    .app .sidebar ul > li > ul {
        position: relative;
        display: none;
        padding: 0;
        margin: 0;
        list-style: none;
        -webkit-transition: background-color 400ms ease;
        transition: background-color 400ms ease;
    }

.app .sidebar .nav > li .sub-menu {
    font-size: 12px;
}

.app .sidebar .nav > li > .sub-menu > li > a {
    padding: 8px 15px 8px 40px !important;
}

    .app .sidebar .nav > li > .sub-menu > li > a + .sub-menu > li > a {
        padding: 8px 15px 8px 60px !important;
    }

        .app .sidebar .nav > li > .sub-menu > li > a + .sub-menu > li > a + .sub-menu > li > a {
            padding: 8px 15px 8px 80px !important;
        }

            .app .sidebar .nav > li > .sub-menu > li > a + .sub-menu > li > a + .sub-menu > li > a + .sub-menu > li > a {
                padding: 8px 15px 8px 100px !important;
            }

.app .sidebar li a .toggle-accordion {
    float: right;
    padding: 0;
    font-size: 8px;
    line-height: 20px;
    min-width: 25px !important;
}

    .app .sidebar li a .toggle-accordion:before {
        font-family: "themify";
        font-style: normal;
        font-weight: normal;
        content: "\e649";
    }

@media screen and (min-width: 768px) {
    .app.small-menu {
        /* Uncomment this if you want the layout to be scrollable with small menu
        &.boxed > .header {
            width: inherit;
        }
        & > .header {
            position: fixed;
        }
        .wrapper {
            position: relative;
        }
        .main-navigation {
            position: relative;
            overflow: visible;
        }*/
    }

        .app.small-menu .brand {
            width: 70px;
        }

        .app.small-menu .navbar-brand {
            width: 100%;
            text-align: center;
        }

            .app.small-menu .navbar-brand span {
                display: none;
                visibility: hidden;
            }

            .app.small-menu .navbar-brand i {
                margin: 0;
            }

    .slimScrollDiv {
        overflow: visible !important;
    }

    .app.small-menu .sidebar {
        width: 70px;
    }

        .app.small-menu .sidebar .nav-title {
            text-align: center;
        }

        .app.small-menu .sidebar .main-navigation {
            overflow: visible;
        }

            .app.small-menu .sidebar .main-navigation > ul > li.open > .sub-menu {
                display: none !important;
            }

            .app.small-menu .sidebar .main-navigation > ul > li {
                position: relative;
                text-align: center;
            }

                .app.small-menu .sidebar .main-navigation > ul > li > a {
                    padding: 15px;
                }

                    .app.small-menu .sidebar .main-navigation > ul > li > a > span {
                        display: none;
                        visibility: hidden;
                    }

                .app.small-menu .sidebar .main-navigation > ul > li i {
                    display: block;
                    padding: 0;
                    min-width: 100%;
                }

                .app.small-menu .sidebar .main-navigation > ul > li:hover > .sub-menu {
                    display: block !important;
                }

            .app.small-menu .sidebar .main-navigation .nav > li > a > .toggle-accordion {
                display: none;
            }

            .app.small-menu .sidebar .main-navigation .nav > li > .sub-menu {
                position: absolute;
                top: 0;
                left: 100%;
                border: 1px solid #e3e6f3;
                border-left: 0;
                background: #fff;
                z-index: 1000;
                display: none !important;
                padding: 0;
                list-style: none;
                min-width: 180px;
            }

                .app.small-menu .sidebar .main-navigation .nav > li > .sub-menu > li.active,
                .app.small-menu .sidebar .main-navigation .nav > li > .sub-menu > li > a:hover {
                    background-color: #f1f2f9;
                }

                .app.small-menu .sidebar .main-navigation .nav > li > .sub-menu > li > a {
                    margin: 0;
                    padding: 3px 20px !important;
                    width: 100%;
                    font-size: 13px;
                    color: #59595a;
                    text-align: left;
                }

                    .app.small-menu .sidebar .main-navigation .nav > li > .sub-menu > li > a + .sub-menu > li > a {
                        padding: 8px 15px 8px 30px !important;
                    }

                        .app.small-menu .sidebar .main-navigation .nav > li > .sub-menu > li > a + .sub-menu > li > a + .sub-menu > li > a {
                            padding: 8px 15px 8px 40px !important;
                        }

                            .app.small-menu .sidebar .main-navigation .nav > li > .sub-menu > li > a + .sub-menu > li > a + .sub-menu > li > a + .sub-menu > li > a {
                                padding: 8px 15px 8px 50px !important;
                            }
}
/* Sidebar sizes */
@media screen and (min-width: 768px) {
    .sidebar-300 {
        width: 300px;
    }

    .sidebar-250 {
        width: 250px;
    }

    .sidebar-400 {
        width: 400px;
    }
}

@media (max-width: 767px) {
    .main-navigation {
        position: relative;
    }

    .app aside.offscreen-right .content-wrap {
        position: relative;
        height: 100%;
    }

    .app aside.offscreen-right .wrapper {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .sidebar-300,
    .sidebar-250,
    .sidebar-400 {
        width: 100%;
    }

    .nav-cliente li.active {
        background-color: #337ab7;
        position: unset;
        font-size: smaller;
        text-align: center
    }

    ul.dropdown-menu.animated.zoomIn.list-empresas {
        width: auto !important;
    }

        ul.dropdown-menu.animated.zoomIn.list-empresas li img {
            float: left
        }
}

ul.dropdown-menu.animated.zoomIn.list-empresas {
    width: 500px
}
/*
 * $Content Layout
 *
 * Core theme layout styles
 */
/* main app area */
.main-content {
    background: #f1f4f9;
}

    .main-content .content-wrap .wrapper {
        padding: 15px 15px 15px 15px;
    }

    .main-content .header .nav > li:active > a,
    .main-content .header .nav > li.active > a {
        background-color: #f1f4f9;
        color: #59595a;
    }

section.main-content > footer,
section.main-content > .fffix > footer,
aside > footer,
aside > .fffix > footer {
    min-height: 50px;
    padding: 0 15px;
}

    section.main-content > footer p,
    section.main-content > .fffix > footer p,
    aside > footer p,
    aside > .fffix > footer p {
        display: inline-table;
        margin: 19px 0;
        line-height: 1;
    }

.layout .header {
    z-index: 997;
}

.equal-blocks {
    display: table;
    width: 100%;
    border-spacing: 0;
    table-layout: fixed;
}

    .equal-blocks > .block {
        height: 100%;
        position: relative;
        display: table-cell;
        vertical-align: middle;
        float: none;
    }

@media screen and (min-width: 768px) {
    .container,
    .app {
        position: relative;
        height: 100%;
    }

    section .wrapper,
    aside .wrapper {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        overflow-x: hidden;
        overflow-y: auto;
    }

    section.main-content > footer,
    section.main-content > .fffix > footer,
    aside > footer,
    aside > .fffix > footer {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
    }

    .app > .layout {
        height: 100%;
        display: table;
        table-layout: fixed;
        width: 100%;
        overflow: hidden;
    }

        .app > .layout > section,
        .app > .layout > aside {
            height: 100%;
            position: relative;
            display: table-cell;
            vertical-align: top;
            float: none;
        }

    .app .header-fixed + .layout {
        padding-top: 50px;
    }

    .content-wrap {
        position: relative;
        height: 100%;
    }

    .header + .content-wrap .wrapper {
        top: 50px;
    }

    .slimscroll {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
}

@media (max-width: 767px) {
    .app .layout {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .app .header-fixed + .layout {
        padding-top: 100px;
    }

    .main-content {
        overflow: hidden;
    }

        .main-content .header {
            padding: 0 15px;
        }

            .main-content .header > ul > li {
                display: block;
                float: left;
            }

            .main-content .header.header-fixed + .content-wrap {
                padding-top: 65px;
            }

                .main-content .header.header-fixed + .content-wrap.no-padding {
                    padding-top: 50px;
                }
}
/* Chat panel */
.chat-sidebar .user {
    position: relative;
}

    .chat-sidebar .user i {
        position: absolute;
        right: 0;
        top: 10px;
    }

@media screen and (min-width: 768px) {
    .app aside.chat-sidebar {
        width: 300px;
        display: none;
    }

        .app aside.chat-sidebar .wrapper {
            -webkit-animation-duration: 500ms;
            animation-duration: 500ms;
        }

    .app.move-right .chat-sidebar {
        display: table-cell;
    }

        .app.move-right .chat-sidebar .slimScrollDiv,
        .app.move-right .chat-sidebar .slimscroll {
            height: 100% !important;
        }
}

.chat-user {
    display: block;
    clear: both;
    position: relative;
    cursor: pointer;
    margin: 5px;
    padding: 10px;
    border-radius: 2px;
}

    .chat-user:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

    .chat-user p {
        margin: 0;
    }

    .chat-user .user-avatar {
        float: left;
        margin-right: 10px;
        position: relative;
    }

        .chat-user .user-avatar img {
            width: 35px;
        }

        .chat-user .user-avatar .status {
            position: absolute;
            right: 0;
            top: 0;
            border: 2px solid #fff;
            border-radius: 50%;
            width: 12px;
            height: 12px;
            margin-top: -2px;
        }

    .chat-user .user-details {
        overflow: hidden;
    }

        .chat-user .user-details .user-department {
            display: block;
            color: #727274;
        }

        .chat-user .user-details .status {
            height: 14px;
            position: absolute;
            right: 15px;
            top: 50%;
            margin-top: -7px;
        }
/* Loading wrapper */
.loader {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: relative;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ti-caret:before {
    font-size: 10px !important;
}

.cover {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.95;
    filter: alpha(opacity=95);
    z-index: 0;
}
/* Layout options */
.fixed-scroll.boxed > .header {
    width: inherit;
}

.fixed-scroll > .header {
    position: fixed;
}

.fixed-scroll .wrapper {
    position: relative;
}

.fixed-scroll .main-navigation {
    position: relative;
    overflow: visible;
}

.boxed {
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
    .boxed {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .boxed {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .boxed {
        width: 1170px;
    }
}

.app.horizontal-layout > .header .brand {
    background-color: transparent;
}

@media (max-width: 767px) {
    .app.horizontal-layout > .header .navbar-collapse .dropdown-menu {
        position: relative !important;
        top: auto;
        box-shadow: none;
    }

    .app.horizontal-layout .nav li:before,
    .app.horizontal-layout .nav li:after {
        content: " ";
        display: table;
    }

    .app.horizontal-layout .nav li:after {
        clear: both;
    }
}

.language-dropdown .flag {
    width: 16px;
    margin-top: -2px;
}

.right-menu .header-search .search-container {
    left: auto;
    right: 40px;
}

    .right-menu .header-search .search-container .search {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: 2px;
        border-bottom-left-radius: 2px;
    }

.right-menu .header-search.open > a {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

@media screen and (min-width: 768px) {
    .right-menu .brand {
        float: right;
        margin-left: 0;
        margin-right: -15px;
    }
}

.right-menu.small-menu .brand {
    float: right;
}

.right-menu.small-menu .main-navigation > ul > li .sub-menu {
    border-left: 1px solid #e3e6f3 !important;
    border-right: 0 !important;
}

@media screen and (min-width: 768px) {
    .right-menu.small-menu .main-navigation > ul > li > .sub-menu {
        left: auto !important;
        right: 100% !important;
    }

    .right-menu .header .navbar-nav.navbar-right:last-child {
        margin-right: 0;
        margin-left: -15px;
    }
}

[data-animation] {
    visibility: hidden;
}

.animated {
    visibility: visible !important;
}

.visible {
    visibility: visible;
}

.arrow {
    position: absolute;
    height: 0;
    width: 0;
}

    .arrow:after {
        border-width: 10px;
        content: "";
        border-color: rgba(0, 0, 0, 0);
        border-style: solid;
        display: block;
    }

    .arrow.left:after {
        border-left-color: #fff;
        border-right-width: 0;
        content: " ";
    }

    .arrow.left,
    .arrow.right {
        top: 50%;
        margin-top: -10px;
    }

    .arrow.left {
        left: 0;
    }

    .arrow.right:after {
        border-right-color: #fff;
        border-left-width: 0;
        content: " ";
    }

    .arrow.right {
        right: 10px;
    }

.fffix {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
}
/*
 * $Off Screen Menu
 *
 */
@media (max-width: 767px) {
    html,
    body {
        height: 100%;
    }

    .offscreen {
        overflow: hidden;
    }

    .app {
        position: relative;
        width: 100%;
        height: 100%;
    }

        .app.move-right .main-content .fffix,
        .app.move-left .main-content .fffix {
            position: static;
        }

        .app.move-right > .header,
        .app.move-left > .header {
            z-index: 0;
        }

    .layout,
    .header {
        -webkit-backface-visibility: hidden;
        position: relative;
        width: 100%;
        -webkit-transition: -webkit-transform 300ms ease 0s;
        transition: transform 300ms ease 0s;
    }

        .layout:before,
        .layout:after {
            content: " ";
            display: table;
        }

        .layout:after {
            clear: both;
        }

    .offscreen-left {
        -webkit-backface-visibility: hidden;
        width: 280px;
        height: 100%;
        overflow: auto;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
        -webkit-overflow-scrolling: touch;
        -webkit-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
    }

        .offscreen-left * {
            -webkit-backface-visibility: hidden;
            -webkit-transform: translate3d(0, 0, 0);
        }

    .offscreen-right {
        -webkit-backface-visibility: hidden;
        width: 280px;
        height: 100%;
        overflow: auto;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
        -webkit-overflow-scrolling: touch;
        -webkit-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
        transform: translate(100%, 0);
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
    }

        .offscreen-right * {
            -webkit-backface-visibility: hidden;
        }

    .move-left > .layout,
    .move-left > .header {
        -webkit-transform: translate(280px, 0);
        -ms-transform: translate(280px, 0);
        transform: translate(280px, 0);
        -webkit-transform: translate3d(280px, 0, 0);
        -ms-transform: translate(280px, 0, 0);
        transform: translate3d(280px, 0, 0);
        -webkit-transition: -webkit-transform 300ms ease;
        transition: transform 300ms ease;
    }

    .move-right > .layout,
    .move-right > .header {
        -webkit-transform: translate(-280px, 0);
        -ms-transform: translate(-280px, 0);
        transform: translate(-280px, 0);
        -webkit-transform: translate3d(-280px, 0, 0);
        -ms-transform: translate(-280px, 0, 0);
        transform: translate3d(-280px, 0, 0);
        -webkit-transition: -webkit-transform 300ms ease;
        transition: transform 300ms ease;
    }

    .offscreen > .layout {
        position: absolute;
        top: 0;
        bottom: 0;
        overflow: visible;
    }

    .no-csstransforms .offscreen-left {
        left: -280px;
    }

    .no-csstransforms .offscreen-right {
        right: -280px;
    }

    .no-csstransforms .move-right > .layout,
    .no-csstransforms .move-right > .header {
        right: 280px;
    }

    .no-csstransforms .move-left > .layout,
    .no-csstransforms .move-left > .header {
        left: 280px;
    }

    .move-left .exit-offscreen,
    .move-right .exit-offscreen {
        -webkit-backface-visibility: hidden;
        cursor: pointer;
        display: block;
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }
}

.widget {
    position: relative;
    border-radius: 2px;
    margin-bottom: 20px;
    background-color: #fff;
}

    .widget .widget-header,
    .widget .widget-body,
    .widget .widget-footer {
        position: relative;
        padding: 15px;
        z-index: 995;
    }

        .widget .widget-header:before,
        .widget .widget-body:before,
        .widget .widget-footer:before,
        .widget .widget-header:after,
        .widget .widget-body:after,
        .widget .widget-footer:after {
            content: " ";
            display: table;
        }

        .widget .widget-header:after,
        .widget .widget-body:after,
        .widget .widget-footer:after {
            clear: both;
        }

    .widget .widget-header {
        border-top-left-radius: 2px;
        border-top-right-radius: 2px;
    }

    .widget .widget-footer {
        border-bottom-left-radius: 2px;
        border-bottom-right-radius: 2px;
    }

.dash-tile {
    position: relative;
    background-color: #fff;
    border-radius: 2px;
    padding: 15px;
    margin-bottom: 20px;
}

    .dash-tile .tile-title {
        text-transform: uppercase;
        font-size: 85%;
    }

        .dash-tile .tile-title.title-heading {
            width: 100%;
            position: relative;
        }

            .dash-tile .tile-title.title-heading:after {
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                bottom: -5px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.24);
                border-top: 1px solid rgba(133, 133, 133, 0.01);
            }

    .dash-tile .tile-stats {
        font-size: 24px;
        margin-top: 15px;
    }

    .dash-tile .tile-chart {
        width: 100%;
        position: absolute !important;
        bottom: 25px;
        left: 0;
        right: 0;
        height: 40px;
    }

    .dash-tile .tile-bottom {
        display: block;
        white-space: nowrap;
        margin-top: 1px;
    }

    .dash-tile .tile-icon {
        position: absolute;
        top: 50%;
        right: 15px;
        font-size: 80px;
        color: rgba(0, 0, 0, 0.1);
        line-height: 0;
        margin-top: -40px;
    }
/*
 *  Toggle $Accordion
 *
 */
.accordion dt,
.toggle dt {
    display: block;
    position: relative;
    text-decoration: none;
    background: #ffffff;
    border-radius: 2px;
    margin-bottom: 10px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

    .accordion dt a,
    .toggle dt a {
        color: #59595a;
        padding: 15px;
        display: block;
        font-weight: 400;
    }

        .accordion dt a:after,
        .toggle dt a:after {
            font-family: 'themify';
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 24px;
            -moz-osx-font-smoothing: grayscale;
            content: "\e61a";
            position: absolute;
            right: 10px;
            width: 24px;
            height: 24px;
            text-align: center;
            font-size: 12px;
            border: 1px solid #d1d5eb;
            color: #d1d5eb;
            border-radius: 50%;
            top: 50%;
            margin-top: -12px;
        }

        .accordion dt a.active:after,
        .toggle dt a.active:after {
            content: "\e622";
        }

.accordion dd,
.toggle dd {
    padding: 0 15px 15px;
}

    .accordion dd a,
    .toggle dd a {
        display: block;
    }

.accordion dd,
.toggle dd {
    border-top: 0;
}

    .accordion dd:last-of-type,
    .toggle dd:last-of-type {
        position: relative;
    }
/*
 *  $Widgets
 *
 */
.post .list-group-item,
.panel.post .panel-heading {
    border-color: #1AADD1;
}
/* Toggle */
.toggle-active {
    cursor: pointer;
}

    .toggle-active.active {
        color: #daac16;
    }
/* Circular icon */
.circle-icon {
    float: left;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    color: #fff;
    text-align: center;
    font-size: 20px;
    line-height: 50px;
}

.header .circle-icon {
    width: 32px;
    height: 32px;
    margin: 0;
    position: relative;
}

    .header .circle-icon > i {
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -6px 0 0 -6px;
        font-size: 12px;
    }
/* Photo Post Widget */
.imgpost-heading,
.photobox-heading {
    position: relative;
    height: 150px;
    padding: 0;
}

    .imgpost-heading .bxslider,
    .photobox-heading .bxslider {
        margin: 0;
        padding: 0;
    }

        .imgpost-heading .bx-wrapper,
        .photobox-heading .bx-wrapper,
        .imgpost-heading .bx-viewport,
        .photobox-heading .bx-viewport,
        .imgpost-heading .bx-viewport,
        .photobox-heading .bx-viewport,
        .imgpost-heading .bxslider,
        .photobox-heading .bxslider,
        .imgpost-heading .bxslider li,
        .photobox-heading .bxslider li {
            height: 100%;
        }

    .imgpost-heading .cover,
    .photobox-heading .cover {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: block;
        border-radius: 2px 4px 0 0;
    }
/* Photo Widget */
.photobox-heading {
    background: #ffffff url(../img/cover.jpg) no-repeat center center;
    background-size: cover;
}

.photobox {
    min-height: 150px;
    padding: 0;
    border: 0;
    position: relative;
    overflow: hidden;
}

    .photobox .thumb {
        float: right;
        margin-right: 15px;
        margin-top: 15px;
        cursor: pointer;
    }

    .photobox .centered-hero {
        position: absolute;
        top: 50%;
        width: 100%;
        margin-top: -13px;
        color: #fff;
    }

        .photobox .centered-hero .title {
            color: #fff;
            font-size: 18px;
        }

    .photobox .photobox-body {
        padding: 15px;
        background-color: #fff;
        position: relative;
        bottom: 0;
    }

.status-avatar {
    margin-top: -47px;
}

.post-media {
    width: 100%;
    position: relative;
    margin: 15px 0;
}

.post-comments .avatar {
    max-width: 48px;
    border-radius: 50%;
}

.post-comments .comment {
    overflow: hidden;
}

.post-comments .comment-meta {
    margin-bottom: 5px;
}

    .post-comments .comment-author a,
    .post-comments .comment-meta a {
        color: #1a1a1a;
    }

.user-meta {
    list-style: none;
    padding: 0;
}

    .user-meta li {
        padding: 5px 0;
    }
/*
 * $Color Scheme
 *
 */
.fc-event {
    border: 1px solid #4f5061;
    background-color: #4f5061;
    color: #fff;
}
/*
 * Color Variant: Primary;
 *
 */
.bg-primary {
    background-color: #1582dc;
    color: #ffffff;
}

    .bg-primary a {
        color: #ffffff;
    }

        .bg-primary a:active,
        .bg-primary a:focus,
        .bg-primary a:hover {
            color: #e6e6e6;
            text-decoration: none;
            outline: 0;
        }

    .bg-primary .nav > li:hover > a,
    .bg-primary .nav > li:focus > a,
    .bg-primary .nav > li:active > a,
    .bg-primary .nav > li.active > a,
    .bg-primary .nav > li > a:hover,
    .bg-primary .nav > li > a:focus {
        background-color: #147ace;
    }
/*
 * Color Variant: Default;
 *
 */
.bg-default {
    background-color: #eaecf6;
    color: #59595a;
}

    .bg-default a {
        color: #59595a;
    }

        .bg-default a:active,
        .bg-default a:focus,
        .bg-default a:hover {
            color: #404040;
            text-decoration: none;
            outline: 0;
        }

    .bg-default .nav > li:hover > a,
    .bg-default .nav > li:focus > a,
    .bg-default .nav > li:active > a,
    .bg-default .nav > li.active > a,
    .bg-default .nav > li > a:hover,
    .bg-default .nav > li > a:focus {
        background-color: #dfe2f1;
    }
/*
 * Color Variant: Warning;
 *
 */
.bg-warning {
    background-color: #daac16;
    color: #ffffff;
}

    .bg-warning a {
        color: #ffffff;
    }

        .bg-warning a:active,
        .bg-warning a:focus,
        .bg-warning a:hover {
            color: #e6e6e6;
            text-decoration: none;
            outline: 0;
        }

    .bg-warning .nav > li:hover > a,
    .bg-warning .nav > li:focus > a,
    .bg-warning .nav > li:active > a,
    .bg-warning .nav > li.active > a,
    .bg-warning .nav > li > a:hover,
    .bg-warning .nav > li > a:focus {
        background-color: #cca115;
    }

.bg-gray {
    background-color: #808080;
    color: #ffffff;
}

    .bg-gray a {
        color: gray;
    }

        .bg-gray a:active,
        .bg-gray a:focus,
        .bg-gray a:hover {
            color: #e6e6e6;
            text-decoration: none;
            outline: 0;
        }

    .bg-gray .nav > li:hover > a,
    .bg-gray .nav > li:focus > a,
    .bg-gray .nav > li:active > a,
    .bg-gray .nav > li.active > a,
    .bg-gray .nav > li > a:hover,
    .bg-gray .nav > li > a:focus {
        background-color: #808080;
    }


.bg-violetred {
    background-color: palevioletred;
    color: #ffffff;
}

    .bg-violetred a {
        color: palevioletred;
    }

        .bg-violetred a:active,
        .bg-violetred a:focus,
        .bg-violetred a:hover {
            color: #e6e6e6;
            text-decoration: none;
            outline: 0;
        }

    .bg-violetred .nav > li:hover > a,
    .bg-violetred .nav > li:focus > a,
    .bg-violetred .nav > li:active > a,
    .bg-violetred .nav > li.active > a,
    .bg-violetred .nav > li > a:hover,
    .bg-violetred .nav > li > a:focus {
        background-color: palevioletred;
    }

.bg-purple {
    background-color: #9c27b0;
    color: #ffffff;
}

    .bg-purple a {
        color: #9c27b0;
    }

        .bg-purple a:active,
        .bg-purple a:focus,
        .bg-purple a:hover {
            color: #e6e6e6;
            text-decoration: none;
            outline: 0;
        }

    .bg-purple .nav > li:hover > a,
    .bg-purple .nav > li:focus > a,
    .bg-purple .nav > li:active > a,
    .bg-purple .nav > li.active > a,
    .bg-purple .nav > li > a:hover,
    .bg-purple .nav > li > a:focus {
        background-color: #9c27b0;
    }


/*
 * Color Variant: Success;
 *
 */
.bg-success {
    background-color: #15db81;
    color: #ffffff;
}

    .bg-success a {
        color: #ffffff;
    }

        .bg-success a:active,
        .bg-success a:focus,
        .bg-success a:hover {
            color: #e6e6e6;
            text-decoration: none;
            outline: 0;
        }

    .bg-success .nav > li:hover > a,
    .bg-success .nav > li:focus > a,
    .bg-success .nav > li:active > a,
    .bg-success .nav > li.active > a,
    .bg-success .nav > li > a:hover,
    .bg-success .nav > li > a:focus {
        background-color: #14cd79;
    }
/*
 * Color Variant: Info;
 *
 */
.bg-info {
    background-color: #15acdc;
    color: #ffffff;
}

    .bg-info a {
        color: #ffffff;
    }

        .bg-info a:active,
        .bg-info a:focus,
        .bg-info a:hover {
            color: #e6e6e6;
            text-decoration: none;
            outline: 0;
        }

    .bg-info .nav > li:hover > a,
    .bg-info .nav > li:focus > a,
    .bg-info .nav > li:active > a,
    .bg-info .nav > li.active > a,
    .bg-info .nav > li > a:hover,
    .bg-info .nav > li > a:focus {
        background-color: #14a1ce;
    }
/*
 * Color Variant: Danger;
 *
 */
.bg-danger {
    background-color: #d9534f;
    color: #ffffff;
}

    .bg-danger a {
        color: #ffffff;
    }

        .bg-danger a:active,
        .bg-danger a:focus,
        .bg-danger a:hover {
            color: #e6e6e6;
            text-decoration: none;
            outline: 0;
        }

    .bg-danger .nav > li:hover > a,
    .bg-danger .nav > li:focus > a,
    .bg-danger .nav > li:active > a,
    .bg-danger .nav > li.active > a,
    .bg-danger .nav > li > a:hover,
    .bg-danger .nav > li > a:focus {
        background-color: #d9534f;
    }
/*
 * Color Variant: White;
 *
 */
.bg-white {
    background-color: #ffffff;
    color: #59595a;
}

    .bg-white a {
        color: #59595a;
    }

        .bg-white a:active,
        .bg-white a:focus,
        .bg-white a:hover {
            color: #404040;
            text-decoration: none;
            outline: 0;
        }

    .bg-white .nav > li:hover > a,
    .bg-white .nav > li:focus > a,
    .bg-white .nav > li:active > a,
    .bg-white .nav > li.active > a,
    .bg-white .nav > li > a:hover,
    .bg-white .nav > li > a:focus {
        background-color: #f7f7f7;
    }

    .bg-white .nav > li:hover > a,
    .bg-white .nav > li:focus > a,
    .bg-white .nav > li:active > a,
    .bg-white .nav > li.active > a,
    .bg-white .nav > li > a:hover,
    .bg-white .nav > li > a:focus {
        background-color: rgba(0, 0, 0, 0.1);
    }
/*
 * Text Color Variant
 *
 */
.text-primary,
.text-primary a {
    color: #1582dc;
}

    .text-primary:focus,
    .text-primary a:focus {
        color: #0e5996;
    }

.text-default,
.text-default a {
    color: #eaecf6;
}

    .text-default:focus,
    .text-default a:focus {
        color: #b4bcdf;
    }

.text-warning,
.text-warning a {
    color: #daac16;
}

    .text-warning:focus,
    .text-warning a:focus {
        color: #95750f;
    }

.text-success,
.text-success a {
    color: #15db81;
}

    .text-success:focus,
    .text-success a:focus {
        color: #0e9558;
    }

.text-info,
.text-info a {
    color: #15acdc;
}

    .text-info:focus,
    .text-info a:focus {
        color: #0e7596;
    }

.text-white,
.text-white a {
    color: #ffffff;
}

    .text-white:focus,
    .text-white a:focus {
        color: #d9d9d9;
    }

.text-danger,
.text-danger a {
    color: #da3e16;
}

    .text-danger:focus,
    .text-danger a:focus {
        color: #952a0f;
    }

.text-muted,
.text-muted a {
    color: #b3b3b3;
}

    .text-muted:focus,
    .text-muted a:focus {
        color: #8c8c8c;
    }
/*
 * Bootstrap $Badge
 *
 */
.badge {
    font-size: 11px;
    font-weight: 400;
    padding: 3px 6px;
}

    .badge.badge-top {
        position: relative;
        top: -10px;
    }
/*
 *  Bootstrap $Breadcrumb
 *
 */
.breadcrumb {
    background-color: #ffffff;
    border-radius: 2px;
}

    .breadcrumb > li + li:before {
        padding: 0 5px;
        content: "\f105\00a0";
        font-family: FontAwesome;
    }
/*
 *  $Presentation styles
 *
 */
pre {
    color: #59595a;
    background-color: #EFF2F5;
    border: 1px solid #e3e6f3;
    border-radius: 2px;
    font-size: 11px;
    font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
}
/*
 *  Bootstrap $Pagination
 *
 */
.pagination {
    border-radius: 2px;
}

    .pagination > li > a,
    .pagination > li > span {
        border-color: #e3e6f3;
    }

        .pagination > li > a:hover,
        .pagination > li > span:hover {
            background-color: #f5f6fb;
            border-color: #d1d5eb;
        }

    .pagination > li:first-child > a,
    .pagination > li:first-child > span {
        border-radius: 2px 0 0 2px;
    }

    .pagination > li:last-child > a,
    .pagination > li:last-child > span {
        border-radius: 0 2px 2px 0;
    }
/*
 * Bootstrap $Popover
 *
 */
.popover {
    box-shadow: none;
}

    .popover .popover-title {
        font-size: 13px;
        border-bottom: 1px solid #59595a;
        background-color: #337ab7;
        color: #fff;
    }

.popover-custom {
    max-width: 100%;
    width: auto !important;
}
/*
 * Bootstrap $Tooltip
 *
 */
.tooltip-inner {
    border-radius: 2px;
    background-color: 2px;
    background: #4f5061;
    padding: 10px;
}

.tooltip.top .tooltip-arrow {
    border-top-color: #4f5061;
}

.tooltip.top-left .tooltip-arrow {
    border-top-color: #4f5061;
}

.tooltip.top-right .tooltip-arrow {
    border-top-color: #4f5061;
}

.tooltip.right .tooltip-arrow {
    border-right-color: #4f5061;
}

.tooltip.left .tooltip-arrow {
    border-left-color: #4f5061;
}

.tooltip.bottom .tooltip-arrow {
    border-bottom-color: #4f5061;
}

.tooltip.bottom-left .tooltip-arrow {
    border-bottom-color: #4f5061;
}

.tooltip.bottom-right .tooltip-arrow {
    border-bottom-color: #4f5061;
}

.tooltip.in {
    opacity: 1;
    filter: alpha(opacity=100);
}
/*
 *  Modal
 *
 */
.modal-content {
    /*border-radius: 4px;*/
    box-shadow: none;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}
/*
 *  Well
 *
 */
.well {
    border: 1px solid #e3e6f3;
    /*background-color: #eaecf6;*/
    background-color: #fff;
    border-radius: 2px;
    box-shadow: none;
}
/*
 *  List group
 *
 */
.list-group-item {
    border: 1px solid #e3e6f3;
    border-bottom: 1px solid #e3e6f3 !important;
}

a.list-group-item:hover,
a.list-group-item:focus {
    background-color: #fcfcfe;
}
/*
 * Bootstrap $Tables
 *
 */
.table > thead > tr > th {
    border-bottom: 1px solid #ddd;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    border-color: #ddd;
}

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
    background-color: #eaeaf2;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr.active:hover > th {
    background-color: #eaeaf2;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
    /*background-color: transparent;*/
}

.table-striped > tbody > tr:nth-child(even) > td,
.table-striped > tbody > tr:nth-child(even) > th {
    background-color: #fafafc;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
    border-right: 0;
    border-bottom: 0;
    border-left: 1px solid ##ddd;
}

    .table-bordered > thead > tr > th:first-child,
    .table-bordered > tbody > tr > th:first-child,
    .table-bordered > tfoot > tr > th:first-child,
    .table-bordered > thead > tr > td:first-child,
    .table-bordered > tbody > tr > td:first-child,
    .table-bordered > tfoot > tr > td:first-child {
        border-left: 0;
    }

.table-bordered {
    border: 1px solid #ddd;
    border-radius: 2px;
    border-collapse: separate;
}
/* No More tables */
@media (max-width: 767px) {
    /* Source:: http://elvery.net/demo/responsive-tables/#no-more-tables */
    /* Force table to not be like tables anymore */
    .no-more-tables table,
    .no-more-tables thead,
    .no-more-tables tbody,
    .no-more-tables th,
    .no-more-tables td,
    .no-more-tables tr {
        display: block;
    }
        /* Hide table headers (but not display: none;, for accessibility) */
        .no-more-tables thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    .no-more-tables tr {
        border: 1px solid #ccc;
    }

    .no-more-tables td {
        /* Behave  like a "row" */
        border-top: 0 !important;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50% !important;
        white-space: normal;
        text-align: left;
    }

        .no-more-tables td:before {
            /* Now like a table header */
            position: absolute;
            /* Top/left values mimic padding */
            top: 6px;
            left: 6px;
            width: 45%;
            padding-right: 10px;
            white-space: nowrap;
            text-align: left;
            font-weight: bold;
        }
        /*
    Label the data
    */
        .no-more-tables td:before {
            content: attr(data-title);
        }
}
/*
 * Bootstrap $Panels
 *
 */
.panel {
    box-shadow: none;
    border-radius: 2px;
}

.panel-heading {
    border-color: #eeeff8;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

    .panel-heading.gray {
        background: #fcfcfc;
    }

    .panel-heading.gradient {
        background: #fcfcfc;
        background: -webkit-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%);
        background: linear-gradient(to bottom, #fcfcfc 0%, #f5f5f5 100%);
    }

.panel-footer {
    border-top: 1px solid #eeeff8;
    background-color: #fcfcfc;
}

.panel-group .panel {
    border-radius: 2px;
}

.panel-default {
    border-color: #dcdff0;
}

    .panel-default > .panel-heading {
        color: #59595a;
        background-color: #eaecf6;
        border-color: #dcdff0;
    }

        .panel-default > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #dcdff0;
        }

        .panel-default > .panel-heading a {
            color: #59595a;
        }

    .panel-default > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #dcdff0;
    }

.panel-primary {
    border-color: #1582dc;
}

    .panel-primary > .panel-heading {
        color: #ffffff;
        background-color: #1582dc;
        border-color: #1582dc;
    }

        .panel-primary > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #1582dc;
        }

        .panel-primary > .panel-heading a {
            color: #ffffff;
        }

    .panel-primary > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #1582dc;
    }

.panel-success {
    border-color: #15db81;
}

    .panel-success > .panel-heading {
        color: #ffffff;
        background-color: #15db81;
        border-color: #15db81;
    }

        .panel-success > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #15db81;
        }

        .panel-success > .panel-heading a {
            color: #ffffff;
        }

    .panel-success > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #15db81;
    }

.panel-warning {
    border-color: #daac16;
}

    .panel-warning > .panel-heading {
        color: #ffffff;
        background-color: #daac16;
        border-color: #daac16;
    }

        .panel-warning > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #daac16;
        }

        .panel-warning > .panel-heading a {
            color: #ffffff;
        }

    .panel-warning > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #daac16;
    }

.panel-danger {
    border-color: #da3e16;
}

    .panel-danger > .panel-heading {
        color: #ffffff;
        background-color: #da3e16;
        border-color: #da3e16;
    }

        .panel-danger > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #da3e16;
        }

        .panel-danger > .panel-heading a {
            color: #ffffff;
        }

    .panel-danger > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #da3e16;
    }

.panel-info {
    border-color: #15acdc;
}

    .panel-info > .panel-heading {
        color: #ffffff;
        background-color: #15acdc;
        border-color: #15acdc;
    }

        .panel-info > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #15acdc;
        }

        .panel-info > .panel-heading a {
            color: #ffffff;
        }

    .panel-info > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #15acdc;
    }

.heading-controls {
    float: right;
    display: inline-block;
}

    .heading-controls a {
        border-radius: 2px;
        padding: 5px;
        font-size: 11px;
    }
/*
 * $Forms
 *
 */
/* Resize textarea vertically */
textarea {
    resize: vertical;
}
/* Default placeholder text */
.form-control:-moz-placeholder {
    color: #a6a6a6;
}

.form-control::-moz-placeholder {
    color: #a6a6a6;
}

.form-control:-ms-input-placeholder {
    color: #a6a6a6;
}

.form-control::-webkit-input-placeholder {
    color: #a6a6a6;
}

.placeholder {
    color: #aaa;
}

.form-control {
    border: 1px solid #e3e6f3;
    border-radius: 2px;
    box-shadow: none;
    -webkit-transition: border .25s linear, color .25s linear, background-color .25s linear;
    transition: border .25s linear, color .25s linear, background-color .25s linear;
    -webkit-appearance: none;
    font-weight: 400;
    font-size: 13px;
    -webkit-font-smoothing: antialiased;
}

    .form-control:focus,
    #focusedInput {
        outline: 0;
        border-color: #eaecf6;
        background-color: #f1f2f9;
        box-shadow: none;
    }

.no-resize {
    resize: none;
}

select.form-control {
    -webkit-appearance: menulist;
}

input[type="file"] {
    line-height: 1;
}

label {
    font-weight: 600;
}

    label.radio,
    label.checkbox {
        padding-left: 20px;
    }
/*
 * Validation States
 *
 */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
    color: #13c473;
}

.has-success .form-control {
    border-color: #13c473;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

    .has-success .form-control:focus {
        border-color: #11ac66;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #66f0b1;
    }

.has-success .input-group-addon {
    color: #13c473;
    border-color: #13c473;
    background-color: #fff;
}

.has-success .form-control-feedback {
    color: #13c473;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
    color: #daac16;
}

.has-warning .form-control {
    border-color: #daac16;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

    .has-warning .form-control:focus {
        border-color: #ac8711;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f0cf66;
    }

.has-warning .input-group-addon {
    color: #daac16;
    border-color: #daac16;
    background-color: #fff;
}

.has-warning .form-control-feedback {
    color: #daac16;
}

.has-error,
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
    color: #da3e16;
}

    .has-error .form-control {
        border-color: #da3e16;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    }

        .has-error .form-control:focus {
            border-color: #ac3111;
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f08266;
        }

    .has-error .input-group-addon {
        color: #da3e16;
        border-color: #da3e16;
        background-color: #fff;
    }

    .has-error .form-control-feedback {
        color: #da3e16;
    }

.input-group-addon {
    /*background-color: #eaecf6;
  border: 1px solid #e3e6f3;
  border-radius: 2px;*/
    outline: 0;
    border-color: #eaecf6;
    /*background-color: #f1f2f9;*/
    background-color: #fff;
    border-radius: 2px;
}
/*
 * Bootstrap $Dropdown
 *
 */
.dropdown-menu {
    border-radius: 2px;
    border: 1px solid #dcdff0;
    z-index: 9999;
    box-shadow: none;
}

    .dropdown-menu > li > a {
        font-size: 13px;
        color: #59595a;
    }

        .dropdown-menu > li > a:hover {
            background: #dcdff0;
        }

    .dropdown-menu .divider {
        margin: 2px 0;
        height: 1px;
        background-color: #cacfe8;
    }

    .dropdown-menu > .active > a,
    .dropdown-menu > .active > a:hover,
    .dropdown-menu > .active > a:focus {
        background-color: #dcdff0;
        color: #59595a;
    }

.dropdown.open .dropdown-menu {
    display: block;
}

@media (max-width: 767px) {
    .collapse-open {
        display: block;
    }

    .dropdown-menu.dropdown-menu {
        top: 100%;
        left: 0;
    }
}
/*
 * $Progress-Bar styles
 *
 */
.progress {
    overflow: hidden;
    margin-bottom: 15px;
    height: 20px;
    border-radius: 2px;
    background-color: #d0dbec;
    box-shadow: none;
}

.progress-bar {
    box-shadow: none;
    background-color: #1582dc;
    -webkit-transition: width 800ms ease;
    transition: width 800ms ease;
}

.progress-bar-success {
    background-color: #13c473;
}

.progress-striped .progress-bar-success {
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
    background-color: #15acdc;
}

.progress-striped .progress-bar-info {
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-warning {
    background-color: #daac16;
}

.progress-striped .progress-bar-warning {
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-danger {
    background-color: #da3e16;
}

.progress-striped .progress-bar-danger {
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
/* Progress bar sizing */
.progress-xs {
    height: 5px;
}

.progress-sm {
    height: 10px;
}

.progress-md {
    height: 15px;
}

.progress-lg {
    height: 25px;
}
/*
 *  Bootstrap $Buttons
 *
 */
.btn {
    outline: 0;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    border-radius: 2px;
    padding: 9px 12px;
    font-size: 13px;
    -webkit-font-smoothing: antialiased;
    line-height: 14px;
}

    .btn:focus,
    .btn:active,
    .btn.active,
    .btn:active:focus,
    .btn.active:focus {
        outline: 0;
    }

    .btn:active,
    .btn.active {
        box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.1);
    }

.btn-lg,
.btn-group-lg > .btn {
    padding: 15px 16px;
    border-radius: 2px;
}

.btn-sm,
.btn-group-sm > .btn {
    padding: 7px 10px;
}

.btn-xs,
.btn-group-xs > .btn {
    padding: 3px 5px;
    font-size: 10px;
}
/* Rounded button styles */
.btn-rounded,
.btn-rounded a,
.btn-rounded .btn,
.input-rounded {
    border-radius: 40px;
}
/*
 *  Default Button Style
 *
 */
.btn-default {
    color: #59595a;
    background-color: #eaecf6;
    border-color: #d5d9ed;
}

a.btn-default {
    color: #59595a;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
    color: #59595a;
    background-color: #d8dcee;
    background-image: none;
    border-color: #c3c8e5;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
    background-color: #eaecf6;
    border-color: #d5d9ed;
}

.btn-default.btn-outline {
    background-color: transparent;
    color: #eaecf6;
}

    .btn-default.btn-outline:hover,
    .btn-default.btn-outline:focus,
    .btn-default.btn-outline:active,
    .btn-default.btn-outline.active {
        background-color: #eaecf6;
        color: #59595a;
    }

.btn-default.btn-outline {
    color: #59595a;
}
/*
 *  Primary Button Style
 *
 */
.btn-primary {
    border-color: #2779b0;
    color: #fff;
    background-color: #2980b9;
}

a.btn-primary {
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    /*color: #ffffff;
  background-color: #2779b0;
  background-image: none;
  border-color: #2980b9;*/
    border-color: #3f8dc0;
    color: #fff;
    background-color: #337ab7;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    border-color: #3f8dc0;
    background-color: #1582dc;
}

.btn-primary.btn-outline {
    background-color: transparent;
    color: #1582dc;
}

    .btn-primary.btn-outline:hover,
    .btn-primary.btn-outline:focus,
    .btn-primary.btn-outline:active,
    .btn-primary.btn-outline.active {
        background-color: #1582dc;
        color: #ffffff;
    }
/*
 *  Warning Button Style
 *
 */
.btn-warning {
    color: #ffffff;
    background-color: #daac16;
    border-color: #daac16;
}

a.btn-warning {
    color: #ffffff;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
    color: #ffffff;
    background-color: #c39a14;
    background-image: none;
    border-color: #c39a14;
}

.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
    background-color: #daac16;
    border-color: #daac16;
}

.btn-warning.btn-outline {
    background-color: transparent;
    color: #daac16;
}

    .btn-warning.btn-outline:hover,
    .btn-warning.btn-outline:focus,
    .btn-warning.btn-outline:active,
    .btn-warning.btn-outline.active {
        background-color: #daac16;
        color: #ffffff;
    }
/*
 *  Success Button Style
 *
 */
.btn-success {
    color: #ffffff;
    background-color: #13c473;
    border-color: #13c473;
}

a.btn-success {
    color: #ffffff;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
    color: #ffffff;
    background-color: #0e9558;
    background-image: none;
    border-color: #0e9558;
}

.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
    background-color: #66f0b1;
    border-color: #66f0b1;
}

.btn-success.btn-outline {
    background-color: transparent;
    color: #13c473;
}

    .btn-success.btn-outline:hover,
    .btn-success.btn-outline:focus,
    .btn-success.btn-outline:active,
    .btn-success.btn-outline.active {
        background-color: #66f0b1;
        color: #ffffff;
    }
/*
 *  Info Button Style
 *
 */
.btn-info {
    color: #ffffff;
    background-color: #15acdc;
    border-color: #15acdc;
}

a.btn-info {
    color: #ffffff;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
    color: #ffffff;
    background-color: #139ac5;
    background-image: none;
    border-color: #139ac5;
}

.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
    background-color: #15acdc;
    border-color: #15acdc;
}

.btn-info.btn-outline {
    background-color: transparent;
    color: #15acdc;
}

    .btn-info.btn-outline:hover,
    .btn-info.btn-outline:focus,
    .btn-info.btn-outline:active,
    .btn-info.btn-outline.active {
        background-color: #15acdc;
        color: #ffffff;
    }
/*
 *  Danger Button Style
 *
 */
.btn-danger {
    color: #ffffff;
    background-color: #da3e16;
    border-color: #da3e16;
}

a.btn-danger {
    color: #ffffff;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
    color: #ffffff;
    background-color: #c33714;
    background-image: none;
    border-color: #c33714;
}

.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
    background-color: #da3e16;
    border-color: #da3e16;
}

.btn-danger.btn-outline {
    background-color: transparent;
    color: #da3e16;
}

    .btn-danger.btn-outline:hover,
    .btn-danger.btn-outline:focus,
    .btn-danger.btn-outline:active,
    .btn-danger.btn-outline.active {
        background-color: #da3e16;
        color: #ffffff;
    }
/*
 *  Black Button Style
 *
 */
.btn-black {
    color: #ffffff;
    background-color: #59595a;
    border-color: #59595a;
}

a.btn-black {
    color: #ffffff;
}

.btn-black:hover,
.btn-black:focus,
.btn-black:active,
.btn-black.active,
.open .dropdown-toggle.btn-black {
    color: #ffffff;
    background-color: #4f5061;
    background-image: none;
    border-color: #4f5061;
}

.btn-black.disabled,
.btn-black[disabled],
fieldset[disabled] .btn-black,
.btn-black.disabled:hover,
.btn-black[disabled]:hover,
fieldset[disabled] .btn-black:hover,
.btn-black.disabled:focus,
.btn-black[disabled]:focus,
fieldset[disabled] .btn-black:focus,
.btn-black.disabled:active,
.btn-black[disabled]:active,
fieldset[disabled] .btn-black:active,
.btn-black.disabled.active,
.btn-black[disabled].active,
fieldset[disabled] .btn-black.active {
    background-color: #4f5061;
    border-color: #59595a;
}

.btn-black.btn-outline {
    background-color: transparent;
    color: #59595a;
}

    .btn-black.btn-outline:hover,
    .btn-black.btn-outline:focus,
    .btn-black.btn-outline:active,
    .btn-black.btn-outline.active {
        background-color: #59595a;
        color: #ffffff;
    }
/*
 *  Orange Button Style
 *
 */
.btn-orange {
    color: #ffffff;
    background-color: #f7931e;
    border-color: #f7931e;
}

a.btn-orange {
    color: #ffffff;
}

.btn-orange:hover,
.btn-orange:focus,
.btn-orange:active,
.btn-orange.active,
.open .dropdown-toggle.btn-orange {
    color: #ffffff;
    background-color: #ff5500;
    background-image: none;
    border-color: #ff5500;
}

.btn-orange.disabled,
.btn-orange[disabled],
fieldset[disabled] .btn-orange,
.btn-orange.disabled:hover,
.btn-orange[disabled]:hover,
fieldset[disabled] .btn-orange:hover,
.btn-orange.disabled:focus,
.btn-orange[disabled]:focus,
fieldset[disabled] .btn-orange:focus,
.btn-orange.disabled:active,
.btn-orange[disabled]:active,
fieldset[disabled] .btn-orange:active,
.btn-orange.disabled.active,
.btn-orange[disabled].active,
fieldset[disabled] .btn-orange.active {
    background-color: #ff5500;
    border-color: #f7931e;
}

.btn-orange.btn-outline {
    background-color: transparent;
    color: #f7931e;
}

    .btn-orange.btn-outline:hover,
    .btn-orange.btn-outline:focus,
    .btn-orange.btn-outline:active,
    .btn-orange.btn-outline.active {
        background-color: #f7931e;
        color: #ffffff;
    }

.btn-white {
    border-color: #cccccc;
    color: #333333;
    background-color: #ffffff;
}

    .btn-white:hover,
    .btn-white:focus,
    .btn-white:active,
    .btn-white.active,
    .open .dropdown-toggle.btn-white {
        border-color: #adadad;
        color: #333333;
        background-color: #ebebeb;
    }


/*
 * Social Buttons for Bootstrap
 *
 * Copyright 2013-2014 Panayiotis Lipiridis
 * Licensed under the MIT License
 *
 * https://github.com/lipis/bootstrap-social
 */
.btn-social {
    position: relative;
    padding-left: 47px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .btn-social :first-child {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 32px;
        line-height: 34px;
        font-size: 1.6em;
        text-align: center;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }

    .btn-social.btn-lg {
        padding-left: 62px;
    }

        .btn-social.btn-lg :first-child {
            line-height: 46px;
            width: 46px;
            font-size: 1.8em;
        }

    .btn-social.btn-sm {
        padding-left: 37px;
    }

        .btn-social.btn-sm :first-child {
            line-height: 27px;
            width: 27px;
            font-size: 1.4em;
        }

    .btn-social.btn-xs {
        padding-left: 30px;
    }

        .btn-social.btn-xs :first-child {
            line-height: 20px;
            width: 20px;
            font-size: 1.2em;
        }

.btn-social-icon {
    position: relative;
    padding-left: 47px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 34px;
    width: 34px;
    padding: 0;
}

    .btn-social-icon :first-child {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 32px;
        line-height: 34px;
        font-size: 1.6em;
        text-align: center;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }

    .btn-social-icon.btn-lg {
        padding-left: 62px;
    }

        .btn-social-icon.btn-lg :first-child {
            line-height: 46px;
            width: 46px;
            font-size: 1.8em;
        }

    .btn-social-icon.btn-sm {
        padding-left: 37px;
    }

        .btn-social-icon.btn-sm :first-child {
            line-height: 27px;
            width: 27px;
            font-size: 1.4em;
        }

    .btn-social-icon.btn-xs {
        padding-left: 30px;
    }

        .btn-social-icon.btn-xs :first-child {
            line-height: 20px;
            width: 20px;
            font-size: 1.2em;
        }

    .btn-social-icon :first-child {
        border: none;
        text-align: center;
        width: 100% !important;
    }

    .btn-social-icon.btn-lg {
        height: 46px;
        width: 46px;
        padding-left: 0;
        padding-right: 0;
    }

    .btn-social-icon.btn-sm {
        height: 29px;
        width: 29px;
        padding-left: 0;
        padding-right: 0;
    }

    .btn-social-icon.btn-xs {
        height: 22px;
        width: 22px;
        padding-left: 0;
        padding-right: 0;
    }

.btn-adn {
    color: #ffffff;
    background-color: #d87a68;
    border-color: #d87a68;
}

a.btn-adn {
    color: #ffffff;
}

.btn-adn:hover,
.btn-adn:focus,
.btn-adn:active,
.btn-adn.active,
.open .dropdown-toggle.btn-adn {
    color: #ffffff;
    background-color: #d36854;
    background-image: none;
    border-color: #d36854;
}

.btn-adn.disabled,
.btn-adn[disabled],
fieldset[disabled] .btn-adn,
.btn-adn.disabled:hover,
.btn-adn[disabled]:hover,
fieldset[disabled] .btn-adn:hover,
.btn-adn.disabled:focus,
.btn-adn[disabled]:focus,
fieldset[disabled] .btn-adn:focus,
.btn-adn.disabled:active,
.btn-adn[disabled]:active,
fieldset[disabled] .btn-adn:active,
.btn-adn.disabled.active,
.btn-adn[disabled].active,
fieldset[disabled] .btn-adn.active {
    background-color: #d87a68;
    border-color: #d87a68;
}

.btn-adn.btn-outline {
    background-color: transparent;
    color: #d87a68;
}

    .btn-adn.btn-outline:hover,
    .btn-adn.btn-outline:focus,
    .btn-adn.btn-outline:active,
    .btn-adn.btn-outline.active {
        background-color: #d87a68;
        color: #ffffff;
    }

.btn-bitbucket {
    color: #ffffff;
    background-color: #205081;
    border-color: #205081;
}

a.btn-bitbucket {
    color: #ffffff;
}

.btn-bitbucket:hover,
.btn-bitbucket:focus,
.btn-bitbucket:active,
.btn-bitbucket.active,
.open .dropdown-toggle.btn-bitbucket {
    color: #ffffff;
    background-color: #1b436d;
    background-image: none;
    border-color: #1b436d;
}

.btn-bitbucket.disabled,
.btn-bitbucket[disabled],
fieldset[disabled] .btn-bitbucket,
.btn-bitbucket.disabled:hover,
.btn-bitbucket[disabled]:hover,
fieldset[disabled] .btn-bitbucket:hover,
.btn-bitbucket.disabled:focus,
.btn-bitbucket[disabled]:focus,
fieldset[disabled] .btn-bitbucket:focus,
.btn-bitbucket.disabled:active,
.btn-bitbucket[disabled]:active,
fieldset[disabled] .btn-bitbucket:active,
.btn-bitbucket.disabled.active,
.btn-bitbucket[disabled].active,
fieldset[disabled] .btn-bitbucket.active {
    background-color: #205081;
    border-color: #205081;
}

.btn-bitbucket.btn-outline {
    background-color: transparent;
    color: #205081;
}

    .btn-bitbucket.btn-outline:hover,
    .btn-bitbucket.btn-outline:focus,
    .btn-bitbucket.btn-outline:active,
    .btn-bitbucket.btn-outline.active {
        background-color: #205081;
        color: #ffffff;
    }

.btn-dropbox {
    color: #ffffff;
    background-color: #1087dd;
    border-color: #1087dd;
}

a.btn-dropbox {
    color: #ffffff;
}

.btn-dropbox:hover,
.btn-dropbox:focus,
.btn-dropbox:active,
.btn-dropbox.active,
.open .dropdown-toggle.btn-dropbox {
    color: #ffffff;
    background-color: #0e78c5;
    background-image: none;
    border-color: #0e78c5;
}

.btn-dropbox.disabled,
.btn-dropbox[disabled],
fieldset[disabled] .btn-dropbox,
.btn-dropbox.disabled:hover,
.btn-dropbox[disabled]:hover,
fieldset[disabled] .btn-dropbox:hover,
.btn-dropbox.disabled:focus,
.btn-dropbox[disabled]:focus,
fieldset[disabled] .btn-dropbox:focus,
.btn-dropbox.disabled:active,
.btn-dropbox[disabled]:active,
fieldset[disabled] .btn-dropbox:active,
.btn-dropbox.disabled.active,
.btn-dropbox[disabled].active,
fieldset[disabled] .btn-dropbox.active {
    background-color: #1087dd;
    border-color: #1087dd;
}

.btn-dropbox.btn-outline {
    background-color: transparent;
    color: #1087dd;
}

    .btn-dropbox.btn-outline:hover,
    .btn-dropbox.btn-outline:focus,
    .btn-dropbox.btn-outline:active,
    .btn-dropbox.btn-outline.active {
        background-color: #1087dd;
        color: #ffffff;
    }

.btn-facebook {
    color: #ffffff;
    background-color: #3b5998;
    border-color: #3b5998;
}

a.btn-facebook {
    color: #ffffff;
}

.btn-facebook:hover,
.btn-facebook:focus,
.btn-facebook:active,
.btn-facebook.active,
.open .dropdown-toggle.btn-facebook {
    color: #ffffff;
    background-color: #344e86;
    background-image: none;
    border-color: #344e86;
}

.btn-facebook.disabled,
.btn-facebook[disabled],
fieldset[disabled] .btn-facebook,
.btn-facebook.disabled:hover,
.btn-facebook[disabled]:hover,
fieldset[disabled] .btn-facebook:hover,
.btn-facebook.disabled:focus,
.btn-facebook[disabled]:focus,
fieldset[disabled] .btn-facebook:focus,
.btn-facebook.disabled:active,
.btn-facebook[disabled]:active,
fieldset[disabled] .btn-facebook:active,
.btn-facebook.disabled.active,
.btn-facebook[disabled].active,
fieldset[disabled] .btn-facebook.active {
    background-color: #3b5998;
    border-color: #3b5998;
}

.btn-facebook.btn-outline {
    background-color: transparent;
    color: #3b5998;
}

    .btn-facebook.btn-outline:hover,
    .btn-facebook.btn-outline:focus,
    .btn-facebook.btn-outline:active,
    .btn-facebook.btn-outline.active {
        background-color: #3b5998;
        color: #ffffff;
    }

.btn-flickr {
    color: #ffffff;
    background-color: #ff0084;
    border-color: #ff0084;
}

a.btn-flickr {
    color: #ffffff;
}

.btn-flickr:hover,
.btn-flickr:focus,
.btn-flickr:active,
.btn-flickr.active,
.open .dropdown-toggle.btn-flickr {
    color: #ffffff;
    background-color: #e60077;
    background-image: none;
    border-color: #e60077;
}

.btn-flickr.disabled,
.btn-flickr[disabled],
fieldset[disabled] .btn-flickr,
.btn-flickr.disabled:hover,
.btn-flickr[disabled]:hover,
fieldset[disabled] .btn-flickr:hover,
.btn-flickr.disabled:focus,
.btn-flickr[disabled]:focus,
fieldset[disabled] .btn-flickr:focus,
.btn-flickr.disabled:active,
.btn-flickr[disabled]:active,
fieldset[disabled] .btn-flickr:active,
.btn-flickr.disabled.active,
.btn-flickr[disabled].active,
fieldset[disabled] .btn-flickr.active {
    background-color: #ff0084;
    border-color: #ff0084;
}

.btn-flickr.btn-outline {
    background-color: transparent;
    color: #ff0084;
}

    .btn-flickr.btn-outline:hover,
    .btn-flickr.btn-outline:focus,
    .btn-flickr.btn-outline:active,
    .btn-flickr.btn-outline.active {
        background-color: #ff0084;
        color: #ffffff;
    }

.btn-foursquare {
    color: #ffffff;
    background-color: #0072b1;
    border-color: #0072b1;
}

a.btn-foursquare {
    color: #ffffff;
}

.btn-foursquare:hover,
.btn-foursquare:focus,
.btn-foursquare:active,
.btn-foursquare.active,
.open .dropdown-toggle.btn-foursquare {
    color: #ffffff;
    background-color: #006298;
    background-image: none;
    border-color: #006298;
}

.btn-foursquare.disabled,
.btn-foursquare[disabled],
fieldset[disabled] .btn-foursquare,
.btn-foursquare.disabled:hover,
.btn-foursquare[disabled]:hover,
fieldset[disabled] .btn-foursquare:hover,
.btn-foursquare.disabled:focus,
.btn-foursquare[disabled]:focus,
fieldset[disabled] .btn-foursquare:focus,
.btn-foursquare.disabled:active,
.btn-foursquare[disabled]:active,
fieldset[disabled] .btn-foursquare:active,
.btn-foursquare.disabled.active,
.btn-foursquare[disabled].active,
fieldset[disabled] .btn-foursquare.active {
    background-color: #0072b1;
    border-color: #0072b1;
}

.btn-foursquare.btn-outline {
    background-color: transparent;
    color: #0072b1;
}

    .btn-foursquare.btn-outline:hover,
    .btn-foursquare.btn-outline:focus,
    .btn-foursquare.btn-outline:active,
    .btn-foursquare.btn-outline.active {
        background-color: #0072b1;
        color: #ffffff;
    }

.btn-github {
    color: #ffffff;
    background-color: #444444;
    border-color: #444444;
}

a.btn-github {
    color: #ffffff;
}

.btn-github:hover,
.btn-github:focus,
.btn-github:active,
.btn-github.active,
.open .dropdown-toggle.btn-github {
    color: #ffffff;
    background-color: #373737;
    background-image: none;
    border-color: #373737;
}

.btn-github.disabled,
.btn-github[disabled],
fieldset[disabled] .btn-github,
.btn-github.disabled:hover,
.btn-github[disabled]:hover,
fieldset[disabled] .btn-github:hover,
.btn-github.disabled:focus,
.btn-github[disabled]:focus,
fieldset[disabled] .btn-github:focus,
.btn-github.disabled:active,
.btn-github[disabled]:active,
fieldset[disabled] .btn-github:active,
.btn-github.disabled.active,
.btn-github[disabled].active,
fieldset[disabled] .btn-github.active {
    background-color: #444444;
    border-color: #444444;
}

.btn-github.btn-outline {
    background-color: transparent;
    color: #444444;
}

    .btn-github.btn-outline:hover,
    .btn-github.btn-outline:focus,
    .btn-github.btn-outline:active,
    .btn-github.btn-outline.active {
        background-color: #444444;
        color: #ffffff;
    }

.btn-google-plus {
    color: #ffffff;
    background-color: #dd4b39;
    border-color: #dd4b39;
}

a.btn-google-plus {
    color: #ffffff;
}

.btn-google-plus:hover,
.btn-google-plus:focus,
.btn-google-plus:active,
.btn-google-plus.active,
.open .dropdown-toggle.btn-google-plus {
    color: #ffffff;
    background-color: #d73925;
    background-image: none;
    border-color: #d73925;
}

.btn-google-plus.disabled,
.btn-google-plus[disabled],
fieldset[disabled] .btn-google-plus,
.btn-google-plus.disabled:hover,
.btn-google-plus[disabled]:hover,
fieldset[disabled] .btn-google-plus:hover,
.btn-google-plus.disabled:focus,
.btn-google-plus[disabled]:focus,
fieldset[disabled] .btn-google-plus:focus,
.btn-google-plus.disabled:active,
.btn-google-plus[disabled]:active,
fieldset[disabled] .btn-google-plus:active,
.btn-google-plus.disabled.active,
.btn-google-plus[disabled].active,
fieldset[disabled] .btn-google-plus.active {
    background-color: #dd4b39;
    border-color: #dd4b39;
}

.btn-google-plus.btn-outline {
    background-color: transparent;
    color: #dd4b39;
}

    .btn-google-plus.btn-outline:hover,
    .btn-google-plus.btn-outline:focus,
    .btn-google-plus.btn-outline:active,
    .btn-google-plus.btn-outline.active {
        background-color: #dd4b39;
        color: #ffffff;
    }

.btn-instagram {
    color: #ffffff;
    background-color: #3f729b;
    border-color: #3f729b;
}

a.btn-instagram {
    color: #ffffff;
}

.btn-instagram:hover,
.btn-instagram:focus,
.btn-instagram:active,
.btn-instagram.active,
.open .dropdown-toggle.btn-instagram {
    color: #ffffff;
    background-color: #386589;
    background-image: none;
    border-color: #386589;
}

.btn-instagram.disabled,
.btn-instagram[disabled],
fieldset[disabled] .btn-instagram,
.btn-instagram.disabled:hover,
.btn-instagram[disabled]:hover,
fieldset[disabled] .btn-instagram:hover,
.btn-instagram.disabled:focus,
.btn-instagram[disabled]:focus,
fieldset[disabled] .btn-instagram:focus,
.btn-instagram.disabled:active,
.btn-instagram[disabled]:active,
fieldset[disabled] .btn-instagram:active,
.btn-instagram.disabled.active,
.btn-instagram[disabled].active,
fieldset[disabled] .btn-instagram.active {
    background-color: #3f729b;
    border-color: #3f729b;
}

.btn-instagram.btn-outline {
    background-color: transparent;
    color: #3f729b;
}

    .btn-instagram.btn-outline:hover,
    .btn-instagram.btn-outline:focus,
    .btn-instagram.btn-outline:active,
    .btn-instagram.btn-outline.active {
        background-color: #3f729b;
        color: #ffffff;
    }

.btn-linkedin {
    color: #ffffff;
    background-color: #007bb6;
    border-color: #007bb6;
}

a.btn-linkedin {
    color: #ffffff;
}

.btn-linkedin:hover,
.btn-linkedin:focus,
.btn-linkedin:active,
.btn-linkedin.active,
.open .dropdown-toggle.btn-linkedin {
    color: #ffffff;
    background-color: #006a9d;
    background-image: none;
    border-color: #006a9d;
}

.btn-linkedin.disabled,
.btn-linkedin[disabled],
fieldset[disabled] .btn-linkedin,
.btn-linkedin.disabled:hover,
.btn-linkedin[disabled]:hover,
fieldset[disabled] .btn-linkedin:hover,
.btn-linkedin.disabled:focus,
.btn-linkedin[disabled]:focus,
fieldset[disabled] .btn-linkedin:focus,
.btn-linkedin.disabled:active,
.btn-linkedin[disabled]:active,
fieldset[disabled] .btn-linkedin:active,
.btn-linkedin.disabled.active,
.btn-linkedin[disabled].active,
fieldset[disabled] .btn-linkedin.active {
    background-color: #007bb6;
    border-color: #007bb6;
}

.btn-linkedin.btn-outline {
    background-color: transparent;
    color: #007bb6;
}

    .btn-linkedin.btn-outline:hover,
    .btn-linkedin.btn-outline:focus,
    .btn-linkedin.btn-outline:active,
    .btn-linkedin.btn-outline.active {
        background-color: #007bb6;
        color: #ffffff;
    }

.btn-microsoft {
    color: #ffffff;
    background-color: #2672ec;
    border-color: #2672ec;
}

a.btn-microsoft {
    color: #ffffff;
}

.btn-microsoft:hover,
.btn-microsoft:focus,
.btn-microsoft:active,
.btn-microsoft.active,
.open .dropdown-toggle.btn-microsoft {
    color: #ffffff;
    background-color: #1464e4;
    background-image: none;
    border-color: #1464e4;
}

.btn-microsoft.disabled,
.btn-microsoft[disabled],
fieldset[disabled] .btn-microsoft,
.btn-microsoft.disabled:hover,
.btn-microsoft[disabled]:hover,
fieldset[disabled] .btn-microsoft:hover,
.btn-microsoft.disabled:focus,
.btn-microsoft[disabled]:focus,
fieldset[disabled] .btn-microsoft:focus,
.btn-microsoft.disabled:active,
.btn-microsoft[disabled]:active,
fieldset[disabled] .btn-microsoft:active,
.btn-microsoft.disabled.active,
.btn-microsoft[disabled].active,
fieldset[disabled] .btn-microsoft.active {
    background-color: #2672ec;
    border-color: #2672ec;
}

.btn-microsoft.btn-outline {
    background-color: transparent;
    color: #2672ec;
}

    .btn-microsoft.btn-outline:hover,
    .btn-microsoft.btn-outline:focus,
    .btn-microsoft.btn-outline:active,
    .btn-microsoft.btn-outline.active {
        background-color: #2672ec;
        color: #ffffff;
    }

.btn-openid {
    color: #ffffff;
    background-color: #f7931e;
    border-color: #f7931e;
}

a.btn-openid {
    color: #ffffff;
}

.btn-openid:hover,
.btn-openid:focus,
.btn-openid:active,
.btn-openid.active,
.open .dropdown-toggle.btn-openid {
    color: #ffffff;
    background-color: #f38709;
    background-image: none;
    border-color: #f38709;
}

.btn-openid.disabled,
.btn-openid[disabled],
fieldset[disabled] .btn-openid,
.btn-openid.disabled:hover,
.btn-openid[disabled]:hover,
fieldset[disabled] .btn-openid:hover,
.btn-openid.disabled:focus,
.btn-openid[disabled]:focus,
fieldset[disabled] .btn-openid:focus,
.btn-openid.disabled:active,
.btn-openid[disabled]:active,
fieldset[disabled] .btn-openid:active,
.btn-openid.disabled.active,
.btn-openid[disabled].active,
fieldset[disabled] .btn-openid.active {
    background-color: #f7931e;
    border-color: #f7931e;
}

.btn-openid.btn-outline {
    background-color: transparent;
    color: #f7931e;
}

    .btn-openid.btn-outline:hover,
    .btn-openid.btn-outline:focus,
    .btn-openid.btn-outline:active,
    .btn-openid.btn-outline.active {
        background-color: #f7931e;
        color: #ffffff;
    }

.btn-reddit {
    color: #000000;
    background-color: #eff7ff;
    border-color: #eff7ff;
}

a.btn-reddit {
    color: #000000;
}

.btn-reddit:hover,
.btn-reddit:focus,
.btn-reddit:active,
.btn-reddit.active,
.open .dropdown-toggle.btn-reddit {
    color: #000000;
    background-color: #d6eaff;
    background-image: none;
    border-color: #d6eaff;
}

.btn-reddit.disabled,
.btn-reddit[disabled],
fieldset[disabled] .btn-reddit,
.btn-reddit.disabled:hover,
.btn-reddit[disabled]:hover,
fieldset[disabled] .btn-reddit:hover,
.btn-reddit.disabled:focus,
.btn-reddit[disabled]:focus,
fieldset[disabled] .btn-reddit:focus,
.btn-reddit.disabled:active,
.btn-reddit[disabled]:active,
fieldset[disabled] .btn-reddit:active,
.btn-reddit.disabled.active,
.btn-reddit[disabled].active,
fieldset[disabled] .btn-reddit.active {
    background-color: #eff7ff;
    border-color: #eff7ff;
}

.btn-reddit.btn-outline {
    background-color: transparent;
    color: #eff7ff;
}

    .btn-reddit.btn-outline:hover,
    .btn-reddit.btn-outline:focus,
    .btn-reddit.btn-outline:active,
    .btn-reddit.btn-outline.active {
        background-color: #eff7ff;
        color: #000000;
    }

.btn-soundcloud {
    color: #ffffff;
    background-color: #ff5500 !important;
    border-color: #ff5500;
}

a.btn-soundcloud {
    color: #ffffff;
}

.btn-soundcloud:hover,
.btn-soundcloud:focus,
.btn-soundcloud:active,
.btn-soundcloud.active,
.open .dropdown-toggle.btn-soundcloud {
    color: #ffffff;
    background-color: #e64d00;
    background-image: none;
    border-color: #e64d00;
}

.btn-soundcloud.disabled,
.btn-soundcloud[disabled],
fieldset[disabled] .btn-soundcloud,
.btn-soundcloud.disabled:hover,
.btn-soundcloud[disabled]:hover,
fieldset[disabled] .btn-soundcloud:hover,
.btn-soundcloud.disabled:focus,
.btn-soundcloud[disabled]:focus,
fieldset[disabled] .btn-soundcloud:focus,
.btn-soundcloud.disabled:active,
.btn-soundcloud[disabled]:active,
fieldset[disabled] .btn-soundcloud:active,
.btn-soundcloud.disabled.active,
.btn-soundcloud[disabled].active,
fieldset[disabled] .btn-soundcloud.active {
    background-color: #ff5500;
    border-color: #ff5500;
}

.btn-soundcloud.btn-outline {
    background-color: transparent;
    color: #ff5500;
}

    .btn-soundcloud.btn-outline:hover,
    .btn-soundcloud.btn-outline:focus,
    .btn-soundcloud.btn-outline:active,
    .btn-soundcloud.btn-outline.active {
        background-color: #ff5500;
        color: #ffffff;
    }

.btn-tumblr {
    color: #ffffff;
    background-color: #2c4762;
    border-color: #2c4762;
}

a.btn-tumblr {
    color: #ffffff;
}

.btn-tumblr:hover,
.btn-tumblr:focus,
.btn-tumblr:active,
.btn-tumblr.active,
.open .dropdown-toggle.btn-tumblr {
    color: #ffffff;
    background-color: #243a50;
    background-image: none;
    border-color: #243a50;
}

.btn-tumblr.disabled,
.btn-tumblr[disabled],
fieldset[disabled] .btn-tumblr,
.btn-tumblr.disabled:hover,
.btn-tumblr[disabled]:hover,
fieldset[disabled] .btn-tumblr:hover,
.btn-tumblr.disabled:focus,
.btn-tumblr[disabled]:focus,
fieldset[disabled] .btn-tumblr:focus,
.btn-tumblr.disabled:active,
.btn-tumblr[disabled]:active,
fieldset[disabled] .btn-tumblr:active,
.btn-tumblr.disabled.active,
.btn-tumblr[disabled].active,
fieldset[disabled] .btn-tumblr.active {
    background-color: #2c4762;
    border-color: #2c4762;
}

.btn-tumblr.btn-outline {
    background-color: transparent;
    color: #2c4762;
}

    .btn-tumblr.btn-outline:hover,
    .btn-tumblr.btn-outline:focus,
    .btn-tumblr.btn-outline:active,
    .btn-tumblr.btn-outline.active {
        background-color: #2c4762;
        color: #ffffff;
    }

.btn-twitter {
    color: #ffffff;
    background-color: #55acee;
    border-color: #55acee;
}

a.btn-twitter {
    color: #ffffff;
}

.btn-twitter:hover,
.btn-twitter:focus,
.btn-twitter:active,
.btn-twitter.active,
.open .dropdown-toggle.btn-twitter {
    color: #ffffff;
    background-color: #3ea1ec;
    background-image: none;
    border-color: #3ea1ec;
}

.btn-twitter.disabled,
.btn-twitter[disabled],
fieldset[disabled] .btn-twitter,
.btn-twitter.disabled:hover,
.btn-twitter[disabled]:hover,
fieldset[disabled] .btn-twitter:hover,
.btn-twitter.disabled:focus,
.btn-twitter[disabled]:focus,
fieldset[disabled] .btn-twitter:focus,
.btn-twitter.disabled:active,
.btn-twitter[disabled]:active,
fieldset[disabled] .btn-twitter:active,
.btn-twitter.disabled.active,
.btn-twitter[disabled].active,
fieldset[disabled] .btn-twitter.active {
    background-color: #55acee;
    border-color: #55acee;
}

.btn-twitter.btn-outline {
    background-color: transparent;
    color: #55acee;
}

    .btn-twitter.btn-outline:hover,
    .btn-twitter.btn-outline:focus,
    .btn-twitter.btn-outline:active,
    .btn-twitter.btn-outline.active {
        background-color: #55acee;
        color: #ffffff;
    }

.btn-vimeo {
    color: #ffffff;
    background-color: #1ab7ea;
    border-color: #1ab7ea;
}

a.btn-vimeo {
    color: #ffffff;
}

.btn-vimeo:hover,
.btn-vimeo:focus,
.btn-vimeo:active,
.btn-vimeo.active,
.open .dropdown-toggle.btn-vimeo {
    color: #ffffff;
    background-color: #14a7d7;
    background-image: none;
    border-color: #14a7d7;
}

.btn-vimeo.disabled,
.btn-vimeo[disabled],
fieldset[disabled] .btn-vimeo,
.btn-vimeo.disabled:hover,
.btn-vimeo[disabled]:hover,
fieldset[disabled] .btn-vimeo:hover,
.btn-vimeo.disabled:focus,
.btn-vimeo[disabled]:focus,
fieldset[disabled] .btn-vimeo:focus,
.btn-vimeo.disabled:active,
.btn-vimeo[disabled]:active,
fieldset[disabled] .btn-vimeo:active,
.btn-vimeo.disabled.active,
.btn-vimeo[disabled].active,
fieldset[disabled] .btn-vimeo.active {
    background-color: #1ab7ea;
    border-color: #1ab7ea;
}

.btn-vimeo.btn-outline {
    background-color: transparent;
    color: #1ab7ea;
}

    .btn-vimeo.btn-outline:hover,
    .btn-vimeo.btn-outline:focus,
    .btn-vimeo.btn-outline:active,
    .btn-vimeo.btn-outline.active {
        background-color: #1ab7ea;
        color: #ffffff;
    }

.btn-vk {
    color: #ffffff;
    background-color: #587ea3;
    border-color: #587ea3;
}

a.btn-vk {
    color: #ffffff;
}

.btn-vk:hover,
.btn-vk:focus,
.btn-vk:active,
.btn-vk.active,
.open .dropdown-toggle.btn-vk {
    color: #ffffff;
    background-color: #4f7192;
    background-image: none;
    border-color: #4f7192;
}

.btn-vk.disabled,
.btn-vk[disabled],
fieldset[disabled] .btn-vk,
.btn-vk.disabled:hover,
.btn-vk[disabled]:hover,
fieldset[disabled] .btn-vk:hover,
.btn-vk.disabled:focus,
.btn-vk[disabled]:focus,
fieldset[disabled] .btn-vk:focus,
.btn-vk.disabled:active,
.btn-vk[disabled]:active,
fieldset[disabled] .btn-vk:active,
.btn-vk.disabled.active,
.btn-vk[disabled].active,
fieldset[disabled] .btn-vk.active {
    background-color: #587ea3;
    border-color: #587ea3;
}

.btn-vk.btn-outline {
    background-color: transparent;
    color: #587ea3;
}

    .btn-vk.btn-outline:hover,
    .btn-vk.btn-outline:focus,
    .btn-vk.btn-outline:active,
    .btn-vk.btn-outline.active {
        background-color: #587ea3;
        color: #ffffff;
    }

.btn-yahoo {
    color: #ffffff;
    background-color: #720e9e;
    border-color: #720e9e;
}

a.btn-yahoo {
    color: #ffffff;
}

.btn-yahoo:hover,
.btn-yahoo:focus,
.btn-yahoo:active,
.btn-yahoo.active,
.open .dropdown-toggle.btn-yahoo {
    color: #ffffff;
    background-color: #610c87;
    background-image: none;
    border-color: #610c87;
}

.btn-yahoo.disabled,
.btn-yahoo[disabled],
fieldset[disabled] .btn-yahoo,
.btn-yahoo.disabled:hover,
.btn-yahoo[disabled]:hover,
fieldset[disabled] .btn-yahoo:hover,
.btn-yahoo.disabled:focus,
.btn-yahoo[disabled]:focus,
fieldset[disabled] .btn-yahoo:focus,
.btn-yahoo.disabled:active,
.btn-yahoo[disabled]:active,
fieldset[disabled] .btn-yahoo:active,
.btn-yahoo.disabled.active,
.btn-yahoo[disabled].active,
fieldset[disabled] .btn-yahoo.active {
    background-color: #720e9e;
    border-color: #720e9e;
}

.btn-yahoo.btn-outline {
    background-color: transparent;
    color: #720e9e;
}

    .btn-yahoo.btn-outline:hover,
    .btn-yahoo.btn-outline:focus,
    .btn-yahoo.btn-outline:active,
    .btn-yahoo.btn-outline.active {
        background-color: #720e9e;
        color: #ffffff;
    }
/*
 * $Navbar
 *
 */
.navbar .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
}
/*.navbar-nav.nav-tabs {
  background: transparent;
  border-radius: 0;
}
.navbar-nav.nav-tabs > li > a {
  margin: 0;
  border-radius: 0;
  padding: 16px 15px;
}*/
.navbar-inverse {
    border-color: #4f5061;
    background-color: #4f5061;
}

    .navbar-inverse .navbar-brand,
    .navbar-inverse .navbar-nav > li > a {
        color: #ffffff;
    }

    .navbar-inverse .navbar-nav > .open > a,
    .navbar-inverse .navbar-nav > .open > a:hover,
    .navbar-inverse .navbar-nav > .open > a:focus,
    .navbar-inverse .navbar-nav > .active > a,
    .navbar-inverse .navbar-nav > .active > a:hover,
    .navbar-inverse .navbar-nav > .active > a:focus {
        color: #fff;
        background-color: #484959;
    }

    .navbar-inverse .navbar-collapse,
    .navbar-inverse .navbar-form {
        border-color: #4f5061;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #444453;
    }

    .navbar-inverse .dropdown-menu {
        border-color: #4f5061;
    }

@media (max-width: 767px) {
    .navbar-collapse {
        padding: 0;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #ffffff;
    }
}

@media (max-width: 767px) {
    .navbar-form {
        padding-top: 0;
        padding-bottom: 0;
    }
}
/*
 * Bootstrap $Navs
 *
 */
/* Pills */

.box-tab {
    margin-bottom: 25px;
    border: 1px solid #e3e6f3;
    border-radius: 2px;
}

    .box-tab .tab-content {
        background-color: #fff;
        padding: 15px;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 2px;
        border-bottom-right-radius: 2px;
        overflow: hidden;
    }

    .box-tab.tabs-left .tab-content {
        border-top-left-radius: 0;
        border-top-right-radius: 2px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 2px;
    }

    .box-tab.tabs-right .tab-content {
        border-top-left-radius: 2px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 2px;
    }
/*
 *  $Labels
 *
 */
.label {
    line-height: inherit;
    font-weight: 400;
}

.label-default {
    background-color: #eaecf6;
    color: #59595a;
    border: 1px solid #e3e6f3;
}

    .label-default[href]:hover,
    .label-default[href]:focus {
        background-color: #c6cce7;
    }

.label-primary {
    background-color: #1582dc;
    color: #fff;
}

    .label-primary[href]:hover,
    .label-primary[href]:focus {
        background-color: #1166ad;
    }

.label-success {
    background-color: #15db81;
}

    .label-success[href]:hover,
    .label-success[href]:focus {
        background-color: #11ac66;
    }

.label-info {
    background-color: #15acdc;
}

    .label-info[href]:hover,
    .label-info[href]:focus {
        background-color: #1188ad;
    }

.label-warning {
    background-color: #daac16;
}

    .label-warning[href]:hover,
    .label-warning[href]:focus {
        background-color: #ac8711;
    }

.label-danger {
    background-color: #da3e16;
}

    .label-danger[href]:hover,
    .label-danger[href]:focus {
        background-color: #ac3111;
    }
/*
 *  Bootstrap $Carousel
 *
 */
.carousel-control {
    color: #59595a;
    text-shadow: none;
}

    .carousel-control:hover {
        color: #59595a;
        text-shadow: none;
    }

    .carousel-control.left,
    .carousel-control.right {
        background: transparent;
        background-image: none;
        filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    }

    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        font-family: FontAwesome;
    }

    .carousel-control .icon-prev,
    .carousel-control .glyphicon-chevron-left {
        left: 50%;
    }

    .carousel-control span,
    .carousel-control i {
        position: absolute;
        top: 50%;
        z-index: 5;
        display: inline-block;
        margin-top: -10px;
        margin-left: -10px;
        width: 20px;
        height: 20px;
    }

.carousel-indicators {
    bottom: 5px;
}

    .carousel-indicators li {
        background-color: #eaecf6;
    }

    .carousel-indicators .active {
        background-color: #15db81;
    }

#quote-carousel {
    width: 100%;
    position: relative;
    padding: 5px 60px;
}

    #quote-carousel .carousel-control:hover {
        color: #59595a;
    }
/*
 *  $Chat Box
 *
 */
.chat-box .panel {
    margin-bottom: 5px;
}

.chat-box .chatbox-user {
    margin-bottom: 35px;
}

    .chat-box .chatbox-user .chat-time {
        display: block;
        text-align: right;
    }

    .chat-box .chatbox-user.right .chat-avatar img {
        float: right;
    }

.chat-box .chat-avatar {
    width: 48px;
    display: block;
}

.chat-box .message {
    position: relative;
    margin-left: 60px;
}

    .chat-box .message:before {
        content: "";
        position: absolute;
        left: 0;
        border-right: 6px solid #fff;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        top: 10px;
        margin-left: -6px;
    }

.chat-box .panel-body {
    display: table;
    width: 100%;
}

.chat-box .chatbox-user.right .message {
    position: relative;
    margin-left: 0;
    margin-right: 60px;
}

    .chat-box .chatbox-user.right .message .panel {
        background-color: #15db81;
        color: #fff;
    }

    .chat-box .chatbox-user.right .message .chat-time {
        text-align: left;
    }

    .chat-box .chatbox-user.right .message:before {
        left: 100%;
        margin-right: 6px;
        margin-left: 0;
        border-right: 6px solid transparent;
        border-left: 6px solid #15db81;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }

.chat-box p {
    margin: 0;
}

@-webkit-keyframes opacity {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    100% {
        opacity: 0.4;
        filter: alpha(opacity=40);
    }
}

.chat-box .typing {
    display: block;
}

    .chat-box .typing:before,
    .chat-box .typing:after {
        content: '';
    }

    .chat-box .typing > div,
    .chat-box .typing:before,
    .chat-box .typing:after {
        border-radius: 50%;
        width: 8px;
        height: 8px;
        background-color: rgba(0, 0, 0, 0.5);
        display: inline-block;
        margin-right: 5px;
    }

    .chat-box .typing > div,
    .chat-box .typing:before,
    .chat-box .typing:after {
        -webkit-animation-name: opacity;
        -webkit-animation-duration: 1s;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-name: opacity;
        -moz-animation-duration: 1s;
        -moz-animation-iteration-count: infinite;
    }

    .chat-box .typing > div {
        -webkit-animation-delay: 100ms;
        -moz-animation-delay: 100ms;
    }

    .chat-box .typing:after {
        -webkit-animation-delay: 300ms;
        -moz-animation-delay: 300ms;
    }

.mail-list {
    margin: 0 -1px;
}

    .mail-list .list-group-item {
        border-radius: 0;
    }

        .mail-list .list-group-item:last-child {
            border-bottom: 0;
        }
/*
 * $Timeline styles
 *
 */
.timeline {
    position: relative;
    display: table;
    width: 100%;
    margin-bottom: -15px;
}

    .timeline:before {
        position: absolute;
        top: 35px;
        bottom: 15px;
        left: 50%;
        width: 4px;
        background: #1582dc;
        content: '';
        margin-left: -2px;
        border-radius: 2px;
    }

    .timeline .panel {
        position: relative;
    }

.timeline-heading {
    display: table;
    margin: 0 auto;
    margin-bottom: 30px;
    padding: 5px 15px;
    min-width: 80px;
    border-radius: 2px;
    background: #1582dc;
    color: #fff;
    text-align: center;
    position: relative;
    clear: both;
}

.timeline-panel {
    width: 50%;
    position: relative;
    clear: both;
}

    .timeline-panel:before {
        position: absolute;
        top: 10px;
        margin: 2px 0 0 -6px;
        width: 12px;
        height: 12px;
        border: 2px solid #f1f4f9;
        border-radius: 50%;
        background: #1582dc;
        content: "";
    }

    .timeline-panel > .panel {
        border: 1px solid #c4d1df;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    }

        .timeline-panel > .panel:after {
            position: absolute;
            top: 11px;
            right: 100%;
            width: 0;
            height: 0;
            border-width: 6px;
            border-style: solid;
            border-color: transparent #fff transparent transparent;
            content: " ";
            pointer-events: none;
        }

        .timeline-panel > .panel:before {
            position: absolute;
            top: 10px;
            right: 100%;
            width: 0;
            height: 0;
            border-width: 7px;
            border-style: solid;
            border-color: transparent #c4d1df transparent transparent;
            content: " ";
            pointer-events: none;
        }

    .timeline-panel:nth-child(even) {
        float: right;
        padding-left: 20px;
        padding-right: 0;
    }

        .timeline-panel:nth-child(even):before {
            left: 0;
        }

        .timeline-panel:nth-child(even) .timeline-date {
            left: -190px;
            position: absolute;
            text-align: right;
            margin-top: 6px;
            width: 150px;
        }

    .timeline-panel:nth-child(odd) {
        float: left;
        padding-right: 20px;
        padding-left: 0;
    }

        .timeline-panel:nth-child(odd):before {
            right: 0;
            margin: 2px -6px 0 0;
        }

        .timeline-panel:nth-child(odd) .timeline-content {
            float: left;
            padding: 0 20px 0 0;
        }

        .timeline-panel:nth-child(odd) .timeline-date {
            right: -190px;
            text-align: left;
            position: absolute;
            margin-top: 8px;
            width: 150px;
        }

        .timeline-panel:nth-child(odd) .panel:after {
            left: 100%;
            border-color: transparent transparent transparent #ffffff;
        }

        .timeline-panel:nth-child(odd) .panel:before {
            left: 100%;
            border-color: transparent transparent transparent #c4d1df;
        }
/*
 * $Catalog
 *
 */
.switcher {
    display: initial;
}

    .switcher .feed {
        border-radius: 2px;
        overflow: hidden;
    }

    .switcher .thumb img {
        width: 100%;
    }

    .switcher .panel {
        position: relative;
        display: block;
        border: 0;
        overflow: hidden;
    }
/* Grid view */
.view-grid .panel {
    min-height: 200px;
    padding: 5px 0;
}

.switcher.view-grid .thumb img {
    height: 174px;
    margin: 0 auto;
    width: auto;
}

/* List view */
.view-list {
    margin: -15px 0 0;
}

    .view-list .feed {
        margin: 0;
    }

    .view-list .switch-item {
        position: relative;
        width: 100%;
        padding: 0;
    }

    .view-list .switcher-content {
        padding: 0 15px;
    }

    .view-list .panel {
        margin-bottom: 1px;
        border-radius: 0;
        padding: 20px 0;
    }

    .view-list .panel-body {
        display: inline-block;
        vertical-align: top;
        padding: 0;
    }

    .view-list .thumb {
        display: inline-block;
        margin-left: 15px;
        width: 200px;
    }
/*
 * Image $Gallery
 *
 */
.superbox > ul {
    list-style: none;
    padding-left: 0;
}

    .superbox > ul > li {
        display: block;
        border-radius: 2px;
        margin-bottom: 15px;
    }

.superbox .gallery-description {
    display: block;
    background-color: #fff;
    padding: 15px;
    border-radius: 0 0 2px 2px;
}

    .superbox .gallery-description .title {
        display: block;
        text-transform: uppercase;
    }

.gallery-loader {
    opacity: 1;
    filter: alpha(opacity=100);
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    z-index: 999;
    height: 100%;
}

.portfolio-ajax {
    display: none;
    position: relative;
}

    .portfolio-ajax .portfolio-container {
        padding-top: 50px;
        background-color: #fff;
    }

    .portfolio-ajax .porfolio-controls {
        background-color: #fff;
        height: 50px;
        z-index: 99999;
        padding: 15px;
    }

        .portfolio-ajax .porfolio-controls a {
            width: 33.3333%;
            display: block;
            float: left;
            vertical-align: middle;
        }

            .portfolio-ajax .porfolio-controls a.prev-portfolio-item {
                text-align: left;
            }

            .portfolio-ajax .porfolio-controls a.next-portfolio-item {
                text-align: right;
            }

            .portfolio-ajax .porfolio-controls a.close-view {
                text-align: center;
            }

            .portfolio-ajax .porfolio-controls a.disabled {
                color: #999999;
            }

    .portfolio-ajax .project-media {
        text-align: center;
        margin-bottom: 30px;
    }

    .portfolio-ajax .portfolio-content {
        padding: 15px;
    }

    .portfolio-ajax.loading .portfolio-container {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    .portfolio-ajax.loaded .gallery-loader {
        opacity: 0;
        filter: alpha(opacity=0);
        display: none;
    }

@media screen and (min-width: 768px) {
    .portfolio-ajax .portfolio-container {
        width: 100%;
        height: 100%;
        position: absolute;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .portfolio-ajax .porfolio-controls {
        height: 50px;
        width: 100%;
    }
}
/*
 * $404_500, Signin, Signup and lockscreen styles
 *
 */
html.lockscreen,
html.error-page,
html.error-page,
html.signin,
html.signup,
html.lockscreen body,
html.error-page body,
html.error-page body,
html.signin body,
html.signup body {
    height: 100%;
}

    html.lockscreen label,
    html.error-page label,
    html.error-page label,
    html.signin label,
    html.signup label {
        position: inherit;
    }

.center-wrapper {
    display: table;
    width: 100%;
    height: 100%;
    z-index: 1000;
    position: relative;
}

    .center-wrapper .center-content {
        display: table-cell;
        vertical-align: middle;
        width: 100%;
        height: 100%;
        float: none;
        z-index: 9999;
    }

.error-number {
    font-size: 150px;
    line-height: 1;
    font-weight: 800;
}

.error-nav {
    padding: 0;
}

    .error-nav li {
        display: inline;
        padding: 0 10px;
    }

        .error-nav li a {
            color: #fff;
        }

.lockcode {
    max-width: 280px;
    display: block;
    margin: 0 auto;
}

.search .search-form {
    position: relative;
    margin: 25px auto;
    max-width: 250px;
}

    .search .search-form .search-button {
        width: 34px;
        height: 100%;
        position: absolute;
        right: 0;
        overflow: hidden;
        background: transparent;
        border: none;
        outline: none;
        color: #59595a;
    }

    .search .search-form .form-control {
        width: 100%;
    }

.switcher-dash-action {
    padding: 0;
    list-style: none;
    display: inline-block;
    width: 100%;
}

    .switcher-dash-action li {
        width: 50%;
        float: left;
        text-align: center;
    }

        .switcher-dash-action li:first-child a {
            border-radius: 2px 0 0 0;
        }

        .switcher-dash-action li:last-child a {
            border-radius: 0 2px 0 0;
        }

        .switcher-dash-action li.active a {
            background: #FFF;
        }

        .switcher-dash-action li a {
            display: block;
            width: 100%;
            height: 60px;
            line-height: 60px;
            background: #eaecf6;
            color: #59595a;
        }

.lock-input {
    border-color: #fff;
}
/*
 * $Plugins
 *
 */
/*
 * Select2
 *
 */
.editable-input .select2-choice {
    line-height: 29px;
    height: auto;
}

.select2-container .select2-choice {
    background-image: none;
    border-radius: 2px;
    border: 1px solid #e3e6f3;
    color: #59595a;
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #e3e6f3;
    border-radius: 0 0 2px 2px;
    background-image: none;
}

.select2-drop {
    color: #59595a;
    border: 1px solid #e3e6f3;
    border-top: 0;
    border-radius: 0 0 2px 2px;
    box-shadow: none;
}

    .select2-drop.select2-drop-above {
        border-top: 1px solid #e3e6f3;
        border-bottom: 0;
        border-radius: 2px 2px 0 0;
        box-shadow: none;
    }

.select2-drop-active {
    border: 1px solid #1582dc;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #1582dc;
}

.select2-drop-auto-width {
    border-top: 1px solid #e3e6f3;
}

.select2-container .select2-choice .select2-arrow {
    border-left: 1px solid #e3e6f3;
    border-radius: 0 2px 2px 0;
    background: transparent;
    background-image: none;
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
    border-right: 1px solid #e3e6f3;
    border-radius: 2px 0 0 2px;
}

.select2-search input {
    font-family: inherit;
    font-size: 13px;
    border: 1px solid #e3e6f3;
    background: none;
    margin-top: 5px;
    border-radius: 2px;
}

.select2-search:after {
    font-family: 'themify';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 28px;
    content: "\e610";
    position: absolute;
    right: 15px;
    text-align: center;
    font-size: 12px;
    color: #59595a;
    top: 50%;
    margin-top: -12px;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #1582dc;
    box-shadow: none;
}

.select2-dropdown-open .select2-choice {
    box-shadow: none;
    background-color: #e3e6f3;
    background-image: none;
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #1582dc;
    box-shadow: none;
}

.select2-container-multi .select2-choices {
    border: 1px solid #1582dc;
    background-image: none;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #1582dc;
    box-shadow: none;
}

.select2-container-multi .select2-choices .select2-search-field input {
    font-family: inherit;
    color: #59595a;
}

.select2-default {
    color: #59595a !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    color: #59595a;
    border: 1px solid #e3e6f3;
    border-radius: 2px;
    box-shadow: none;
    background-color: #eaecf6;
    background-image: none;
}

.select2-search-choice-close {
    background: none;
    text-align: center;
}

    .select2-search-choice-close:before {
        font-family: 'themify';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 24px;
        content: "\e646";
        text-align: center;
        font-size: 10px;
        color: #59595a;
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -12px;
        width: 100%;
    }

.select2-container .select2-choice abbr {
    background: none;
    width: 24px;
    height: 100%;
    top: 0;
}

.select2-container .select2-choice .select2-arrow {
    width: 24px;
}

    .select2-container .select2-choice .select2-arrow b {
        background: none;
        text-align: center;
    }

        .select2-container .select2-choice .select2-arrow b:before {
            font-family: 'themify';
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 24px;
            content: "\e64b";
            text-align: center;
            font-size: 10px;
            color: #59595a;
        }

.select2-results li {
    border-radius: 2px;
}

.select2-results .select2-highlighted {
    background: #1582dc;
}
/*
 * twitter typeahead
 *
 */
.tt-dropdown-menu {
    width: 100%;
    box-shadow: none;
    border-radius: 2px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: 1px solid #e3e6f3;
    border-top: 0;
    margin-top: -1px;
}

.tt-suggestion.tt-is-under-cursor {
    background-color: #1582dc;
    background-image: none;
}
/*
 * x-editable
 *
 */
.editableform-loading {
    background: url('../img/loading.gif') center center no-repeat;
}

.editable-clear-x {
    background: none;
}

    .editable-clear-x:hover {
        cursor: pointer;
    }

    .editable-clear-x:before {
        font-family: 'themify';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 24px;
        content: "\e646";
        position: absolute;
        text-align: center;
        font-size: 12px;
        color: #59595a;
        top: 50%;
        margin-top: -12px;
    }
/*
 * Enjoyhint
 *
 */
.enjoyhint_btn,
.enjoyhint_next_btn {
    border: 2px solid #15db81;
    color: #15db81;
}

    .enjoyhint_btn:hover,
    .enjoyhint_next_btn:hover {
        background-color: #15db81;
    }
/*
 * Superbox
 *
 */
.superbox {
    font-size: 0;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: -10px;
}

    .superbox .title {
        font-size: 13px;
    }

    .superbox .sub-title {
        font-size: 11px;
    }

.superbox-list {
    display: inline-block;
    *display: inline;
    zoom: 1;
    border-radius: 2px;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 10px;
    margin-top: 10px;
    cursor: pointer;
}

    .superbox-list > img {
        border-radius: 2px 2px 0 0;
    }

.superbox-img {
    max-width: 100%;
    width: 100%;
    cursor: pointer;
}

.superbox-show {
    text-align: center;
    position: relative;
    background: #4a4b5b;
    width: 100%;
    float: left;
    padding: 25px;
    display: none;
    margin-top: -5px;
}

.superbox-current-img {
    max-width: 100%;
}

.superbox-img:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.superbox-float {
    float: left;
}

.superbox-close {
    opacity: 7;
    filter: alpha(opacity=700);
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 25px;
    background: url(../img/close.gif) no-repeat center center;
    width: 35px;
    height: 35px;
}

    .superbox-close:hover {
        opacity: 1;
        filter: alpha(opacity=100);
    }
/*
 * Bootstrap tags input
 *
 */
.bootstrap-tagsinput .tag {
    margin-bottom: 5px;
    display: inline-block;
}
/*

/*
 * Parsley Validation States
 *
 */
.parsley-errors-list {
    list-style: none;
    padding: 0;
}

.parsley-success {
    border-color: #15db81;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

    .parsley-success:focus {
        border-color: #11ac66;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #66f0b1;
    }

.parsley-warning {
    border-color: #daac16;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

    .parsley-warning:focus {
        border-color: #ac8711;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f0cf66;
    }

.parsley-error {
    border-color: #da3e16;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

    .parsley-error:focus {
        border-color: #ac3111;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f08266;
    }

.parsley-error-list {
    color: #a94442;
}
/*
*   Data tables
*
*/
.sorting:after,
.sorting_asc:after,
.sorting_desc:after,
.sorting_asc_disabled:after,
.sorting_desc_disabled:after {
    font-family: FontAwesome;
    float: right;
    color: #ddd;
}

.sorting:after {
    content: "\f0dc";
}

.sorting_asc:after,
.sorting_asc_disabled:after {
    content: "\f0de";
    color: #59595a;
}

.sorting_desc:after,
.sorting_desc_disabled:after {
    content: "\f0dd";
    color: #59595a;
}

table.dataTable.no-footer {
    border-bottom-color: #e3e6f3;
}

table.dataTable,
.editable-datatable,
table.dataTable .form-control {
    width: 100% !important;
}

.datatable-top,
table.dataTable {
    margin-bottom: 15px;
}

.datatable-top,
.datatable-bottom {
    display: table;
    width: 100%;
}

    .datatable-bottom .pagination {
        margin: 0;
    }
/*
*   Stepy Wizard
*
*/
.stepy {
    width: 100%;
    display: block;
    background-color: #ffffff;
}

.stepy-header {
    background-color: #1582dc;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 1px solid #1166ad;
}

    .stepy-header li {
        background-color: transparent;
        position: relative;
        line-height: 1;
    }

        .stepy-header li:before {
            position: absolute;
            top: 1px;
            right: -14px;
            z-index: 9;
            display: block;
            border: 23px solid transparent;
            border-right: 0;
            border-left: 22px solid #1582dc;
            content: "";
        }

        .stepy-header li:after {
            position: absolute;
            top: 0;
            right: -15px;
            z-index: 1;
            display: block;
            border: 24px solid transparent;
            border-right: 0;
            border-left: 23px solid #1166ad;
            content: "";
        }

        .stepy-header li div {
            font-weight: 400;
            font-family: inherit;
            color: #fff;
            text-shadow: none;
            text-transform: uppercase;
            font-size: 14px;
        }

        .stepy-header li span,
        .stepy-header li.stepy-active div,
        .stepy-header li.stepy-active span {
            color: #fff;
        }

        .stepy-header li.stepy-active div {
            font-weight: 800;
        }

.stepy-step {
    background: transparent;
    width: 100%;
}

    .stepy-step:before,
    .stepy-step:after {
        content: " ";
        display: table;
    }

    .stepy-step:after {
        clear: both;
    }

    .stepy-step legend {
        border-radius: 2px;
        background-color: #4f5061;
        color: #fff;
        padding: 0 15px;
        font-size: 13px;
    }
/*
*   Jstree
*
*/
.jstree-default .jstree-clicked,
.jstree-default .jstree-hovered {
    background: #e0effc;
    box-shadow: none;
}

.jstree-default .jstree-wholerow-clicked {
    background: #e0effc;
    border-radius: 2px;
}

.jstree-default.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered,
.jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered,
.jstree-default .jstree-wholerow-hovered,
.jstree-default-responsive .jstree-wholerow-hovered {
    background: #e0effc;
}

.jstree-default .jstree-node,
.jstree-default .jstree-anchor,
.jstree-default .jstree-wholerow {
    border-radius: 2px;
}

.jstree-default .jstree-search {
    color: #da3e16;
}

/*
*   Owl Carousel Owl Demo Theme
*   v1.3.3
*/
.owl-theme .owl-controls .owl-page span {
    background: rgba(0, 0, 0, 0.5);
    width: 8px;
    height: 8px;
    margin: 5px;
}
/*
 *
 * JVectorMap
 *
 */
.jvectormap-label {
    position: absolute;
    border-radius: 2px;
    color: white;
    font-family: inherit;
    font-size: smaller;
    padding: 3px;
    font-size: inherit;
}

.jvectormap-zoomin,
.jvectormap-zoomout {
    position: absolute;
    left: 15px;
    color: white;
    cursor: pointer;
    font-size: 13px;
    text-align: center;
    padding: 5px 7px;
    border-radius: 2px;
    width: auto;
    height: auto;
    line-height: 1;
}

.jvectormap-zoomin {
    top: 15px;
}

.jvectormap-zoomout {
    top: 50px;
}
/*
 *
 * Image Crop
 *
 */
.jcrop-holder #preview-pane {
    display: block;
    position: absolute;
    z-index: 999;
    top: 0;
    right: -280px;
    padding: 5px;
    border: 1px solid #e3e6f3;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0px 0px 5px rgba(88, 96, 114, 0.15);
}
/* The Javascript code will set the aspect ratio of the crop
   area based on the size of the thumbnail preview,
   specified here */
#preview-pane .preview-container {
    width: 250px;
    height: 170px;
    overflow: hidden;
}
/*
 *
 * Slimscroll
 *
 */
.slimScrollBar {
    background-color: rgba(0, 0, 0, 0.3) !important;
}
/*
 *
 * Daterange Picker
 *
 */
.daterangepicker {
    border-radius: 2px;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-top: -1px;
}

    .daterangepicker .ranges .input-mini {
        background-color: transparent;
        border: 1px solid #e3e6f3;
        border-radius: 2px;
        color: #59595a;
    }

    .daterangepicker .calendar-date {
        border-radius: 2px;
        border: 1px solid #e3e6f3;
    }

    .daterangepicker td.available + td.start-date {
        border-radius: 2px 0 0 2px;
    }

    .daterangepicker td.in-range + td.end-date {
        border-radius: 0 2px 2px 0;
    }

    .daterangepicker td.available:hover,
    .daterangepicker th.available:hover {
        background: #eaecf6;
    }

    .daterangepicker td.active,
    .daterangepicker td.active:hover {
        background-color: #1582dc;
        border-color: #1582dc;
        color: #fff;
    }

    .daterangepicker td,
    .daterangepicker th {
        border-radius: 2px;
    }

    .daterangepicker .calendar th,
    .daterangepicker .calendar td {
        font-family: inherit;
    }

    .daterangepicker td.start-date.end-date {
        border-radius: 2px !important;
    }
/*
 *
 * Date Picker
 *
 */
.datepicker-dropdown {
    border-radius: 2px;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 15px;
}

.datepicker td.active:hover,
.datepicker td.active:hover:hover,
.datepicker td.active:focus,
.datepicker td.active:hover:focus,
.datepicker td.active:active,
.datepicker td.active:hover:active,
.datepicker td.active.active,
.datepicker td.active:hover.active,
.datepicker td.active.disabled,
.datepicker td.active:hover.disabled,
.datepicker td.active[disabled],
.datepicker td.active:hover[disabled] {
    background-image: none;
    background-color: #1582dc;
    border-color: #1582dc;
    color: #fff;
    text-shadow: none;
}

.datepicker td,
.datepicker th {
    border-radius: 2px;
    min-width: 30px;
    min-height: 30px;
}

.datepicker-orient-bottom.datepicker:before {
    top: initial;
    bottom: -7px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 0;
    border-top: 7px solid #ccc;
    border-top-color: rgba(0, 0, 0, 0.2);
}

.datepicker-orient-bottom.datepicker:after {
    top: initial;
    bottom: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 0;
    border-top: 6px solid #ffffff;
}
/*
 *
 * Medium Editor
 *
 */
@-webkit-keyframes pop-upwards {
    0% {
        -webkit-transform: translate3d(0.97, 0, 0, 1, 0, 12);
        transform: translate3d(0.97, 0, 0, 1, 0, 12);
        opacity: 0;
        filter: alpha(opacity=0);
    }

    20% {
        -webkit-transform: translate3d(0.99, 0, 0, 1, 0, 2);
        transform: translate3d(0.99, 0, 0, 1, 0, 2);
        opacity: 0.7;
        filter: alpha(opacity=70);
    }

    40% {
        -webkit-transform: translate3d(1, 0, 0, 1, 0, -1);
        transform: translate3d(1, 0, 0, 1, 0, -1);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    70% {
        -webkit-transform: translate3d(1, 0, 0, 1, 0, 0);
        transform: translate3d(1, 0, 0, 1, 0, 0);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    100% {
        -webkit-transform: translate3d(1, 0, 0, 1, 0, 0);
        transform: translate3d(1, 0, 0, 1, 0, 0);
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

@keyframes pop-upwards {
    0% {
        -webkit-transform: translate3d(0.97, 0, 0, 1, 0, 12);
        transform: translate3d(0.97, 0, 0, 1, 0, 12);
        opacity: 0;
        filter: alpha(opacity=0);
    }

    20% {
        -webkit-transform: translate3d(0.99, 0, 0, 1, 0, 2);
        transform: translate3d(0.99, 0, 0, 1, 0, 2);
        opacity: 0.7;
        filter: alpha(opacity=70);
    }

    40% {
        -webkit-transform: translate3d(1, 0, 0, 1, 0, -1);
        transform: translate3d(1, 0, 0, 1, 0, -1);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    70% {
        -webkit-transform: translate3d(1, 0, 0, 1, 0, 0);
        transform: translate3d(1, 0, 0, 1, 0, 0);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    100% {
        -webkit-transform: translate3d(1, 0, 0, 1, 0, 0);
        transform: translate3d(1, 0, 0, 1, 0, 0);
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

.medium-toolbar-arrow-under:after {
    top: 50px;
    border-color: #4f5061 transparent transparent transparent;
}

.medium-toolbar-arrow-over:before {
    top: -8px;
    border-color: transparent transparent #4f5061 transparent;
}

.medium-editor-toolbar {
    background-color: #4f5061;
    border-radius: 2px;
    -webkit-transition: top 0.075s ease-out, left 0.075s ease-out;
    transition: top 0.075s ease-out, left 0.075s ease-out;
}

    .medium-editor-toolbar li button {
        min-width: 50px;
        height: 50px;
        border: 0;
        border-right: 1px solid #565769;
        background-color: #4f5061;
        color: #fff;
        -webkit-transition: background-color 0.2s ease-in;
        transition: background-color 0.2s ease-in;
    }

        .medium-editor-toolbar li button:hover {
            background-color: #484959;
            color: #daac16;
        }

    .medium-editor-toolbar li .medium-editor-button-first {
        border-top-left-radius: 2px;
        border-bottom-left-radius: 2px;
    }

    .medium-editor-toolbar li .medium-editor-button-last {
        border-top-right-radius: 2px;
        border-bottom-right-radius: 2px;
    }

    .medium-editor-toolbar li .medium-editor-button-active {
        background-color: #58596c;
    }

.medium-editor-toolbar-form-anchor {
    background: #4f5061;
    color: #59595a;
    border-radius: 2px;
}

    .medium-editor-toolbar-form-anchor input {
        height: 50px;
        background: #4f5061;
        color: #ccc;
        border-radius: 2px 0 0 2px;
    }

    .medium-editor-toolbar-form-anchor a {
        color: #fff;
    }

.medium-editor-toolbar-anchor-preview {
    background: #4f5061;
    color: #fff;
    border-radius: 2px;
}

.medium-editor-placeholder:after {
    color: #b3b3b1;
}
/*
 *
 * Bootstrap Slider
 * http://www.eyecon.ro/bootstrap-slider/
 *
 */
.slider.slider-horizontal {
    width: 100% !important;
}

    .slider.slider-horizontal .slider-track {
        height: 5px;
    }

    .slider.slider-horizontal .slider-selection {
        background-image: none;
    }

.slider-track {
    background-color: #d0dbec;
    background-image: none;
    border-radius: 2px;
    box-shadow: none;
}

.slider-selection {
    position: absolute;
    /*background-color: #7f8bc8;*/
    background-color: #15acdc;
    border-radius: 2px;
    box-shadow: none;
}

.slider-handle {
    background: #fff;
    opacity: 1;
    filter: alpha(opacity=100);
    /*box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px, #7f8bc8 0px 0px 0px 1px;*/
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px, #15acdc 0px 0px 0px 1px;
}

.slider.slider-horizontal .slider-handle {
    /*margin-top: -8px;*/
    margin-top: 0;
}
/* Slider Color Variants */
.slider-info .slider-selection {
    background-color: #15acdc;
}

.slider-info .slider-handle {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px, #15acdc 0px 0px 0px 1px;
}

.slider-primary .slider-selection {
    background-color: #1582dc;
}

.slider-primary .slider-handle {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px, #1582dc 0px 0px 0px 1px;
}

.slider-success .slider-selection {
    background-color: #15db81;
}

.slider-success .slider-handle {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px, #15db81 0px 0px 0px 1px;
}

.slider-warning .slider-selection {
    background-color: #daac16;
}

.slider-warning .slider-handle {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px, #daac16 0px 0px 0px 1px;
}

.slider-danger .slider-selection {
    background-color: #da3e16;
}

.slider-danger .slider-handle {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px, #da3e16 0px 0px 0px 1px;
}

.slider-striped .slider .slider-selection {
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}
/*
 *
 * toastr
 * https://github.com/CodeSeven/toastr
 *
 */
#toast-container > div {
    border-radius: 2px;
    box-shadow: none;
}

.toast {
    background-color: #030303;
}

.toast-success {
    background-color: #15db81;
}

.toast-error {
    background-color: #da3e16;
}

.toast-info {
    background-color: #15acdc;
}

.toast-warning {
    background-color: #daac16;
}

#toast-container > :hover {
    box-shadow: none;
}
/*
 *
 * Fullcalendar
 * http://arshaw.com/fullcalendar
 *
 */
/*.fc-icon {
    font-size: inherit;
}

.external-events {
    border-bottom: 1px solid #e3e6f3;
    padding: 0 0 20px 0;
}

.fc-event,
.external-event {
    border: transparent;
    cursor: default;
    text-align: center;
    font-weight: 400;
    font-size: 13px;
}*/

/*.external-events .external-event {
    cursor: move;
    display: inline-block;
    margin: 0 5px 10px 0;
}

.external-event:hover {
    cursor: move;
}

a.fc-event,
.fc-event-draggable {
    cursor: pointer;
}

.fc-toolbar {
    display: none;
    visibility: hidden;
}

.fc-content {
    margin: 0 -1px;
}

.fc-event {
    cursor: default;
    line-height: inherit;
    padding: .2em .6em .3em;
}

    .fc-event.bg-primary {
        color: #ffffff;
    }

    .fc-event.bg-default {
        color: #59595a;
    }

    .fc-event.bg-warning {
        color: #ffffff;
    }

    .fc-event.bg-success {
        color: #ffffff;
    }

    .fc-event.bg-info {
        color: #ffffff;
    }

    .fc-event.bg-danger {
        color: #ffffff;
    }*/
/*
 *
 * Switchery
 * http://abpetkov.github.io/switchery/
 *
 */
.switchery {
    background-color: #f5f6fb !important;
    border: 1px solid #e3e6f3;
    border-radius: 20px;
    cursor: pointer;
    display: inline-block;
    height: 30px;
    position: relative;
    vertical-align: middle;
    width: 50px;
}

    .switchery > small {
        background: #fff;
        border-radius: 100%;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        height: 28px;
        position: absolute;
        top: 0;
        width: 28px;
    }
/*
 * FuelUX Pill
 *
 */
.pillbox {
    margin-bottom: 10px;
    padding: 5px;
    border: 1px solid #e3e6f3;
    border-radius: 2px;
    line-height: 1;
}

    .pillbox ul {
        margin: 0;
        padding: 0;
    }

    .pillbox li {
        display: inline-block;
        margin: 2px;
        padding: 2px 4px;
        vertical-align: middle;
        cursor: pointer;
        border-radius: 2px;
        white-space: nowrap;
        font-size: 12px;
    }

        .pillbox li:after {
            font-family: 'themify';
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            position: relative;
            content: " \e646";
            font-size: 10px;
            margin-left: 10px;
        }

        .pillbox li.status-important {
            background-color: #da3e16;
        }

        .pillbox li.status-warning {
            background-color: #daac16;
        }

        .pillbox li.status-success {
            background-color: #15db81;
        }

        .pillbox li.status-info {
            background-color: #15acdc;
        }
/*
 * FuelUX Spinner
 *
 */
.spinner .btn.disabled {
    cursor: not-allowed;
}
/*
 * FuelUX Wizard
 *
 */

.wizard {
    margin: 10px auto;
    background: #fff;
}

    .wizard .nav-tabs {
        position: relative;
        /*margin: 40px auto;*/
        margin-top: 0;
        margin-bottom: 0;
        border-bottom-color: #e0e0e0;
    }

    .wizard > div.wizard-inner {
        position: relative;
    }

.connecting-line {
    height: 1px;
    background: #e0e0e0;
    position: absolute;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 1;
}

.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    border: 0;
    border-bottom-color: transparent;
}

span.round-tab {
    width: 70px;
    height: 70px;
    line-height: 70px;
    display: inline-block;
    /*border-radius: 100px;*/
    border-radius: 3px;
    /*background: #fff;*/
    background: #2980b9;
    border: 1px solid #2779b0;
    z-index: 2;
    position: absolute;
    left: 0;
    text-align: center;
    font-size: 25px;
}

    span.round-tab i {
        color: #fff;
    }

.wizard li.active span.round-tab {
    background: #fff;
    border: 1px solid #2779b0;
}

    .wizard li.active span.round-tab i {
        color: #2779b0;
    }

span.round-tab:hover {
    color: #2779b0;
    background: #0e5996;
}

.wizard .nav-tabs > li {
    width: 25%;
}

    /*.wizard li:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 0;
    margin: 0 auto;
    bottom: 0px;
    border: 5px solid transparent;
    border-bottom-color: #5bc0de;
    transition: 0.1s ease-in-out;
}

.wizard li.active:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 1;
    margin: 0 auto;
    bottom: 0px;
    border: 10px solid transparent;
    border-bottom-color: #5bc0de;
}*/

    .wizard .nav-tabs > li a {
        width: 70px;
        height: 70px;
        margin: 20px auto;
        border-radius: 100%;
        padding: 0;
    }

        .wizard .nav-tabs > li a:hover {
            background: transparent;
        }

.wizard .tab-pane {
    position: relative;
    padding-top: 50px;
}

.wizard h3 {
    margin-top: 0;
}

@media( max-width : 585px ) {

    .wizard {
        width: 90%;
        height: auto !important;
    }

    span.round-tab {
        font-size: 16px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .wizard .nav-tabs > li a {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .wizard li.active:after {
        content: " ";
        position: absolute;
        left: 35%;
    }
}

/*.wizard {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #eaecf6;
  background-color: #eaecf6;
  border-radius: 2px 2px 0;
}
.wizard ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wizard ul li {
  position: relative;
  margin: 0;
  padding-left: 30px;
  padding-right: 15px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  cursor: default;
  float: left;
  white-space: nowrap;
}
.wizard ul li:before {
  position: absolute;
  top: 0;
  right: -14px;
  z-index: 9;
  display: block;
  border: 21px solid transparent;
  border-right: 0;
  border-left: 14px solid #eaecf6;
  content: "";
}
.wizard ul li:after {
  position: absolute;
  top: -1px;
  right: -15px;
  z-index: 1;
  display: block;
  border: 22px solid transparent;
  border-right: 0;
  border-left: 15px solid #cdd2ea;
  content: "";
}
.wizard ul li .badge {
  margin-right: 8px;
}
.wizard ul li.complete {
  background: #eaecf6;
}
.wizard ul li.complete .badge {
  background: #15db81;
}
.wizard ul li.complete:before {
  border-left: 14px solid #eaecf6;
}
.wizard ul li.complete:hover {
  background: #e7eff8;
  cursor: pointer;
}
.wizard ul li.complete:hover:before {
  border-left: 14px solid #e7eff8;
}
.wizard ul li.active {
  background: #fff;
  color: #1582dc;
}
.wizard ul li.active:before {
  border-left: 14px solid #fff;
  right: -14px;
}
.wizard ul li.active:after {
  right: -15px;
}
.wizard ul li:first-child {
  padding-left: 20px;
  border-radius: 2px 0 0;
}
.wizard ul.previous-disabled li.complete {
  cursor: default;
}
.wizard ul.previous-disabled li.complete:hover {
  background: #f3f4f5;
}
.wizard ul.previous-disabled li.complete:hover:before {
  border-left-color: #f3f4f5;
}
.wizard .actions {
  position: absolute;
  right: 0;
  float: right;
  padding-top: 6px;
  padding-right: 15px;
  padding-left: 15px;
  vertical-align: middle;
  line-height: 37px;
}
.wizard .actions a {
  margin-right: 8px;
  font-size: 12px;
  line-height: 45px;
}
.step-content {
  padding: 15px;
}
.step-content .step-pane {
  display: none;
}
.step-content .active {
  display: block;
}
.step-content .active .btn-group .active {
  display: inline-block;
}*/
/*
 * iCheck
 *
 */
.icheckbox,
.iradio {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 18px;
    height: 18px;
    background: url(../img/minimal.png) no-repeat;
    border: none;
    cursor: pointer;
}

.icheckbox {
    background-position: 0 0;
}

    .icheckbox.hover {
        background-position: -20px 0;
    }

    .icheckbox.checked {
        background-position: -40px 0;
    }

    .icheckbox.disabled {
        background-position: -60px 0;
        cursor: default;
    }

    .icheckbox.checked.disabled {
        background-position: -80px 0;
    }

.iradio {
    background-position: -100px 0;
}

    .iradio.hover {
        background-position: -120px 0;
    }

    .iradio.checked {
        background-position: -140px 0;
    }

    .iradio.disabled {
        background-position: -160px 0;
        cursor: default;
    }

    .iradio.checked.disabled {
        background-position: -180px 0;
    }
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .icheckbox,
    .iradio {
        background-image: url(../img/minimal@2x.png);
        background-size: 200px 20px;
    }
}
/*
 *  Various $Charts plugin styles
 *
 */
/* Morris Tooltip */
.morris-hover {
    position: absolute;
    z-index: 1000;
}

    .morris-hover.morris-default-style {
        border-radius: 2px;
        padding: 6px;
        color: #ffffff;
        font-size: 12px;
        text-align: center;
    }

        .morris-hover.morris-default-style .morris-hover-row-label {
            font-weight: bold;
            margin: 0.25em 0;
        }

        .morris-hover.morris-default-style .morris-hover-point {
            white-space: nowrap;
            margin: 0.1em 0;
        }
/* Sparkline Tooltip */
#jqstooltip {
    display: table;
    border-radius: 2px;
    padding: 15px;
}
/* Flot Charts */
#tooltip {
    position: absolute;
    display: none;
    padding: 5px 10px;
    border: 0;
    line-height: 1;
}

    #tooltip:before {
        content: '';
        display: block;
        position: absolute;
        top: 4px;
        right: 100%;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6px;
    }
/* Pie Charts */
.piechart {
    position: relative;
    display: inline-block;
}

    .piechart canvas {
        position: absolute;
        top: 0;
        left: 0;
    }

    .piechart > span {
        display: table;
        width: 100%;
        height: 100%;
    }

        .piechart > span > span {
            display: table-cell;
            vertical-align: middle;
        }

    .piechart .percent {
        display: block;
        font-size: 18px;
        position: relative;
    }

        .piechart .percent:after {
            content: '%';
            font-size: .5em;
            position: absolute;
            top: 0;
        }
/* Chart dimensions */
.chart {
    border: 0;
    width: 100%;
    height: 200px;
}

.chart-legend.first {
    padding-top: 80px;
}
/*
 *  Maps
 *
 */
.map img,
#map img {
    max-width: none !important;
}

#map,
.map {
    width: 100%;
    height: 100%;
    background: transparent;
    min-height: 300px;
    position: relative;
}

#map {
    min-height: 250px;
}

    #map .jvectormap-container {
        min-height: 300px;
    }
/* Google Maps */
.gm-style-cc {
    display: none !important;
}

#map_canvas {
    width: 100%;
    height: 400px;
}
/*
 * $Sortable elements (Jquery Sortable)
 *
 */
.sortable .list-group-item,
.handles .list-group-item {
    padding: 15px;
}

.connected,
.sortable,
.exclude,
.handles {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .connected li,
    .sortable li,
    .exclude li,
    .handles li {
        border: 1px solid transparent;
    }

        .connected li:not(:last-child),
        .sortable li:not(:last-child),
        .exclude li:not(:last-child),
        .handles li:not(:last-child) {
            margin-bottom: 1px;
            border: 1px solid transparent;
            border-radius: 2px;
        }

    .sortable > li,
    .handles span {
        cursor: move;
    }

    .handles span {
        float: left;
    }

#connected {
    overflow: hidden;
    margin: auto;
}

.connected {
    float: left;
}

    .connected.no2 {
        float: right;
    }

.sortable-placeholder {
    list-style: none;
    border: 1px dashed #ddd !important;
    min-height: 50px;
    width: 100%;
}
/*
 * Nestable elements (Jquery Nestable)
 *
 */
.dd {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dd-list {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .dd-list .dd-list {
        padding-left: 30px;
    }

.dd-collapsed .dd-list {
    display: none;
}

.dd-item,
.dd-empty,
.dd-placeholder {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 20px;
    line-height: 20px;
}

.dd-handle {
    display: block;
    margin: 5px 0;
    padding: 10px;
    text-decoration: none;
    border: 1px solid #e3e6f3;
    background: #fff;
    border-radius: 2px;
}

    .dd-handle:hover {
        color: #2ea8e5;
        background: #fff;
    }

.dd-item > button {
    display: block;
    position: relative;
    cursor: pointer;
    float: left;
    width: 25px;
    height: 30px;
    padding: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: 0;
    background: transparent;
    line-height: 40px;
    text-align: center;
    font-weight: bold;
}

    .dd-item > button:before {
        content: "+";
        display: block;
        position: absolute;
        width: 100%;
        text-align: center;
        text-indent: 0;
    }

    .dd-item > button[data-action="collapse"]:before {
        content: "-";
    }

.dd-placeholder,
.dd-empty {
    margin: 5px 0;
    padding: 0;
    min-height: 30px;
    background: transparent;
    border: 1px dashed #ddd;
}

.dd-empty {
    border: 1px dashed #bbb;
    min-height: 100px;
    background-color: #e5e5e5;
    background-image: -webkit-linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff), -webkit-linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff);
    background-image: linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff), linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.dd-dragel {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
}

    .dd-dragel > .dd-item .dd-handle {
        margin-top: 0;
    }

    .dd-dragel .dd-handle {
        box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
    }
/**
 * Nestable Extras
 */
#nestable-output,
#nestable2-output {
    width: 100%;
    background: #fff;
    font-size: 10px;
}

#nestable2 .dd-item > button:before {
    color: #fff;
}

@media only screen and (min-width: 700px) {
    .dd + .dd {
        margin-left: 2%;
    }
}

.dd-hover > .dd-handle {
    background: #2ea8e5 !important;
}
/**
 * Nestable Draggable Handles
 */
.dd3-content {
    display: block;
    margin: 5px 0;
    padding: 10px 10px 10px 50px;
    text-decoration: none;
    border: 1px solid #e3e6f3;
    background: #ffffff;
    border-radius: 2px;
}

    .dd3-content:hover {
        background: #fff;
    }

.dd-dragel > .dd3-item > .dd3-content {
    margin: 0;
}

.dd3-item > button {
    margin-left: 40px;
}

.dd3-handle {
    position: absolute;
    margin: 0;
    left: 0;
    top: 0;
    cursor: pointer;
    width: 38px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: 1px solid #e3e6f3;
    background: #ffffff;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

    .dd3-handle:before {
        content: '≡';
        display: block;
        position: absolute;
        left: 0;
        top: 7px;
        width: 100%;
        text-align: center;
        text-indent: 0;
        font-size: 26px;
        font-weight: normal;
    }

    .dd3-handle:hover {
        background: #ddd;
    }
/*
 * $Utilities Classes
 *
 */
/* p,m,b = padding,margin,border
 * Directions
 * t,b,r,l,n = top,bottom,right,left, negative
 * Sizing
 * xs,sm,md,df,lg = extra small(@xs),small(@sm),medium(@md),default(@df),large(@lg)
 */
.ptl {
    position: absolute;
    top: 0;
    left: 0;
}

.ptr {
    position: absolute;
    top: 0;
    right: 0;
}

.pbl {
    position: absolute;
    bottom: 0;
    left: 0;
}

.pbr {
    position: absolute;
    bottom: 0;
    right: 0;
}
/* Set background color to transparent */
.bg-none {
    background-color: transparent;
    box-shadow: none;
}

.shadow {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.no-shadow {
    box-shadow: none;
}
/* Margins */
.no-m {
    margin: 0 !important;
}

.mn {
    margin-right: -15px;
    margin-left: -15px;
}

.mrn {
    margin-right: -15px;
}

.mln {
    margin-left: -15px;
}

.mbn {
    margin-bottom: -15px;
}

.ml0 {
    margin-left: 0;
}

.mr0 {
    margin-right: 0;
}

.mt0 {
    margin-top: 0;
}

.mb0 {
    margin-bottom: 0;
}

.m35 {
    margin: 35px;
}

.mr35 {
    margin-right: 35px;
}

.ml35 {
    margin-left: 35px;
}

.mt35 {
    margin-top: 35px;
}

.mb35 {
    margin-bottom: 35px;
}

.m25 {
    margin: 25px;
}

.mr25 {
    margin-right: 25px;
}

.ml25 {
    margin-left: 25px;
}

.mt25 {
    margin-top: 25px;
}

.mb25 {
    margin-bottom: 25px;
}

.m20 {
    margin: 20px;
}

.mr20 {
    margin-right: 20px;
}

.ml20 {
    margin-left: 20px;
}

.mt20 {
    margin-top: 20px;
}

.mb20 {
    margin-bottom: 20px;
}

.m15 {
    margin: 15px;
}

.mr15 {
    margin-right: 15px;
}

.ml15 {
    margin-left: 15px;
}

.mt15 {
    margin-top: 15px;
}

.mb15 {
    margin-bottom: 15px;
}

.m10 {
    margin: 10px;
}

.mr10 {
    margin-right: 10px;
}

.ml10 {
    margin-left: 10px;
}

.mt10 {
    margin-top: 10px;
}

.mb10 {
    margin-bottom: 10px;
}

.m5 {
    margin: 5px;
}

.mr5 {
    margin-right: 5px;
}

.ml5 {
    margin-left: 5px;
}

.mt5 {
    margin-top: 5px;
}

.mb5 {
    margin-bottom: 5px;
}
/* Padding space */
.no-p {
    padding: 0 !important;
}

.pl0 {
    padding-left: 0;
}

.pr0 {
    padding-right: 0;
}

.pt0 {
    padding-top: 0;
}

.pb0 {
    padding-bottom: 0;
}

.p25 {
    padding: 25px;
}

.pr25 {
    padding-right: 25px;
}

.pl25 {
    padding-left: 25px;
}


.pt30 {
    padding-top: 30px;
}

.pt25 {
    padding-top: 25px;
}

.pb25 {
    padding-bottom: 25px;
}

.p20 {
    padding: 20px;
}

.pr20 {
    padding-right: 20px;
}

.pl20 {
    padding-left: 20px;
}

.pt20 {
    padding-top: 20px;
}

.pb20 {
    padding-bottom: 20px;
}

.p15 {
    padding: 15px;
}

.pr15 {
    padding-right: 15px;
}

.pl15 {
    padding-left: 15px;
}

.pt15 {
    padding-top: 15px;
}

.pb15 {
    padding-bottom: 15px;
}

.p10 {
    padding: 10px;
}

.pr5 {
    padding-right: 5px;
}

.pr10 {
    padding-right: 10px;
}

.pl10 {
    padding-left: 10px;
}

.pt10 {
    padding-top: 10px;
}

.pb10 {
    padding-bottom: 10px;
}

.p5 {
    padding: 5px;
}

.pr5 {
    padding-right: 5px;
}

.pl5 {
    padding-left: 5px;
}

.pt5 {
    padding-top: 5px;
}

.pb5 {
    padding-bottom: 5px;
}

.pr60 {
    padding-right: 60px;
}

.pl60 {
    padding-left: 60px;
}

.pt60 {
    padding-top: 60px;
}

.pb60 {
    padding-bottom: 60px;
}

/* Borders */
.no-b {
    border: 0;
}

td.no-b {
    border-top: 0 !important;
}

.bordered {
    border: 1px solid #e3e6f3;
}

.bb {
    border-bottom: 1px solid #e3e6f3;
}

.bt {
    border-top: 1px solid #e3e6f3;
}

.bl {
    border-left: 1px solid #e3e6f3;
}

.br {
    border-right: 1px solid #e3e6f3;
}

.avatar.bordered {
    border: 3px solid rgba(255, 255, 255, 0.5);
}
/* Radius */
.no-radius {
    border-radius: 0;
}

.rounded {
    border-radius: 2px;
}

.brtl {
    border-top-left-radius: 2px;
}

.brtr {
    border-top-right-radius: 2px;
}

.brbl {
    border-bottom-left-radius: 2px;
}

.brbr {
    border-bottom-right-radius: 2px;
}

.overflow-hidden {
    overflow: hidden;
}
/*
 *  Demo specific styles.
 *
 * These can be removed
 */
.demo .slider.slider-vertical {
    height: 175px;
}

.bs-demo .btn {
    margin-bottom: 5px;
}

.tool-button .btn {
    margin-right: 5px;
}

.demo-button .btn {
    min-width: 115px;
    margin-bottom: 5px;
    margin-right: 5px;
}

.demo > .dropdown {
    float: left;
}

    .demo > .dropdown > .dropdown-menu {
        position: static;
        display: block;
        margin-bottom: 5px;
    }

.demo-button2 button {
    margin: 0 5px 10px 0;
}

.fontawesome-list a {
    display: block;
    margin-left: 30px;
    height: 32px;
    color: #59595a;
    font-size: 1em;
    line-height: 32px;
}

.fontawesome-list .fa {
    position: absolute;
    top: 9px;
    left: 20px;
    -webkit-transition: all 150ms linear;
    transition: all 150ms linear;
}

.themify-icons .fa-hover {
    display: block;
    padding-left: 45px;
    height: 32px;
    color: #59595a;
    font-size: 1em;
    line-height: 32px;
}

.themify-icons span {
    position: absolute;
    top: 9px;
    left: 20px;
    -webkit-transition: all 150ms linear;
    transition: all 150ms linear;
}

.fontawesome-list a:hover .fa,
.themify-icons .fa-hover:hover span {
    top: 5px;
    color: #15db81;
    font-size: 1.5em;
}

.form-horizontal.bordered-group .form-group {
    border-bottom: 1px solid #E7EBF3;
    padding-bottom: 15px;
}

    .form-horizontal.bordered-group .form-group:last-child {
        border-bottom: 1px solid transparent;
        padding: 0;
    }

.switcha > div {
    float: left;
}

.services .service {
    margin: 0 30px 25px;
    text-align: center;
}

.service-icon {
    margin: 0 auto 15px;
    width: 60px;
    line-height: 60px;
    font-size: 30px;
    color: #D6D6D6;
    border-radius: 50%;
}

    .service-icon.bg-color {
        color: #fff;
    }

    .service-icon.huge {
        width: 100px;
        line-height: 100px;
        background-color: #eaecf6;
    }

    .service-icon.left {
        float: left;
        margin: 0;
    }

/* Wrappers

  `8.`888b                 ,8' 8 888888888o.            .8.          8 888888888o   8 888888888o   8 8888888888   8 888888888o.     d888888o.
   `8.`888b               ,8'  8 8888    `88.          .888.         8 8888    `88. 8 8888    `88. 8 8888         8 8888    `88.  .`8888:' `88.
    `8.`888b             ,8'   8 8888     `88         :88888.        8 8888     `88 8 8888     `88 8 8888         8 8888     `88  8.`8888.   Y8
     `8.`888b     .b    ,8'    8 8888     ,88        . `88888.       8 8888     ,88 8 8888     ,88 8 8888         8 8888     ,88  `8.`8888.
      `8.`888b    88b  ,8'     8 8888.   ,88'       .8. `88888.      8 8888.   ,88' 8 8888.   ,88' 8 888888888888 8 8888.   ,88'   `8.`8888.
       `8.`888b .`888b,8'      8 888888888P'       .8`8. `88888.     8 888888888P'  8 888888888P'  8 8888         8 888888888P'     `8.`8888.
        `8.`888b8.`8888'       8 8888`8b          .8' `8. `88888.    8 8888         8 8888         8 8888         8 8888`8b          `8.`8888.
         `8.`888`8.`88'        8 8888 `8b.       .8'   `8. `88888.   8 8888         8 8888         8 8888         8 8888 `8b.    8b   `8.`8888.
          `8.`8' `8,`'         8 8888   `8b.    .888888888. `88888.  8 8888         8 8888         8 8888         8 8888   `8b.  `8b.  ;8.`8888
           `8.`   `8'          8 8888     `88. .8'       `8. `88888. 8 8888         8 8888         8 888888888888 8 8888     `88. `Y8888P ,88P'

*/

#wrapper {
    width: 100%;
}

#page-wrapper {
    padding: 0 15px;
    border: none;
    background-color: #ecf0f1;
}

@media(min-width:768px) {
    #page-wrapper {
        /*margin: 50px 0 0 250px;*/
        margin: 20px 0 0 250px;
        padding: 15px;
        min-height: 1300px;
        border-left: 1px solid #1582dc;
    }

        #page-wrapper.collapsed {
            margin: 50px 0 0;
        }

    .page-content {
        // opacity: 0.3;
        -webkit-transition: opacity .4s linear;
        -moz-transition: opacity .4s linear;
        -o-transition: opacity .4s linear;
        transition: opacity .4s linear;
        padding-top:18px;
    }

    .page-content-ease-in {
        opacity: 1;
    }
}

/* Top Navigation

  8888888 8888888888 ,o888888o.     8 888888888o             `8.`888b           ,8'
        8 8888    . 8888     `88.   8 8888    `88.            `8.`888b         ,8'
        8 8888   ,8 8888       `8b  8 8888     `88             `8.`888b       ,8'
        8 8888   88 8888        `8b 8 8888     ,88              `8.`888b     ,8'
        8 8888   88 8888         88 8 8888.   ,88'               `8.`888b   ,8'
        8 8888   88 8888         88 8 888888888P'                 `8.`888b ,8'
        8 8888   88 8888        ,8P 8 8888                         `8.`888b8'
        8 8888   `8 8888       ,8P  8 8888                          `8.`888'
        8 8888    ` 8888     ,88'   8 8888                           `8.`8'
        8 8888       `8888888P'     8 8888                            `8.`

*/
.navbar-validation {
    margin-left: 0;
    /*background-color: #1582dc;*/
    background-color: #337ab7;
    float: left;
}

    .navbar-validation .navbar-brand a {
        display: inline-block;
        transition: all ease-in-out .3s;
    }

        .navbar-validation .navbar-brand a:hover {
            opacity: 0.7;
        }

    .navbar-validation .navbar-left {
        display: none;
    }

    .navbar-validation .navbar-header {
        background-color: #142434;
    }

    .navbar-validation .navbar-toggle {
        margin-top: 6px;
        margin-bottom: auto;
        border-color: #999;
        outline: none;
        color: #333;
        background-color: #fff;
    }

        .navbar-validation .navbar-toggle:active,
        .navbar-validation .navbar-toggle:focus,
        .navbar-validation .navbar-toggle:hover {
            background-color: #fff;
        }

    .navbar-validation .dropdown-toggle {
        padding-top: 6px;
        padding-bottom: 4px;
    }

    .navbar-validation .nav-top {
        margin-left: 15px;
    }

    .navbar-validation > .nav-top > .nav > li {
        display: inline-block;
        float: left;
    }

    .navbar-validation > .nav-top > ul.navbar-right > li {
        margin-right: 5px;
    }

        .navbar-validation > .nav-top > ul.navbar-right > li:last-child {
            margin-right: 0;
        }

    .navbar-validation > .nav-top > .nav > li > a {
        height: 50px;
        padding-top: 15px;
        color: #fff;
    }

        .navbar-validation > .nav-top > .nav > li > a:hover,
        .navbar-validation > .nav-top > .nav > li > a:focus {
            color: #fff;
            background-color: #142434;
        }

    .navbar-validation .dropdown-messages {
        left: 0;
        min-width: 600px;
        border-color: #8bd0c2;
    }

    .navbar-validation .dropdown-alerts {
        left: inherit;
        min-width: 600px;
        border-color: #f9ce89;
        font-size: 12px;
    }

    .navbar-validation .dropdown-tasks {
        left: -119px;
        min-width: 600px;
        border-color: #94c0dc;
    }

    .navbar-validation .dropdown-user {
        left: -80px;
        margin: 0;
        min-width: 200px;
    }

    .navbar-validation .dropdown-scroll {
        margin: 0;
        padding: 0;
    }

        .navbar-validation .dropdown-scroll .dropdown-header {
            padding: 15px 10px;
        }

            .navbar-validation .dropdown-scroll .dropdown-header:active,
            .navbar-validation .dropdown-scroll .dropdown-header:focus,
            .navbar-validation .dropdown-scroll .dropdown-header:hover {
                color: inherit;
                background: inherit;
            }

        .navbar-validation .dropdown-scroll li {
            margin: 0;
            border-bottom: 1px solid #ccc;
            background: #fff;
        }

            .navbar-validation .dropdown-scroll li:last-child {
                border-bottom: none;
            }

            .navbar-validation .dropdown-scroll li a {
                display: block;
                padding: 10px;
            }

                .navbar-validation .dropdown-scroll li a:hover {
                    text-decoration: none;
                    background-color: inherit;
                }

        .navbar-validation .dropdown-scroll .dropdown-footer {
            display: block;
            border-top: 1px solid #ccc;
            border-bottom: none;
            text-align: center;
            font-size: 12px;
            line-height: 1.428571429;
        }

        .navbar-validation .dropdown-scroll p {
            margin: 0;
        }

        .navbar-validation .dropdown-scroll li a,
        .navbar-validation .dropdown-scroll li a:hover,
        .navbar-validation .dropdown-messages li a:hover,
        .navbar-validation .dropdown-alerts li a:hover,
        .navbar-validation .dropdown-tasks li a:hover {
            color: #333;
        }

    .navbar-validation .messages-link,
    .navbar-validation .messages-link:hover,
    .navbar-validation .messages-link:focus,
    .navbar-validation .dropdown-messages .dropdown-header,
    .navbar-validation .dropdown-messages .dropdown-header:hover,
    .navbar-validation .dropdown-messages .dropdown-footer,
    .navbar-validation .dropdown-messages .dropdown-footer a,
    .navbar-validation .dropdown-messages .dropdown-footer a:hover {
        color: #fff;
        background: #16a085 !important;
    }

    .navbar-validation .alerts-link,
    .navbar-validation .dropdown-alerts .dropdown-header,
    .navbar-validation .dropdown-alerts .dropdown-header:hover,
    .navbar-validation .dropdown-alerts .dropdown-footer,
    .navbar-validation .dropdown-alerts .dropdown-footer a,
    .navbar-validation .dropdown-alerts .dropdown-footer a:hover {
        color: #fff;
        background: #f39c12 !important;
    }

    .navbar-validation .alerts-noError,
    .navbar-validation .dropdown-noError .dropdown-header,
    .navbar-validation .dropdown-noError .dropdown-header:hover,
    .navbar-validation .dropdown-noError .dropdown-footer,
    .navbar-validation .dropdown-noError .dropdown-footer a,
    .navbar-validation .dropdown-noError .dropdown-footer a:hover {
        color: #fff;
        background: #0e9558 !important;
    }

    .navbar-validation .alert-icon {
        width: 25px;
        margin-right: 5px;
        text-align: center;
        color: #fff;
    }

    .navbar-validation .tasks-link,
    .navbar-validation .dropdown-tasks .dropdown-header,
    .navbar-validation .dropdown-tasks .dropdown-header:hover,
    .navbar-validation .dropdown-tasks .dropdown-footer,
    .navbar-validation .dropdown-tasks .dropdown-footer a,
    .navbar-validation .dropdown-tasks .dropdown-footer a:hover {
        color: #fff;
        background: #2980b9 !important;
    }

    .navbar-validation .dropdown-tasks .progress {
        height: 10px;
        margin-bottom: 5px;
        border-radius: 0;
    }

    .navbar-validation .number {
        position: absolute;
        bottom: 25px;
        left: 3px;
        width: 20px;
        height: 20px;
        padding-right: 1px;
        border-radius: 50%;
        text-align: center;
        font-size: 11px;
        line-height: 20px;
        color: #f2dede;
        background-color: #a94442;
        border-color: #f2dede;
    }

    .navbar-validation .alerts-noError .number {
        position: absolute;
        bottom: 25px;
        left: 3px;
        width: 20px;
        height: 20px;
        padding-right: 1px;
        border-radius: 50%;
        text-align: center;
        font-size: 11px;
        line-height: 20px;
        color: #f2dede;
        background-color: #2779b0;
    }


/* Top Navigation

  8888888 8888888888 ,o888888o.     8 888888888o             b.             8          .8. `8.`888b           ,8'
        8 8888    . 8888     `88.   8 8888    `88.           888o.          8         .888. `8.`888b         ,8'
        8 8888   ,8 8888       `8b  8 8888     `88           Y88888o.       8        :88888. `8.`888b       ,8'
        8 8888   88 8888        `8b 8 8888     ,88           .`Y888888o.    8       . `88888. `8.`888b     ,8'
        8 8888   88 8888         88 8 8888.   ,88'           8o. `Y888888o. 8      .8. `88888. `8.`888b   ,8'
        8 8888   88 8888         88 8 888888888P'            8`Y8o. `Y88888o8     .8`8. `88888. `8.`888b ,8'
        8 8888   88 8888        ,8P 8 8888                   8   `Y8o. `Y8888    .8' `8. `88888. `8.`888b8'
        8 8888   `8 8888       ,8P  8 8888                   8      `Y8o. `Y8   .8'   `8. `88888. `8.`888'
        8 8888    ` 8888     ,88'   8 8888                   8         `Y8o.`  .888888888. `88888. `8.`8'
        8 8888       `8888888P'     8 8888                   8            `Yo .8'       `8. `88888. `8.`

*/

.navbar-top {
    margin-left: 0;
    /*background-color: #1582dc;*/
    background-color: #337ab7;
}

    .navbar-top .navbar-brand a {
        display: inline-block;
        transition: all ease-in-out .3s;
    }

        .navbar-top .navbar-brand a:hover {
            opacity: 0.7;
        }

    .navbar-top .navbar-left {
        display: none;
    }

    .navbar-top .navbar-header {
        background-color: #142434;
    }

    .navbar-top .navbar-toggle {
        margin-top: 6px;
        margin-bottom: auto;
        border-color: #999;
        outline: none;
        color: #333;
        background-color: #fff;
    }

        .navbar-top .navbar-toggle:active,
        .navbar-top .navbar-toggle:focus,
        .navbar-top .navbar-toggle:hover {
            background-color: #fff;
        }

    .navbar-top .dropdown-toggle {
        padding-top: 6px;
        padding-bottom: 4px;
    }

    .navbar-top .nav-top {
        margin-left: 15px;
    }

    .navbar-top > .nav-top > .nav > li {
        display: inline-block;
        float: left;
    }

    .navbar-top > .nav-top > ul.navbar-right > li {
        margin-right: 5px;
    }

        .navbar-top > .nav-top > ul.navbar-right > li:last-child {
            margin-right: 0;
        }

    .navbar-top > .nav-top > .nav > li > a {
        height: 50px;
        padding-top: 15px;
        color: #fff;
    }

        .navbar-top > .nav-top > .nav > li > a:hover,
        .navbar-top > .nav-top > .nav > li > a:focus {
            color: #fff;
            background-color: #142434;
        }

    .navbar-top .dropdown-messages {
        left: 0;
        min-width: 280px;
        border-color: #8bd0c2;
    }

    .navbar-top .dropdown-alerts {
        left: -60px;
        min-width: 280px;
        border-color: #f9ce89;
    }

    .navbar-top .dropdown-tasks {
        left: -119px;
        min-width: 280px;
        border-color: #94c0dc;
    }

    .navbar-top .dropdown-user {
        left: -80px;
        margin: 0;
        min-width: 200px;
    }

    .navbar-top .dropdown-scroll {
        margin: 0;
        padding: 0;
    }

        .navbar-top .dropdown-scroll .dropdown-header {
            padding: 15px 10px;
        }

            .navbar-top .dropdown-scroll .dropdown-header:active,
            .navbar-top .dropdown-scroll .dropdown-header:focus,
            .navbar-top .dropdown-scroll .dropdown-header:hover {
                color: inherit;
                background: inherit;
            }

        .navbar-top .dropdown-scroll li {
            margin: 0;
            border-bottom: 1px solid #ccc;
            background: #fff;
        }

            .navbar-top .dropdown-scroll li:last-child {
                border-bottom: none;
            }

            .navbar-top .dropdown-scroll li a {
                display: block;
                padding: 10px;
            }

                .navbar-top .dropdown-scroll li a:hover {
                    text-decoration: none;
                    background-color: inherit;
                }

        .navbar-top .dropdown-scroll .dropdown-footer {
            display: block;
            border-top: 1px solid #ccc;
            border-bottom: none;
            text-align: center;
            font-size: 12px;
            line-height: 1.428571429;
        }

        .navbar-top .dropdown-scroll p {
            margin: 0;
        }

        .navbar-top .dropdown-scroll li a,
        .navbar-top .dropdown-scroll li a:hover,
        .navbar-top .dropdown-messages li a:hover,
        .navbar-top .dropdown-alerts li a:hover,
        .navbar-top .dropdown-tasks li a:hover {
            color: #333;
        }

    .navbar-top .messages-link,
    .navbar-top .messages-link:hover,
    .navbar-top .messages-link:focus,
    .navbar-top .dropdown-messages .dropdown-header,
    .navbar-top .dropdown-messages .dropdown-header:hover,
    .navbar-top .dropdown-messages .dropdown-footer,
    .navbar-top .dropdown-messages .dropdown-footer a,
    .navbar-top .dropdown-messages .dropdown-footer a:hover {
        color: #fff;
        background: #16a085 !important;
    }

    .navbar-top .alerts-link,
    .navbar-top .dropdown-alerts .dropdown-header,
    .navbar-top .dropdown-alerts .dropdown-header:hover,
    .navbar-top .dropdown-alerts .dropdown-footer,
    .navbar-top .dropdown-alerts .dropdown-footer a,
    .navbar-top .dropdown-alerts .dropdown-footer a:hover {
        color: #fff;
        background: #f39c12 !important;
    }

    .navbar-top .alert-icon {
        width: 25px;
        margin-right: 5px;
        text-align: center;
        color: #fff;
    }

    .navbar-top .tasks-link,
    .navbar-top .dropdown-tasks .dropdown-header,
    .navbar-top .dropdown-tasks .dropdown-header:hover,
    .navbar-top .dropdown-tasks .dropdown-footer,
    .navbar-top .dropdown-tasks .dropdown-footer a,
    .navbar-top .dropdown-tasks .dropdown-footer a:hover {
        color: #fff;
        background: #2980b9 !important;
    }

    .navbar-top .dropdown-tasks .progress {
        height: 10px;
        margin-bottom: 5px;
        border-radius: 0;
    }

    .navbar-top .number {
        position: absolute;
        bottom: 25px;
        left: 3px;
        width: 20px;
        height: 20px;
        padding-right: 1px;
        border-radius: 50%;
        text-align: center;
        font-size: 11px;
        line-height: 20px;
        background-color: #1582dc;
    }

@media(min-width:768px) {
    .navbar-top {
        z-index: 1030;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        max-height: 50px;
        border-radius: 0;
    }

        .navbar-top .navbar-header {
            width: 250px;
            background-color: transparent;
        }

        .navbar-top .navbar-left {
            display: inherit;
        }

        .navbar-top #sidebar-toggle {
            display: inline-block;
        }

        .navbar-top .nav-top {
            margin-right: 15px;
            text-align: inherit;
        }

        .navbar-top .dropdown-user {
            left: inherit;
            min-width: inherit;
        }

        .navbar-top .dropdown-messages,
        .navbar-top .dropdown-alerts,
        .navbar-top .dropdown-tasks {
            left: inherit;
            width: 340px;
        }

        .navbar-top .dropdown-scroll li a:hover {
            text-decoration: none;
        }

        .navbar-top .dropdown-messages li a:hover {
            background-color: #e8f6f3;
        }

        .navbar-top .dropdown-alerts li a:hover {
            background-color: #fef5e8;
        }

        .navbar-top .dropdown-tasks li a:hover {
            background-color: #eaf3f8;
        }

        .navbar-top .name {
            display: inherit;
            float: left;
            margin-right: 5px;
        }
}

/* Side Navigation

     d888888o.    8 8888 8 888888888o.      8 8888888888             b.             8          .8. `8.`888b           ,8'
   .`8888:' `88.  8 8888 8 8888    `^888.   8 8888                   888o.          8         .888. `8.`888b         ,8'
   8.`8888.   Y8  8 8888 8 8888        `88. 8 8888                   Y88888o.       8        :88888. `8.`888b       ,8'
   `8.`8888.      8 8888 8 8888         `88 8 8888                   .`Y888888o.    8       . `88888. `8.`888b     ,8'
    `8.`8888.     8 8888 8 8888          88 8 888888888888           8o. `Y888888o. 8      .8. `88888. `8.`888b   ,8'
     `8.`8888.    8 8888 8 8888          88 8 8888                   8`Y8o. `Y88888o8     .8`8. `88888. `8.`888b ,8'
      `8.`8888.   8 8888 8 8888         ,88 8 8888                   8   `Y8o. `Y8888    .8' `8. `88888. `8.`888b8'
  8b   `8.`8888.  8 8888 8 8888        ,88' 8 8888                   8      `Y8o. `Y8   .8'   `8. `88888. `8.`888'
  `8b.  ;8.`8888  8 8888 8 8888    ,o88P'   8 8888                   8         `Y8o.`  .888888888. `88888. `8.`8'
   `Y8888P ,88P'  8 8888 8 888888888P'      8 888888888888           8            `Yo .8'       `8. `88888. `8.`

*/

.navbar-side .navbar-collapse {
    max-height: none;
    border: none;
}

.navbar-side li.side-user {
    display: block;
    width: 100%;
    padding: 15px;
    border-top: none !important;
    border-bottom: 1px solid #142638;
    text-align: center;
}

.navbar-side .side-user img {
    /*display: block;
    margin-bottom: 15px;
    margin-left: 20px;*/
    max-width: 100%;
    height: auto;
}

.navbar-side .side-user .welcome {
    margin: 0;
    font-style: italic;
    color: #9aa4af;
}

.navbar-side .side-user a {
    display: block;
}

    .navbar-side .side-user a img {
        /*width: 70%;*/
        max-width: 100%;
        margin: 0 auto;
    }

.navbar-side .side-user .welcome .fa {
    padding-right: 0;
}

.navbar-side .side-user .name {
    margin: 0;
    font-family: "Ubuntu","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #ccd1d7;
}

    .navbar-side .side-user .name .last-name {
        font-weight: 400;
        color: #fff;
    }

.navbar-side .nav-search {
    padding: 15px;
    border-top: none;
}

    .navbar-side .nav-search:hover {
        background: none;
    }

    .navbar-side .nav-search input {
        padding-right: 30px;
        border-radius: 2px;
    }

    .navbar-side .nav-search button {
        position: absolute;
        top: 15px;
        right: 5px;
        background-color: transparent;
    }

    .navbar-side .nav-search .btn:focus,
    .navbar-side .nav-search .btn:active {
        outline: none;
        box-shadow: none;
    }

.navbar-side ul.side-nav {
    margin-top: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #54677a;
    font-size: 14px;
    background-color: #4f5061;
}

.navbar-side .navbar-nav > li > a,
.navbar-side .navbar-nav > li > a:focus,
.navbar-side .navbar-nav > li > a:hover,
.navbar-side .navbar-nav > li > a:active {
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
    outline: none;
    color: #fff;
    background-color: #4f5061;
}

.navbar-side .side-nav li,
.navbar-side .side-nav li.panel {
    /*border-top: 1px solid #54677a;
    border-bottom: 1px solid #142638;*/
}

    .navbar-side .side-nav li.panel ul li {
        border-top: none;
        border-bottom: none;
    }

        .navbar-side .side-nav li.panel ul li a,
        .navbar-side .side-nav li.panel ul li a:hover,
        .navbar-side .side-nav li.panel ul li a:focus,
        .navbar-side .side-nav li.panel ul li a:active,
        .navbar-side .side-nav li.panel ul li .active {
            color: #333;
            background-color: #ecf0f1;
        }

    .navbar-side .side-nav li.panel i.fa,
    .navbar-side .side-nav li i.fa {
        padding-right: 10px;
    }

    .navbar-side .side-nav li.panel > ul li a {
        padding-left: 18px;
    }

    .navbar-side .side-nav li.panel > ul li > ul li a {
        padding-left: 26px;
    }

/*icone de menu aberto e fechado*/
.navbar-side .side-nav .accordion-toggle > .fa-caret-down,
.navbar-side .side-nav .accordion-toggle > .fa-caret-up {
    float: right;
    margin-right: -8px;
}

.navbar-side .side-nav .accordion-toggle > .fa-caret-down {
    margin-top: 2px;
}

.navbar-side .side-nav .accordion-toggle > .fa-caret-up {
    margin-top: 1px;
}

.navbar-side .side-nav .accordion-toggle.collapsed > .fa-caret-down,
.navbar-side .side-nav .accordion-toggle > .fa-caret-up {
    display: block;
}

.navbar-side .side-nav .accordion-toggle > .fa-caret-down,
.navbar-side .side-nav .accordion-toggle.collapsed > .fa-caret-up {
    display: none;
}

/*.navbar-side .side-nav .accordion-toggle.collapsed > .fa-caret-down {
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
}*/

.navbar-side .side-nav > li > a.active {
    background-color: #1582dc;
}

.navbar-side .side-nav li.panel ul li a.active {
    background-color: #e0e7e8;
}

@media(min-width:768px) {
    .navbar-side.collapsed {
        display: none;
    }

    .navbar-side {
        z-index: 1020;
        position: absolute;
        top: 50px;
        width: 100%;
        border-radius: 0;
    }

        .navbar-side .side-nav {
            position: absolute;
            left: 0;
            border: none;
            border-radius: 0;
            overflow-y: auto;
        }

        .navbar-side ul.side-nav {
            background-color: transparent;
        }

        .navbar-side .side-nav > li > a {
            width: 250px;
        }

        .navbar-side li.nav-search {
            border-top: 1px solid #54677a;
            width: 100%;
        }

        .navbar-side .side-nav > li > a:hover {
            color: #fff;
            background-color: #3d566e;
        }

        .navbar-side .side-nav li.panel ul li a:hover,
        .navbar-side .side-nav li.panel ul li a:focus,
        .navbar-side .side-nav li.panel ul li a:active {
            background-color: #e0e7e8;
        }
}

/* Page Title Styles

  8 888888888o      .8.           ,o888888o.    8 8888888888             8888888 8888888888  8 8888 8888888 8888888888 8 8888         8 8888888888
  8 8888    `88.   .888.         8888     `88.  8 8888                         8 8888        8 8888       8 8888       8 8888         8 8888
  8 8888     `88  :88888.     ,8 8888       `8. 8 8888                         8 8888        8 8888       8 8888       8 8888         8 8888
  8 8888     ,88 . `88888.    88 8888           8 8888                         8 8888        8 8888       8 8888       8 8888         8 8888
  8 8888.   ,88'.8. `88888.   88 8888           8 888888888888                 8 8888        8 8888       8 8888       8 8888         8 888888888888
  8 888888888P'.8`8. `88888.  88 8888           8 8888                         8 8888        8 8888       8 8888       8 8888         8 8888
  8 8888      .8' `8. `88888. 88 8888   8888888 8 8888                         8 8888        8 8888       8 8888       8 8888         8 8888
  8 8888     .8'   `8. `88888.`8 8888       .8' 8 8888                         8 8888        8 8888       8 8888       8 8888         8 8888
  8 8888    .888888888. `88888.  8888     ,88'  8 8888                         8 8888        8 8888       8 8888       8 8888         8 8888
  8 8888   .8'       `8. `88888.  `8888888P'    8 888888888888                 8 8888        8 8888       8 8888       8 888888888888 8 888888888888

*/

.page-title {
    margin: 5px 0 5px 0;
}

    .page-title h1 {
        margin: 0;
        margin-bottom: 15px;
        font-size: 26px;
    }

    .page-title small {
        font-size: 18px;
    }

    .page-title .breadcrumb {
        margin-bottom: 0;
        background-color: #e0e7e8;
    }

    .page-title .date-picker {
        margin-top: -8px;
        margin-right: -15px;
    }

    .page-title .date-range {
        display: none;
    }

    .page-title .btn {
        height: 36px;
        padding-top: 8px;
        border: none;
    }

@media(min-width:768px) {
    .page-title .date-range {
        display: inherit;
    }
}

/* Flex Portlet Styles

  8 888888888o       ,o888888o.     8 888888888o. 8888888 8888888888 8 8888         8 8888888888 8888888 8888888888 d888888o.
  8 8888    `88.  . 8888     `88.   8 8888    `88.      8 8888       8 8888         8 8888             8 8888     .`8888:' `88.
  8 8888     `88 ,8 8888       `8b  8 8888     `88      8 8888       8 8888         8 8888             8 8888     8.`8888.   Y8
  8 8888     ,88 88 8888        `8b 8 8888     ,88      8 8888       8 8888         8 8888             8 8888     `8.`8888.
  8 8888.   ,88' 88 8888         88 8 8888.   ,88'      8 8888       8 8888         8 888888888888     8 8888      `8.`8888.
  8 888888888P'  88 8888         88 8 888888888P'       8 8888       8 8888         8 8888             8 8888       `8.`8888.
  8 8888         88 8888        ,8P 8 8888`8b           8 8888       8 8888         8 8888             8 8888        `8.`8888.
  8 8888         `8 8888       ,8P  8 8888 `8b.         8 8888       8 8888         8 8888             8 8888    8b   `8.`8888.
  8 8888          ` 8888     ,88'   8 8888   `8b.       8 8888       8 8888         8 8888             8 8888    `8b.  ;8.`8888
  8 8888             `8888888P'     8 8888     `88.     8 8888       8 888888888888 8 888888888888     8 8888     `Y8888P ,88P'

*/

.portlet {
    /*margin-top: 15px;
    margin-bottom: 15px;*/
}

.portlet {
    /*border: 1px solid;*/
}

    .portlet .portlet-heading {
        padding: 0 15px;
        border-top-left-radius: 2px;
        border-top-right-radius: 2px;
    }

        .portlet .portlet-heading h4 {
            padding: 1px 0;
            font-size: 16px;
        }

        .portlet .portlet-heading a {
            color: #fff;
        }

            .portlet .portlet-heading a:hover,
            .portlet .portlet-heading a:active,
            .portlet .portlet-heading a:focus {
                outline: none;
            }

    .portlet .portlet-widgets .dropdown-menu a {
        color: #333;
    }

    .portlet .portlet-widgets ul.dropdown-menu {
        min-width: 0;
    }

    .portlet .portlet-heading .portlet-title {
        float: left;
    }

        .portlet .portlet-heading .portlet-title h4 {
            margin: 10px 0;
        }

    .portlet .portlet-heading .portlet-widgets {
        float: right;
        margin: 8px 0;
    }

        .portlet .portlet-heading .portlet-widgets .tabbed-portlets {
            display: inline;
        }

        .portlet .portlet-heading .portlet-widgets .divider {
            margin: 0 5px;
        }

    .portlet .portlet-body {
        padding: 15px;
        background: #fff;
        border-bottom-left-radius: 2px;
        border-bottom-right-radius: 2px;
    }

    .portlet .portlet-body-border {
        padding: 15px;
        background: #fff;
        border: 1px solid #ccc;
        border-bottom-left-radius: 2px;
        border-bottom-right-radius: 2px;
    }

    .portlet .portlet-footer {
        padding: 10px 15px;
        background: #e0e7e8;
    }

        .portlet .portlet-footer ul {
            margin: 0;
        }

.portlet-green,
.portlet-green > .portlet-heading {
    border-color: #1582dc;
}

    .portlet-green > .portlet-heading {
        color: #fff;
        background-color: #1582dc;
    }

.portlet-orange,
.portlet-orange > .portlet-heading {
    border-color: #f39c12;
}

    .portlet-orange > .portlet-heading {
        color: #fff;
        background-color: #f39c12;
    }

.portlet-blue,
.portlet-blue > .portlet-heading {
    border-color: #2980b9;
}

    .portlet-blue > .portlet-heading {
        color: #fff;
        background-color: #2980b9;
    }

.portlet-red,
.portlet-red > .portlet-heading {
    border-color: #e74c3c;
}

    .portlet-red > .portlet-heading {
        color: #fff;
        background-color: #e74c3c;
    }

.portlet-purple,
.portlet-purple > .portlet-heading {
    border-color: #8e44ad;
}

    .portlet-purple > .portlet-heading {
        color: #fff;
        background-color: #8e44ad;
    }

.portlet-default,
.portlet-dark-blue,
.portlet-default > .portlet-heading,
.portlet-dark-blue > .portlet-heading {
    border-color: #4f5061;
}

    .portlet-default > .portlet-heading,
    .portlet-dark-blue > .portlet-heading {
        color: #fff;
        /*background-color: #4f5061;*/
        background-color: #337ab7;
    }

.portlet-basic,
.portlet-basic > .portlet-heading {
    border-color: #333;
}

    .portlet-basic > .portlet-heading {
        border-bottom: 1px solid #333;
        color: #333;
        background-color: #fff;
    }

@media(min-width:768px) {
    .portlet {
        /*margin-top: 30px;
        margin-bottom: 30px;*/
        /*margin-top: 20px;
        margin-bottom: 20px;*/
    }
}

/* Custom Table Styles

  8888888 8888888888   .8.          8 888888888o   8 8888         8 8888888888     d888888o.
        8 8888        .888.         8 8888    `88. 8 8888         8 8888         .`8888:' `88.
        8 8888       :88888.        8 8888     `88 8 8888         8 8888         8.`8888.   Y8
        8 8888      . `88888.       8 8888     ,88 8 8888         8 8888         `8.`8888.
        8 8888     .8. `88888.      8 8888.   ,88' 8 8888         8 888888888888  `8.`8888.
        8 8888    .8`8. `88888.     8 8888888888   8 8888         8 8888           `8.`8888.
        8 8888   .8' `8. `88888.    8 8888    `88. 8 8888         8 8888            `8.`8888.
        8 8888  .8'   `8. `88888.   8 8888      88 8 8888         8 8888        8b   `8.`8888.
        8 8888 .888888888. `88888.  8 8888    ,88' 8 8888         8 8888        `8b.  ;8.`8888
        8 8888.8'       `8. `88888. 8 888888888P   8 888888888888 8 888888888888 `Y8888P ,88P'

*/

table.table-green thead {
    color: #fff;
    background-color: #1582dc;
}

table.table-lightblue thead {
    /*color: #fff;
    background-color: #4f5061;*/
    /*background-color: #ddd;*/
    color: #333;
    background-color: #ddd;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

/* Custom Modal Styles

           ,8.       ,8.           ,o888888o.     8 888888888o.            .8.          8 8888           d888888o.
          ,888.     ,888.       . 8888     `88.   8 8888    `^888.        .888.         8 8888         .`8888:' `88.
         .`8888.   .`8888.     ,8 8888       `8b  8 8888        `88.     :88888.        8 8888         8.`8888.   Y8
        ,8.`8888. ,8.`8888.    88 8888        `8b 8 8888         `88    . `88888.       8 8888         `8.`8888.
       ,8'8.`8888,8^8.`8888.   88 8888         88 8 8888          88   .8. `88888.      8 8888          `8.`8888.
      ,8' `8.`8888' `8.`8888.  88 8888         88 8 8888          88  .8`8. `88888.     8 8888           `8.`8888.
     ,8'   `8.`88'   `8.`8888. 88 8888        ,8P 8 8888         ,88 .8' `8. `88888.    8 8888            `8.`8888.
    ,8'     `8.`'     `8.`8888.`8 8888       ,8P  8 8888        ,88'.8'   `8. `88888.   8 8888        8b   `8.`8888.
   ,8'       `8        `8.`8888.` 8888     ,88'   8 8888    ,o88P' .888888888. `88888.  8 8888        `8b.  ;8.`8888
  ,8'         `         `8.`8888.  `8888888P'     8 888888888P'   .8'       `8. `88888. 8 888888888888 `Y8888P ,88P'

*/

.modal-flex .modal-header {
    color: #fff;
    background-color: #2f4254;
}

    .modal-flex .modal-header .close,
    .modal-flex .modal-header .close:hover,
    .modal-flex .modal-header .close:focus {
        color: #fff;
    }

.modal-flex .modal-footer {
    background-color: #e0e7e8;
}

/* -- Custom Logout Popup Styles */

#logout {
    margin-top: 150px;
}

.logout-message {
    padding: 0 25px 25px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    background-color: rgba(26,36,47,0.9);
}

    .logout-message h3 {
        margin: 15px 0;
    }

    .logout-message p {
        margin: 0 0 25px;
    }

.img-logout {
    margin-top: -75px;
}

/* Example Page Styles

  8 888888888o      .8.           ,o888888o.    8 8888888888     d888888o.
  8 8888    `88.   .888.         8888     `88.  8 8888         .`8888:' `88.
  8 8888     `88  :88888.     ,8 8888       `8. 8 8888         8.`8888.   Y8
  8 8888     ,88 . `88888.    88 8888           8 8888         `8.`8888.
  8 8888.   ,88'.8. `88888.   88 8888           8 888888888888  `8.`8888.
  8 888888888P'.8`8. `88888.  88 8888           8 8888           `8.`8888.
  8 8888      .8' `8. `88888. 88 8888   8888888 8 8888            `8.`8888.
  8 8888     .8'   `8. `88888.`8 8888       .8' 8 8888        8b   `8.`8888.
  8 8888    .888888888. `88888.  8888     ,88'  8 8888        `8b.  ;8.`8888
  8 8888   .8'       `8. `88888.  `8888888P'    8 888888888888 `Y8888P ,88P'

*/

/* -- User Profile Page Styles */

.img-profile {
    margin-bottom: 10px;
    border: 1px solid #4f5061;
}

.profile-edit {
    position: absolute;
    padding: 5px 10px;
    color: #fff;
    background: rgb(52,73,94);
}

    .profile-edit:hover {
        position: absolute;
        padding: 5px 10px;
        color: #fff;
        background: rgba(52,73,94,0.8);
    }

a.facebook-link:hover {
    color: #3b5998;
}

a.twitter-link:hover {
    color: #00aced;
}

a.linkedin-link:hover {
    color: #007bb6;
}

a.google-plus-link:hover {
    color: #dd4b39;
}

/* -- Mailbox Page Styles */

.mailbox-topnav {
    margin-bottom: 0;
}

.mailbox-sidenav {
    display: none;
}

.mailbox-messages {
    overflow: auto;
}

.mailbox-topnav > .navbar-header {
    width: 200px;
}

#mailbox-wrapper {
    margin-left: 0;
    overflow: hidden;
}

.mailbox-nav > ul > li > .navbar-btn {
    margin-right: 10px;
}

.mailbox-nav > ul > li.checkall {
    display: none;
}

.mailbox-nav > ul > li.message-actions {
    margin-left: 15px;
}

.mailbox-nav > ul > li.message-label {
    display: none;
}

.mailbox-menu-title {
    margin-bottom: 10px;
    padding-left: 15px;
    text-transform: uppercase;
    font-size: 12px;
}

.checkbox-col {
    width: 35px;
    text-align: center;
}

.date-col {
    min-width: 100px;
    overflow: hidden;
    text-align: right;
}

.from-col {
    min-width: 170px;
    overflow: hidden;
}

.msg-col {
    min-width: 800px;
}

.unread-message {
    font-weight: bold;
}

.clickableRow:hover {
    cursor: pointer;
}

@media(min-width:865px) {
    .mailbox-topnav {
        margin-bottom: 10px;
    }

    .mailbox-sidenav {
        display: inherit;
        position: absolute;
        width: 200px;
    }

    #mailbox {
        width: 100%;
    }

    #mailbox-wrapper {
        margin-left: 200px;
        padding-left: 15px;
        min-height: 600px;
    }

    .mailbox-nav {
        display: inherit;
        padding-left: 10px;
    }

        .mailbox-nav > ul > li.message-actions {
            display: inherit;
            margin-left: inherit;
        }

        .mailbox-nav > ul > li.message-label {
            display: inherit;
        }

        .mailbox-nav > ul > li.checkall {
            display: inherit;
            margin-left: 11px;
            padding: 15px;
        }
}

/* -- Chat Widget Styles */

.chat-widget {
    max-height: 300px;
    overflow: auto;
}

/* -- Login Page Styles */

.login {
    background-color: #4f5061;
}

.login-banner {
    margin: 50px 0;
    color: #fff;
}

.portlet .login-heading {
    padding: 15px;
}

/* -- Invoice Page Styles */

.invoice-terms {
    text-align: left;
}

/* -- Search Results Page Styles */

.search-item {
    margin-bottom: 25px;
}

.sr-name {
    font-size: 1.25em;
}

    .sr-name a {
        text-decoration: underline;
    }

        .sr-name a:visited {
            color: #8e44ad;
        }

@media(min-width:992px) {
    .invoice-terms {
        text-align: right;
    }
}

/* -- Pricing Table Styles */

.pricing-basic .plan {
    margin: 0 0 15px;
    padding: 0 0 20px;
    border: 1px solid #4f5061;
    text-align: center;
    list-style: none;
    background: #fff;
}

    .pricing-basic .plan li {
        padding: 10px 15px;
        border-top: 1px solid #f5f5f5;
        color: #ccc;
        -webkit-transition: 300ms;
        transition: 300ms;
    }

        .pricing-basic .plan li.plan-price {
            border-top: 0;
        }

        .pricing-basic .plan li.plan-name {
            margin-bottom: 30px;
            padding: 15px;
            border-top: 0;
            font-size: 24px;
            line-height: 24px;
            color: #fff;
            background: #4f5061;
        }

        .pricing-basic .plan li > strong {
            color: #1582dc;
        }

        .pricing-basic .plan li.plan-action {
            margin-top: 10px;
            border-top: 0;
        }

    .pricing-basic .plan:hover li.plan-name {
        background: #333;
    }

.pricing-circle .plan {
    margin: 0 0 20px;
    padding: 30px 0;
    border-radius: 2px;
    text-align: center;
    list-style: none;
    background: #1582dc;
}

    .pricing-circle .plan li {
        padding: 5px 0;
        color: #fff;
        -webkit-transition: 300ms;
        -moz-transition: 300ms;
        -o-transition: 300ms;
        transition: 300ms;
    }

        .pricing-circle .plan li.plan-name {
            font-size: 24px;
            line-height: 24px;
            color: #fff;
        }

            .pricing-circle .plan li.plan-name h3 {
                margin: 0;
            }

        .pricing-circle .plan li.plan-price {
            margin-bottom: 10px;
        }

            .pricing-circle .plan li.plan-price > div {
                display: inline-block;
                width: 70px;
                height: 70px;
                padding: 10px;
                border-radius: 100%;
                font-size: 24px;
                background-color: rgba(0,0,0,0.2);
            }

                .pricing-circle .plan li.plan-price > div sup {
                    font-size: 10px;
                    line-height: 10px;
                }

                .pricing-circle .plan li.plan-price > div > small {
                    display: block;
                    font-size: 11px;
                }

        .pricing-circle .plan li.plan-action {
            margin-top: 10px;
            border-top: 0;
        }

    .pricing-circle .plan.featured {
        background-color: #4f5061;
    }

/* -- 404 Page Styles */

.error-title {
    font-size: 9em;
}

.error-msg {
    font-size: 2em;
}

@media(min-width:768px) {
    .task-time {
        display: inherit;
        font-size: 12px;
        font-style: italic;
        line-height: 20px;
    }
}

/* Button Styles

  8 888888888o   8 8888      88 8888888 8888888888 8888888 8888888888 ,o888888o.     b.             8    d888888o.
  8 8888    `88. 8 8888      88       8 8888             8 8888    . 8888     `88.   888o.          8  .`8888:' `88.
  8 8888     `88 8 8888      88       8 8888             8 8888   ,8 8888       `8b  Y88888o.       8  8.`8888.   Y8
  8 8888     ,88 8 8888      88       8 8888             8 8888   88 8888        `8b .`Y888888o.    8  `8.`8888.
  8 8888.   ,88' 8 8888      88       8 8888             8 8888   88 8888         88 8o. `Y888888o. 8   `8.`8888.
  8 8888888888   8 8888      88       8 8888             8 8888   88 8888         88 8`Y8o. `Y88888o8    `8.`8888.
  8 8888    `88. 8 8888      88       8 8888             8 8888   88 8888        ,8P 8   `Y8o. `Y8888     `8.`8888.
  8 8888      88 ` 8888     ,8P       8 8888             8 8888   `8 8888       ,8P  8      `Y8o. `Y8 8b   `8.`8888.
  8 8888    ,88'   8888   ,d8P        8 8888             8 8888    ` 8888     ,88'   8         `Y8o.` `8b.  ;8.`8888
  8 888888888P      `Y88888P'         8 8888             8 8888       `8888888P'     8            `Yo  `Y8888P ,88P'

*/

.btn-green {
    border-color: #15987e;
    color: #fff;
    background-color: #149077;
}

    .btn-green:hover,
    .btn-green:focus,
    .btn-green:active,
    .btn-green.active,
    .open .dropdown-toggle.btn-green {
        border-color: #138871;
        color: #fff;
        background-color: #149077;
    }

    .btn-green.disabled,
    .btn-green[disabled],
    fieldset[disabled] .btn-green,
    .btn-green.disabled:hover,
    .btn-green[disabled]:hover,
    fieldset[disabled] .btn-green:hover,
    .btn-green.disabled:focus,
    .btn-green[disabled]:focus,
    fieldset[disabled] .btn-green:focus,
    .btn-green.disabled:active,
    .btn-green[disabled]:active,
    fieldset[disabled] .btn-green:active,
    .btn-green.disabled.active,
    .btn-green[disabled].active,
    fieldset[disabled] .btn-green.active {
        border-color: #2eaa91;
        background-color: #39ae97;
    }

.btn-orange {
    border-color: #e79411;
    color: #fff;
    background-color: #f39c12;
}

    .btn-orange:hover,
    .btn-orange:focus,
    .btn-orange:active,
    .btn-orange.active,
    .open .dropdown-toggle.btn-orange {
        border-color: #cf850f;
        color: #fff;
        background-color: #da8c10;
    }

    .btn-orange.disabled,
    .btn-orange[disabled],
    fieldset[disabled] .btn-orange,
    .btn-orange.disabled:hover,
    .btn-orange[disabled]:hover,
    fieldset[disabled] .btn-orange:hover,
    .btn-orange.disabled:focus,
    .btn-orange[disabled]:focus,
    fieldset[disabled] .btn-orange:focus,
    .btn-orange.disabled:active,
    .btn-orange[disabled]:active,
    fieldset[disabled] .btn-orange:active,
    .btn-orange.disabled.active,
    .btn-orange[disabled].active,
    fieldset[disabled] .btn-orange.active {
        border-color: #f4a62a;
        background-color: #f5ab35;
    }

.btn-blue {
    border-color: #2779b0;
    color: #fff;
    background-color: #2980b9;
}

    .btn-blue:hover,
    .btn-blue:focus,
    .btn-blue:active,
    .btn-blue.active,
    .open .dropdown-toggle.btn-blue {
        /*border-color: #236d9d;
        color: #fff;
        background-color: #2573a6;*/
        border-color: #3f8dc0;
        color: #fff;
        /*background-color: #1582dc;*/
    }

    .btn-blue.disabled,
    .btn-blue[disabled],
    fieldset[disabled] .btn-blue,
    .btn-blue.disabled:hover,
    .btn-blue[disabled]:hover,
    fieldset[disabled] .btn-blue:hover,
    .btn-blue.disabled:focus,
    .btn-blue[disabled]:focus,
    fieldset[disabled] .btn-blue:focus,
    .btn-blue.disabled:active,
    .btn-blue[disabled]:active,
    fieldset[disabled] .btn-blue:active,
    .btn-blue.disabled.active,
    .btn-blue[disabled].active,
    fieldset[disabled] .btn-blue.active {
        border-color: #3f8dc0;
        background-color: #1582dc;
    }

.btn-red {
    border-color: #db4839;
    color: #fff;
    background-color: #e74c3c;
}

    .btn-red:hover,
    .btn-red:focus,
    .btn-red:active,
    .btn-red.active,
    .open .dropdown-toggle.btn-red {
        border-color: #c54133;
        color: #fff;
        background-color: #cf4436;
    }

    .btn-red.disabled,
    .btn-red[disabled],
    fieldset[disabled] .btn-red,
    .btn-red.disabled:hover,
    .btn-red[disabled]:hover,
    fieldset[disabled] .btn-red:hover,
    .btn-red.disabled:focus,
    .btn-red[disabled]:focus,
    fieldset[disabled] .btn-red:focus,
    .btn-red.disabled:active,
    .btn-red[disabled]:active,
    fieldset[disabled] .btn-red:active,
    .btn-red.disabled.active,
    .btn-red[disabled].active,
    fieldset[disabled] .btn-red.active {
        border-color: #e95e50;
        background-color: #eb6759;
    }

.btn-purple {
    border-color: #8741a4;
    color: #fff;
    background-color: #8e44ad;
}

    .btn-purple:hover,
    .btn-purple:focus,
    .btn-purple:active,
    .btn-purple.active,
    .open .dropdown-toggle.btn-purple {
        border-color: #793a93;
        color: #fff;
        background-color: #803d9b;
    }

    .btn-purple.disabled,
    .btn-purple[disabled],
    fieldset[disabled] .btn-purple,
    .btn-purple.disabled:hover,
    .btn-purple[disabled]:hover,
    fieldset[disabled] .btn-purple:hover,
    .btn-purple.disabled:focus,
    .btn-purple[disabled]:focus,
    fieldset[disabled] .btn-purple:focus,
    .btn-purple.disabled:active,
    .btn-purple[disabled]:active,
    fieldset[disabled] .btn-purple:active,
    .btn-purple.disabled.active,
    .btn-purple[disabled].active,
    fieldset[disabled] .btn-purple.active {
        border-color: #9a57b5;
        background-color: #9f60b9;
    }


.btn-brown {
    border-color: #927827;
    color: #fff;
    background-color: #9b7d1e;
}

    .btn-brown:hover,
    .btn-brown:focus,
    .btn-brown:active,
    .btn-brown.active,
    .open .dropdown-toggle.btn-brown {
        border-color: #927827;
        color: #fff;
        background-color: #9b7d1e;
    }

    .btn-brown.disabled,
    .btn-brown[disabled],
    fieldset[disabled] .btn-brown,
    .btn-brown.disabled:hover,
    .btn-brown[disabled]:hover,
    fieldset[disabled] .btn-brown:hover,
    .btn-brown.disabled:focus,
    .btn-brown[disabled]:focus,
    fieldset[disabled] .btn-brown:focus,
    .btn-brown.disabled:active,
    .btn-brown[disabled]:active,
    fieldset[disabled] .btn-brown:active,
    .btn-brown.disabled.active,
    .btn-brown[disabled].active,
    fieldset[disabled] .btn-brown.active {
        border-color: #927827;
        background-color: #9b7d1e;
    }

/* Bootstrap Overrides

      ,o888888o.  `8.`888b           ,8' 8 8888888888   8 888888888o.   8 888888888o.    8 8888 8 888888888o.      8 8888888888     d888888o.
   . 8888     `88. `8.`888b         ,8'  8 8888         8 8888    `88.  8 8888    `88.   8 8888 8 8888    `^888.   8 8888         .`8888:' `88.
  ,8 8888       `8b `8.`888b       ,8'   8 8888         8 8888     `88  8 8888     `88   8 8888 8 8888        `88. 8 8888         8.`8888.   Y8
  88 8888        `8b `8.`888b     ,8'    8 8888         8 8888     ,88  8 8888     ,88   8 8888 8 8888         `88 8 8888         `8.`8888.
  88 8888         88  `8.`888b   ,8'     8 888888888888 8 8888.   ,88'  8 8888.   ,88'   8 8888 8 8888          88 8 888888888888  `8.`8888.
  88 8888         88   `8.`888b ,8'      8 8888         8 888888888P'   8 888888888P'    8 8888 8 8888          88 8 8888           `8.`8888.
  88 8888        ,8P    `8.`888b8'       8 8888         8 8888`8b       8 8888`8b        8 8888 8 8888         ,88 8 8888            `8.`8888.
  `8 8888       ,8P      `8.`888'        8 8888         8 8888 `8b.     8 8888 `8b.      8 8888 8 8888        ,88' 8 8888        8b   `8.`8888.
   ` 8888     ,88'        `8.`8'         8 8888         8 8888   `8b.   8 8888   `8b.    8 8888 8 8888    ,o88P'   8 8888        `8b.  ;8.`8888
      `8888888P'           `8.`          8 888888888888 8 8888     `88. 8 8888     `88.  8 8888 8 888888888P'      8 888888888888 `Y8888P ,88P'

*/

/*.form-control:focus {
    border-color: #4f5061;
    box-shadow: 0 1px 1px rgba(0,0,0,0.075) inset;
}*/

ol.breadcrumb li.pull-right:before {
    content: normal;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.modal,
.accordion-toggle:focus,
.btn:focus {
    outline: none;
}

.navbar-side .side-nav > .panel {
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
}

.panel {
    box-shadow: none;
}

.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn,
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn,
.list-group-item:first-child,
.list-group-item:last-child,
.modal-flex,
.btn-square,
.squared,
.form-control,
.input-group-addon,
.input-group-btn .btn,
.dropdown-menu,
.panel-group .panel,
.panel-group .panel-heading,
.breadcrumb > li > a {
    border-radius: 2px;
    /*border-bottom-left-radius: 0;*/
}

.nav-tabs > li > a {
    border-radius: 2px 2px 0 0;
    /*border-bottom-left-radius: 0;*/
}

/*.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    background-color: #4f5061;
}*/

a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus,
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus,
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    border-color: #4f5061;
    background-color: #4f5061;
}

.nav-tabs,
.nav-pills {
    margin-bottom: 10px;
}

    a.list-group-item:hover,
    a.list-group-item:focus,
    .nav-tabs > li > a:hover,
    .nav-tabs > li > a:focus,
    .nav-pills > li > a:hover,
    .nav-pills > li > a:focus,
    .nav-tabs .open > a,
    .nav-tabs .open > a:hover,
    .nav-tabs .open > a:focus,
    .nav-pills .open > a,
    .nav-pills .open > a:hover,
    .nav-pills .open > a:focus,
    .nav-tabs ul.dropdown-menu > li > a:hover,
    .nav-tabs ul.dropdown-menu > li > a:focus,
    .nav-pills ul.dropdown-menu > li > a:hover,
    .nav-pills ul.dropdown-menu > li > a:focus {
        background-color: #ecf0f1;
    }

        .nav-tabs .open > a,
        .nav-tabs .open > a:hover,
        .nav-tabs .open > a:focus {
            border-color: #35495e;
        }

/* -- Custom Radio Button and Checkbox Styles */

.radio,
.checkbox {
    min-height: 18px;
}

    input[type="radio"],
    .radio input[type="radio"],
    .radio-inline input[type="radio"],
    input[type="checkbox"],
    .checkbox input[type="checkbox"],
    .checkbox-inline input[type="checkbox"] {
        position: relative;
        -webkit-appearance: none;
        appearance: none;
        width: 13px;
        height: 13px;
        border: 1px solid #dcdcdc;
        border-width: 0\0;
        border-radius: 1px;
        background: white;
        vertical-align: -2px;
        margin: 0 4px;
    }

        input[type="radio"]:focus,
        .radio input[type="radio"]:focus,
        .radio-inline input[type="radio"]:focus,
        input[type="checkbox"]:focus,
        .checkbox input[type="checkbox"]:focus,
        .checkbox-inline input[type="checkbox"]:focus {
            border-color: #35495e;
            outline: none;
        }

        input[type="radio"]:active,
        .radio input[type="radio"]:active,
        .radio-inline input[type="radio"]:active,
        input[type="checkbox"]:active,
        .checkbox input[type="checkbox"]:active,
        .checkbox-inline input[type="checkbox"]:active {
            border-color: #c6c6c6;
            background-color: #ebebeb;
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffffffff', GradientType=0);
        }

        input[type="radio"]:checked,
        .radio input[type="radio"]:checked,
        .radio-inline input[type="radio"]:checked,
        input[type="checkbox"]:checked,
        .checkbox input[type="checkbox"]:checked,
        .checkbox-inline input[type="checkbox"]:checked {
            background: #fff;
        }

    input[type="radio"],
    .radio input[type="radio"],
    .radio-inline input[type="radio"] {
        width: 15px;
        height: 15px;
        border-radius: 1em;
    }

        input[type="radio"]:checked::after,
        .radio input[type="radio"]:checked::after,
        .radio-inline input[type="radio"]:checked::after {
            content: '';
            display: block;
            position: relative;
            top: 3px;
            left: 3px;
            width: 7px;
            height: 7px;
            border-radius: 1em;
            background: #666;
        }

    input[type="checkbox"]:hover,
    .checkbox input[type="checkbox"]:hover,
    .checkbox-inline input[type="checkbox"]:hover {
        border-color: #c6c6c6;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
        box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
        box-shadow: none \9;
    }

    input[type="checkbox"]:checked::after,
    .checkbox input[type="checkbox"]:checked::after,
    .checkbox-inline input[type="checkbox"]:checked::after {
        content: url(../images/checkmark.png);
        display: block;
        position: absolute;
        top: -6px;
        left: -5px;
    }

.form-horizontal .control-label,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    padding-top: 5px;
}

@media(min-width:768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .form-control {
        display: inline-block;
    }

    .form-inline select.form-control {
        width: auto;
    }

    .form-inline .radio,
    .form-inline .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 0;
    }

        .form-inline .radio input[type="radio"],
        .form-inline .checkbox input[type="checkbox"] {
            float: none;
            margin-bottom: -2px;
            margin-left: 0;
        }
}

.form-horizontal .control-label,
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    padding-top: 6px;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
    min-height: 24px;
}

.form-horizontal .form-control-static {
    padding-top: 6px;
}

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
    margin-bottom: -3px;
}

@media(min-width:768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .form-control {
        display: inline-block;
    }

    .navbar-form select.form-control {
        width: auto;
    }

    .navbar-form .radio,
    .navbar-form .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 0;
    }

        .navbar-form .radio input[type="radio"],
        .navbar-form .checkbox input[type="checkbox"] {
            float: none;
            margin-bottom: -2px;
            margin-left: 0;
        }
}

#div_loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: grey;
    opacity: .8;
}

.ajax-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -32px; /* -1 * image width / 2 */
    margin-top: -32px; /* -1 * image height / 2 */
    display: block;
}

.thumbnail {
    line-height: 20px;
    margin-bottom: 5px;
    overflow: hidden;
    word-break: normal;
}

    .thumbnail img {
        max-width: 200px;
        max-height: 150px;
    }

.gallery-box {
    width: 200px;
    padding: 5px;
    margin: 7px;
    float: left;
    min-height: 200px;
    border: 1px solid #ddd;
    overflow: hidden;
}

    .gallery-box .progress {
        margin-bottom: 0;
    }

    .gallery-box .thumbnail {
        /*height: 188px;*/
        height: 123px;
        width: 188px;
    }

    .gallery-box .title {
        height: 22px;
        overflow: hidden;
        display: block;
    }

td.dataTables_empty {
    text-align: center;
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

/* Ion.RangeSlider, Flat UI Skin
// css version 1.9.2
// Â© 2013-2014 Denis Ineshin | IonDen.com
// ===================================================================================================================*/

/* =====================================================================================================================
// Skin details */

.irs-line-mid,
.irs-line-left,
.irs-line-right,
.irs-diapason,
.irs-slider {
    background: url(../images/sprite-skin-flat.png) repeat-x;
}

.irs {
    height: 40px;
}

.irs-with-grid {
    height: 60px;
}

.irs-line {
    height: 12px;
    top: 25px;
}

.irs-line-left {
    height: 12px;
    background-position: 0 -30px;
}

.irs-line-mid {
    height: 12px;
    background-position: 0 0;
}

.irs-line-right {
    height: 12px;
    background-position: 100% -30px;
}

.irs-diapason {
    height: 12px;
    top: 25px;
    background-position: 0 -60px;
}

.irs-slider {
    width: 16px;
    height: 18px;
    top: 22px;
    background-position: 0 -90px;
}

    #irs-active-slider, .irs-slider:hover {
        background-position: 0 -120px;
    }

.irs-min, .irs-max {
    color: #999;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    top: 0;
    padding: 1px 3px;
    background: #e1e4e9;
    border-radius: 4px;
}

.irs-from, .irs-to, .irs-single {
    color: #fff;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background: #1582dc;
    border-radius: 4px;
}

    .irs-from:after, .irs-to:after, .irs-single:after {
        position: absolute;
        display: block;
        content: "";
        bottom: -6px;
        left: 50%;
        width: 0;
        height: 0;
        margin-left: -3px;
        overflow: hidden;
        border: 3px solid transparent;
        border-top-color: #ed5565;
    }


.irs-grid-pol {
    background: #e1e4e9;
}

.irs-grid-text {
    color: #999;
}

.irs-disabled {
}

.input-xs {
    height: 22px;
    padding: 5px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px;
    border: 1px solid #ddd;
}

input-group-xs > .form-control,
.input-group-xs > .input-group-addon,
.input-group-xs > .input-group-btn > .btn {
    height: 22px;
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
}


.portlet-heading a[data-toggle]:after {
    font-family: 'FontAwesome';
    content: "\f078";
}

.portlet-heading .fa.fa-chevron-right, .portlet-heading .fa.fa-chevron-down {
    color: transparent;
}

.portlet-heading a:hover {
    cursor: pointer;
}

.portlet-heading a[bs-collapse-toggle]:after {
    font-family: 'FontAwesome';
    content: "\f078";
}

.portlet-heading a[bs-collapse-toggle].collapsed:after {
    font-family: 'FontAwesome';
    content: "\f054";
}

.minHeight150 {
    min-height: 150px !important;
}

.text-left-not-xs, .text-left-not-sm, .text-left-not-md, .text-left-not-lg {
    text-align: left;
}

.text-center-not-xs, .text-center-not-sm, .text-center-not-md, .text-center-not-lg {
    text-align: center;
}

.text-right-not-xs, .text-right-not-sm, .text-right-not-md, .text-right-not-lg {
    text-align: right;
}

.text-justify-not-xs, .text-justify-not-sm, .text-justify-not-md, .text-justify-not-lg {
    text-align: justify;
}

@media (max-width: 767px) {
    .text-left-not-xs, .text-center-not-xs, .text-right-not-xs, .text-justify-not-xs {
        text-align: inherit;
    }

    .text-left-xs {
        text-align: left;
    }

    .text-center-xs {
        text-align: center;
    }

    .text-right-xs {
        text-align: right;
    }

    .text-justify-xs {
        text-align: justify;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .text-left-not-sm, .text-center-not-sm, .text-right-not-sm, .text-justify-not-sm {
        text-align: inherit;
    }

    .text-left-sm {
        text-align: left;
    }

    .text-center-sm {
        text-align: center;
    }

    .text-right-sm {
        text-align: right;
    }

    .text-justify-sm {
        text-align: justify;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .text-left-not-md, .text-center-not-md, .text-right-not-md, .text-justify-not-md {
        text-align: inherit;
    }

    .text-left-md {
        text-align: left;
    }

    .text-center-md {
        text-align: center;
    }

    .text-right-md {
        text-align: right;
    }

    .text-justify-md {
        text-align: justify;
    }
}

@media (min-width: 1200px) {
    .text-left-not-lg, .text-center-not-lg, .text-right-not-lg, .text-justify-not-lg {
        text-align: inherit;
    }

    .text-left-lg {
        text-align: left;
    }

    .text-center-lg {
        text-align: center;
    }

    .text-right-lg {
        text-align: right;
    }

    .text-justify-lg {
        text-align: justify;
    }
}

.label-as-badge {
    border-radius: 1em;
}

.pointer {
    cursor: pointer;
}

.no-pointer {
    cursor: default;
}

.grab-cursor {
    cursor: -webkit-grab !important;
}


.spinnerLoading {
    margin: 25px auto;
    width: 100px;
    height: 40px;
    text-align: center;
    font-size: 15px;
}

    .spinnerLoading > div {
        background-color: #333;
        height: 70px;
        width: 7px;
        display: inline-block;
        -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
        animation: sk-stretchdelay 1.2s infinite ease-in-out;
    }

.spinnerWhite > div {
    background-color: white !important;
}

.spinnerLoading .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinnerLoading .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.spinnerLoading .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinnerLoading .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(1.0);
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}

.spinner-loading-chat {
    left: 45%;
    position: absolute;
    /*margin: 20px;*/
    height: 28px;
    width: 28px;
    animation: rotateLoading 0.8s infinite linear;
    border: 2px solid #333333;
    border-right-color: transparent;
    border-radius: 50%;
}

@keyframes rotateLoading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn200 {
    width: 200px;
}

    .btn200 i {
        padding-right: 10px;
        float: left;
    }

.mirror-effect {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
}

.modal.center .modal-dialog {
    position: fixed;
    top: 40%;
    left: 50%;
    min-width: 320px;
    max-width: 630px;
    width: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

    .modal.center .modal-dialog .modal-content {
        border: none !important;
    }

.drop {
    padding: 15px;
    border: 2px #f1f1f1 dashed;
    border-radius: 5px;
    line-height: 34px;
}

    .drop.drag-over {
        background: #5CB85C;
        color: #fff;
    }

.disable-animations.ng-enter,
.disable-animations.ng-leave,
.disable-animations.ng-animate {
    -webkit-transition: none !important;
    transition: none !important;
}

.panel-heading h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: normal;
    width: 75%;
    /*padding-top: 8px;*/
}

.highlight {
    text-decoration: underline;
    font-weight: bold;
}

.modal.modal-wide .modal-dialog {
    width: 90%;
}

.modal-wide .modal-body {
    overflow-y: auto;
}

.cursor-zoom-in {
    cursor: -webkit-zoom-in;
}


.textoVertical {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    display: inline-block;
    padding: 10px 0px 80px 0px;
    font-weight: bold;
}

.fadein.ng-hide-remove,
.fadeout.ng-hide-add {
    -webkit-transition: 400ms ease-in-out all;
    -moz-transition: 400ms ease-in-out all;
    -o-transition: 400ms ease-in-out all;
    transition: 400ms ease-in-out all;
    display: block !important;
}

    .fadein.ng-hide-remove,
    .fadeout.ng-hide-add.ng-hide-add-active {
        opacity: 0;
    }

        .fadeout.ng-hide-add,
        .fadein.ng-hide-remove.ng-hide-remove-active {
            opacity: 1;
        }

.scroll-modal {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.uppercase {
    text-transform: uppercase;
}

.table-overflow {
    table-layout: fixed !important;
}

    .table-overflow .td-overflow {
        text-overflow: ellipsis !important;
        overflow: hidden !important;
        white-space: nowrap !important;
    }

.text-overflow {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.btn-focus-pdv:focus {
    color: #ffffff !important;
    background-color: #444444 !important;
    border-color: #444444 !important;
    outline: 0;
    /*box-shadow: none;*/
}

/****************** calendar cores*/
.grayEvent,
.grayEvent div,
.grayEvent span {
    background-color: #eaecf6; /* background color */
    border-color: white; /* border color */
    color: #59595a; /* text color */
    font-weight: bold;
}

.class-escala1,
.class-escala1 div,
.class-escala1 span {
    background-color: #795548; /* background color */
    border-color: white; /* border color */
    color: white; /* text color */
    font-weight: bold;
}

.class-escala2,
.class-escala2 div,
.class-escala2 span {
    background-color: #8bc34a; /* background color */
    border-color: white; /* border color */
    color: black; /* text color */
    font-weight: bold;
}

.class-escala3,
.class-escala3 div,
.class-escala3 span {
    background-color: #2196f3; /* background color */
    border-color: white; /* border color */
    color: white; /* text color */
    font-weight: bold;
}

.class-escala4,
.class-escala4 div,
.class-escala4 span {
    background-color: #FFC107; /* background color */
    border-color: white; /* border color */
    color: white; /* text color */
    font-weight: bold;
}

.invisible {
    visibility: hidden !important;
}

.pneu-veiculo {
    width: 100%;
    height: 40px;
    border: 1px solid black;
    border-radius: 0;
    margin-left: 5px;
    margin-right: 5px;
}

.pneu-veiculo-print {
    background-color: transparent !important;
}

    .pneu-veiculo-print > h4 {
        color: black !important;
    }

.pulse-money {
    -webkit-animation: cc 1s linear 1s infinite alternate;
    animation: cc 1s linear 1s infinite alternate;
    /*font-size: 20px !important;*/
}

.pulse-money-danger {
    -webkit-animation: ccd 1s linear 1s infinite alternate;
    animation: ccd 1s linear 1s infinite alternate;
    /*font-size: 20px !important;*/
}

@-webkit-keyframes ccd {
    0% {
        color: rgba(89, 89, 90, 0.30);
    }

    50% {
        color: #333333;
    }

    100% {
        color: rgba(89, 89, 90, 0.30);
    }
}

@keyframes cc {
    0% {
        color: rgba(89, 89, 90, 0.30);
    }

    50% {
        color: #333333;
    }

    100% {
        color: rgba(89, 89, 90, 0.30);
    }
}

@-webkit-keyframes ccd {
    0% {
        color: rgba(218, 62, 22, 0.30);
    }

    50% {
        color: #DA3E16;
    }

    100% {
        color: rgba(218, 62, 22, 0.30);
    }
}

@keyframes ccd {
    0% {
        color: rgba(218, 62, 22, 0.30);
    }

    50% {
        color: #DA3E16;
    }

    100% {
        color: rgba(218, 62, 22, 0.30);
    }
}

.table > tbody > tr.warning > td {
    background-color: #fcf8e3 !important;
}

.v-middle {
    vertical-align: middle !important;
}

.checkbox-lg {
    padding: 10px !important;
}

    .checkbox-lg:after {
        top: 0px !important;
        left: -2px !important;
    }

tr.bg-violetred > td {
    background-color: palevioletred !important;
}

tr.bg-success > td {
    background-color: #15db81 !important;
}

.hide-search > div > div > div > .dataTables_filter {
    display: none !important;
}

.hide-table-length > div > div > div > .dataTables_length {
    display: none !important;
}
