/**
* Emphasize Admin StyleSheet
*
* Version:        1.0.1
* Last change:    26 October 1017 - Fix Utility Class Colors
*
* See Manual for full Changelog


Emphasize uses Sass to generate it's styles. Check sass/ folder for Sass Code
All pages using Emphasize Style Sheet Must follow the [Page Layout] mentioned Below for best performance


************[Page Level Table Of Contents]************

 This is the Page Level Table of Contents
 You will find Component Styles in the respective component's sass file
 Or lower in the compiled css file (Simply Lookup the Component class with Find )


*******[Page Layout]*******

1. [HEAD]

    i. Title
    ii. Metadata
    iii. StyleSheets
    iv. Critical Javascript

2. [BODY]

    i. Full Page Wrapper Div (div.page-wrapper)

        a. Loading Sign (div#loader-container)
        b. TopBar (div.navbar#topbar)
        c. Left Sidebar (div.sidebar.sidebar-left)
        d. Right Sidebar (Optional) (div.sidebar.sidebar-right)
        f. Main Page Division (div.page)
            A. Page Header (header.ribbon)
            B. Page Content (div.page-content)
                *** The Contents of Your Page Go Here****

    ii. JavaScript Files



******[Reusable Components]*******

Emphasize Admin works on top of Bootstrap 3.
The following Components have been heavily modified over Bootstrap 3


***[CSS]***
1. Forms (sass/_forms.scss)
2. Media (sass/_media.scss)
3. Tables (sass/_tables.scss)
4. Typography (sass/_typography.scss)

***[Bootstrap Components]***
1. Alerts (sass/components/_alerts.scss) [.alert]
2. Buttons (sass/components/_buttons.scss) [.btn]
3. Dropdowns (sass/components/_dropdown.scss) [.dropdown]
4. Icons (sass/components/_icons.scss) [.fa,.mdi,.oi]
5. Labels (sass/components/_labels.scss) [.label, .badge]
6. Lists (sass/components/_list.scss) [.list-group]
7. Navigation & Tabs (sass/components/_nav.scss) [.nav-tabs]
8. NavBar (sass/components/_navbar.scss) [.navbar]
9. Panels (sass/components/_panels.scss) [.panel]
10. Progress Bars (sass/components/_progress.scss) [.progress]
11. Breadcrumb (sass/components/_small.scss) [.breadcrumb]

***[New Components]***
1. Sidebar (sass/components/_sidebar.scss) [.sidebar]
2. Pulse (sass/components/_small.scss) [.notification-pulse]

*/
/* * * * * * *
* Typography Styling
*
* * * * * * */
:root {
  font-size: 13px;
}
@media (min-width: 992px) {
  :root {
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  :root {
    font-size: 14px;
  }
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-size: 1rem;
  background-color: #f1f6fb;
  font-weight: 400;
  color: #55616d;
}
@media (min-width: 992px) {
  body {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 14px;
    font-size: 1rem;
  }
}
body.white {
  background-color: initial;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Rubik", sans-serif;
  margin: 0;
  padding: 0em;
  line-height: 1.1;
  font-weight: 300;
  text-align: inherit;
  margin-bottom: 0.7em;
}
h1.no-margin, h2.no-margin, h3.no-margin, h4.no-margin, h5.no-margin, h6.no-margin {
  margin-bottom: 0;
}
h1.padded, h2.padded, h3.padded, h4.padded, h5.padded, h6.padded {
  margin-bottom: 0;
  padding-bottom: 0.5em;
}
h1.fixed-margin, h2.fixed-margin, h3.fixed-margin, h4.fixed-margin, h5.fixed-margin, h6.fixed-margin {
  margin-bottom: 1.2rem;
}

h1 {
  font-size: 22.9104418816px;
  font-size: 1.7623416832rem;
}
@media (min-width: 992px) {
  h1 {
    font-size: 22.9104418816px;
    font-size: 1.7623416832rem;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 24.6727835648px;
    font-size: 1.7623416832rem;
  }
}

h2 {
  font-size: 20.45575168px;
  font-size: 1.57351936rem;
}
@media (min-width: 992px) {
  h2 {
    font-size: 20.45575168px;
    font-size: 1.57351936rem;
  }
}
@media (min-width: 1200px) {
  h2 {
    font-size: 22.02927104px;
    font-size: 1.57351936rem;
  }
}

h3 {
  font-size: 18.264064px;
  font-size: 1.404928rem;
}
@media (min-width: 992px) {
  h3 {
    font-size: 18.264064px;
    font-size: 1.404928rem;
  }
}
@media (min-width: 1200px) {
  h3 {
    font-size: 19.668992px;
    font-size: 1.404928rem;
  }
}

h4 {
  font-size: 16.3072px;
  font-size: 1.2544rem;
}
@media (min-width: 992px) {
  h4 {
    font-size: 16.3072px;
    font-size: 1.2544rem;
  }
}
@media (min-width: 1200px) {
  h4 {
    font-size: 17.5616px;
    font-size: 1.2544rem;
  }
}

h5 {
  font-size: 14.56px;
  font-size: 1.12rem;
}
@media (min-width: 992px) {
  h5 {
    font-size: 14.56px;
    font-size: 1.12rem;
  }
}
@media (min-width: 1200px) {
  h5 {
    font-size: 15.68px;
    font-size: 1.12rem;
  }
}

h6 {
  font-size: 13px;
  font-size: 1rem;
  font-weight: 400;
}
@media (min-width: 992px) {
  h6 {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  h6 {
    font-size: 14px;
    font-size: 1rem;
  }
}

/* Paragraph */
p {
  margin-bottom: 1.2em;
  line-height: 1.4;
}
p.no-margin {
  margin-bottom: 0;
}
p.padded {
  margin-bottom: 0;
  padding-bottom: 1.2em;
}
p.fixed-margin {
  margin-bottom: 1.2rem;
}

/* Code */
code {
  background-color: #f7f7f7;
  border-radius: 0;
  padding: 0.2em 0.5em;
  font-family: "Source Code Pro", monospace;
}

/* blockquotes */
blockquote {
  font-size: 13px;
  font-size: 1rem;
}
@media (min-width: 992px) {
  blockquote {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  blockquote {
    font-size: 14px;
    font-size: 1rem;
  }
}
blockquote p {
  font-size: 1.12em;
}
blockquote footer {
  font-size: 1.12em;
}
blockquote cite {
  font-weight: 600;
}

/* Links */
a {
  color: #1565C0;
  cursor: pointer;
}
a:hover, a:focus, a:active {
  text-decoration: underline;
  color: #1565C0;
}

.text-muted {
  color: #78828c;
}

.text-dark {
  color: #4b5661;
}

.text-dimmed {
  color: #64707c;
}

.text-inactive {
  color: #aab4be;
}

.text-primary {
  color: #664bee;
}

.text-info {
  color: #187bd1;
}

.text-warning {
  color: #ffa60c;
}

.text-danger {
  color: #fc4b6c;
}

.text-success {
  color: #23b0a2;
}

hr {
  border-color: #eee;
}

.jumbotron, .container .jumbotron, .container-fluid .jumbotron {
  background-color: #f7f7f7;
  border-radius: 0;
  padding: 2em;
}

.nowrap {
  white-space: nowrap;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

.semi-bold {
  font-weight: 600;
}

.normal-weight {
  font-weight: 400;
}

.text-small {
  font-size: 0.9em;
}

.text-large {
  font-size: 1.2em;
}

.mg-null {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.mg-null-h {
  margin-right: 0 !important;
  margin-right: 0 !important;
}
.mg-null-v {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.mg-null-r {
  margin-right: 0 !important;
}
.mg-null-l {
  margin-left: 0 !important;
}
.mg-null-b {
  margin-bottom: 0 !important;
}
.mg-null-t {
  margin-top: 0 !important;
}

.mg-xs {
  margin-left: 0.2em !important;
  margin-right: 0.2em !important;
  margin-top: 0.2em !important;
  margin-bottom: 0.2em !important;
}
.mg-xs-h {
  margin-right: 0.2em !important;
  margin-right: 0.2em !important;
}
.mg-xs-v {
  margin-top: 0.2em !important;
  margin-bottom: 0.2em !important;
}
.mg-xs-r {
  margin-right: 0.2em !important;
}
.mg-xs-l {
  margin-left: 0.2em !important;
}
.mg-xs-b {
  margin-bottom: 0.2em !important;
}
.mg-xs-t {
  margin-top: 0.2em !important;
}

.mg-sm {
  margin-left: 0.5em !important;
  margin-right: 0.5em !important;
  margin-top: 0.5em !important;
  margin-bottom: 0.5em !important;
}
.mg-sm-h {
  margin-right: 0.5em !important;
  margin-right: 0.5em !important;
}
.mg-sm-v {
  margin-top: 0.5em !important;
  margin-bottom: 0.5em !important;
}
.mg-sm-r {
  margin-right: 0.5em !important;
}
.mg-sm-l {
  margin-left: 0.5em !important;
}
.mg-sm-b {
  margin-bottom: 0.5em !important;
}
.mg-sm-t {
  margin-top: 0.5em !important;
}

.mg-n, .mg {
  margin-left: 1em !important;
  margin-right: 1em !important;
  margin-top: 1em !important;
  margin-bottom: 1em !important;
}
.mg-n-h, .mg-h {
  margin-right: 1em !important;
  margin-right: 1em !important;
}
.mg-n-v, .mg-v {
  margin-top: 1em !important;
  margin-bottom: 1em !important;
}
.mg-n-r, .mg-r {
  margin-right: 1em !important;
}
.mg-n-l, .mg-l {
  margin-left: 1em !important;
}
.mg-n-b, .mg-b {
  margin-bottom: 1em !important;
}
.mg-n-t, .mg-t {
  margin-top: 1em !important;
}

.mg-lg {
  margin-left: 1.5em !important;
  margin-right: 1.5em !important;
  margin-top: 1.5em !important;
  margin-bottom: 1.5em !important;
}
.mg-lg-h {
  margin-right: 1.5em !important;
  margin-right: 1.5em !important;
}
.mg-lg-v {
  margin-top: 1.5em !important;
  margin-bottom: 1.5em !important;
}
.mg-lg-r {
  margin-right: 1.5em !important;
}
.mg-lg-l {
  margin-left: 1.5em !important;
}
.mg-lg-b {
  margin-bottom: 1.5em !important;
}
.mg-lg-t {
  margin-top: 1.5em !important;
}

.mg-xlg {
  margin-left: 2em !important;
  margin-right: 2em !important;
  margin-top: 2em !important;
  margin-bottom: 2em !important;
}
.mg-xlg-h {
  margin-right: 2em !important;
  margin-right: 2em !important;
}
.mg-xlg-v {
  margin-top: 2em !important;
  margin-bottom: 2em !important;
}
.mg-xlg-r {
  margin-right: 2em !important;
}
.mg-xlg-l {
  margin-left: 2em !important;
}
.mg-xlg-b {
  margin-bottom: 2em !important;
}
.mg-xlg-t {
  margin-top: 2em !important;
}

.mg-center {
  margin-left: auto !important;
  margin-right: auto !important;
}

.pd-null {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.pd-null-h {
  padding-right: 0 !important;
  padding-right: 0 !important;
}
.pd-null-v {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.pd-null-r {
  padding-right: 0 !important;
}
.pd-null-l {
  padding-left: 0 !important;
}
.pd-null-b {
  padding-bottom: 0 !important;
}
.pd-null-t {
  padding-top: 0 !important;
}

.pd-xs {
  padding-left: 0.2em !important;
  padding-right: 0.2em !important;
  padding-top: 0.2em !important;
  padding-bottom: 0.2em !important;
}
.pd-xs-h {
  padding-right: 0.2em !important;
  padding-right: 0.2em !important;
}
.pd-xs-v {
  padding-top: 0.2em !important;
  padding-bottom: 0.2em !important;
}
.pd-xs-r {
  padding-right: 0.2em !important;
}
.pd-xs-l {
  padding-left: 0.2em !important;
}
.pd-xs-b {
  padding-bottom: 0.2em !important;
}
.pd-xs-t {
  padding-top: 0.2em !important;
}

.pd-sm {
  padding-left: 0.5em !important;
  padding-right: 0.5em !important;
  padding-top: 0.5em !important;
  padding-bottom: 0.5em !important;
}
.pd-sm-h {
  padding-right: 0.5em !important;
  padding-right: 0.5em !important;
}
.pd-sm-v {
  padding-top: 0.5em !important;
  padding-bottom: 0.5em !important;
}
.pd-sm-r {
  padding-right: 0.5em !important;
}
.pd-sm-l {
  padding-left: 0.5em !important;
}
.pd-sm-b {
  padding-bottom: 0.5em !important;
}
.pd-sm-t {
  padding-top: 0.5em !important;
}

.pd-n, .pd {
  padding-left: 1em !important;
  padding-right: 1em !important;
  padding-top: 1em !important;
  padding-bottom: 1em !important;
}
.pd-n-h, .pd-h {
  padding-right: 1em !important;
  padding-right: 1em !important;
}
.pd-n-v, .pd-v {
  padding-top: 1em !important;
  padding-bottom: 1em !important;
}
.pd-n-r, .pd-r {
  padding-right: 1em !important;
}
.pd-n-l, .pd-l {
  padding-left: 1em !important;
}
.pd-n-b, .pd-b {
  padding-bottom: 1em !important;
}
.pd-n-t, .pd-t {
  padding-top: 1em !important;
}

.pd-lg {
  padding-left: 1.5em !important;
  padding-right: 1.5em !important;
  padding-top: 1.5em !important;
  padding-bottom: 1.5em !important;
}
.pd-lg-h {
  padding-right: 1.5em !important;
  padding-right: 1.5em !important;
}
.pd-lg-v {
  padding-top: 1.5em !important;
  padding-bottom: 1.5em !important;
}
.pd-lg-r {
  padding-right: 1.5em !important;
}
.pd-lg-l {
  padding-left: 1.5em !important;
}
.pd-lg-b {
  padding-bottom: 1.5em !important;
}
.pd-lg-t {
  padding-top: 1.5em !important;
}

.pd-xlg {
  padding-left: 2em !important;
  padding-right: 2em !important;
  padding-top: 2em !important;
  padding-bottom: 2em !important;
}
.pd-xlg-h {
  padding-right: 2em !important;
  padding-right: 2em !important;
}
.pd-xlg-v {
  padding-top: 2em !important;
  padding-bottom: 2em !important;
}
.pd-xlg-r {
  padding-right: 2em !important;
}
.pd-xlg-l {
  padding-left: 2em !important;
}
.pd-xlg-b {
  padding-bottom: 2em !important;
}
.pd-xlg-t {
  padding-top: 2em !important;
}

.bg-primary {
  color: #fff;
  background-color: #7259EF;
}

.bg-info {
  color: #fff;
  background-color: #1E88E5;
}

.bg-warning {
  color: #fff;
  background-color: #FFB12B;
}

.bg-danger {
  color: #fff;
  background-color: #FC5F7C;
}

.bg-success {
  color: #fff;
  background-color: #26c1b2;
}

.bg-grey {
  background-color: #f5f5f5;
}

/* * * * * * *
* Table Styling
*
* * * * * * */
.table {
  font-size: 13px;
  font-size: 1rem;
  border-color: #eee;
}
@media (min-width: 992px) {
  .table {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .table {
    font-size: 14px;
    font-size: 1rem;
  }
}
.table thead tr th, .table tbody tr th, .table tfoot tr th {
  color: #64707c;
}
.table thead tr td, .table thead tr th, .table tbody tr td, .table tbody tr th, .table tfoot tr td, .table tfoot tr th {
  padding: 1em 1.5em;
  border-bottom-width: 1px;
  border-color: #eee;
}
.table tbody tr.success td, .table tbody tr td.success, .table thead tr.success td, .table thead tr td.success, .table tfoot tr.success td, .table tfoot tr td.success {
  background-color: #bcf2ed;
}
.table tbody tr.warning td, .table tbody tr td.warning, .table thead tr.warning td, .table thead tr td.warning, .table tfoot tr.warning td, .table tfoot tr td.warning {
  background-color: #fff3de;
}
.table tbody tr.info td, .table tbody tr td.info, .table thead tr.info td, .table thead tr td.info, .table tfoot tr.info td, .table tfoot tr td.info {
  background-color: #beddf7;
}
.table tbody tr.danger td, .table tbody tr td.danger, .table thead tr.danger td, .table thead tr td.danger, .table tfoot tr.danger td, .table tfoot tr td.danger {
  background-color: #fed7de;
}
.table tbody tr.primary td, .table tbody tr td.primary, .table thead tr.primary td, .table thead tr td.primary, .table tfoot tr.primary td, .table tfoot tr td.primary {
  background-color: #f0eefd;
}
.table tbody tr.active td, .table tbody tr td.active, .table thead tr.active td, .table thead tr td.active, .table tfoot tr.active td, .table tfoot tr td.active {
  background-color: #eee;
}
.table.table-condensed thead tr td, .table.table-condensed thead tr th, .table.table-condensed tbody tr td, .table.table-condensed tbody tr th, .table.table-condensed tfoot tr td, .table.table-condensed tfoot tr th {
  padding: 0.4em 0.8em;
}
.table.table-align-middle thead tr td, .table.table-align-middle thead tr th, .table.table-align-middle tbody tr td, .table.table-align-middle tbody tr th, .table.table-align-middle tfoot tr td, .table.table-align-middle tfoot tr th {
  vertical-align: middle;
}
.table.padding-large thead tr td, .table.padding-large thead tr th, .table.padding-large tbody tr td, .table.padding-large tbody tr th, .table.padding-large tfoot tr td, .table.padding-large tfoot tr th {
  padding: 1em 1.3em;
}
.table.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f7f7f7;
}
.table.table-hover tbody > tr {
  -webkit-transition: 0.5s background-color;
  -o-transition: 0.5s background-color;
  transition: 0.5s background-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.table.table-hover tbody > tr:hover {
  background-color: #f7f7f7;
}
.table.table-noborders thead tr td, .table.table-noborders thead tr th, .table.table-noborders tbody tr td, .table.table-noborders tbody tr th, .table.table-noborders tfoot tr td, .table.table-noborders tfoot tr th {
  border: none;
}

/* * * * * * * * * *
* Form Styling
*
* * * * * * * * * */
.form-control {
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #ddd;
  height: 2.5em;
  padding: 0.4em 0.7em;
  line-height: initial;
  vertical-align: middle;
  font-size: 13px;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .form-control {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .form-control {
    font-size: 14px;
    font-size: 1rem;
  }
}
.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #1565C0;
}
.form-control.input-lg {
  font-size: 19.5px;
  font-size: 1.5rem;
}
@media (min-width: 992px) {
  .form-control.input-lg {
    font-size: 19.5px;
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .form-control.input-lg {
    font-size: 21px;
    font-size: 1.5rem;
  }
}
.form-control.input-sm {
  font-size: 11.05px;
  font-size: 0.85rem;
}
@media (min-width: 992px) {
  .form-control.input-sm {
    font-size: 11.05px;
    font-size: 0.85rem;
  }
}
@media (min-width: 1200px) {
  .form-control.input-sm {
    font-size: 11.9px;
    font-size: 0.85rem;
  }
}

.fullpage-form-container .panel.panel-form {
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 1px -2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 1px -2px rgba(0, 0, 0, 0.1);
  border-radius: 0;
}
.fullpage-form-container .panel.panel-form .panel-heading {
  border-radius: 0;
}

.form-link {
  margin-top: 2em;
  font-size: 1.05em;
}

.form-buttons .btn {
  margin-right: 0.6em;
}

.input-group {
  font-size: 13px;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .input-group {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .input-group {
    font-size: 14px;
    font-size: 1rem;
  }
}
.input-group .form-control {
  height: 2.5em;
  padding: 0.4em 0.7em;
  line-height: 1.2;
  font-size: 1em;
  border-radius: 0;
}
.input-group .input-group-addon {
  border-radius: 0;
  height: 2.5em;
  padding: 0.4em 0.7em;
  font-size: 1em;
  border: 1px solid #ddd;
  background-color: #f5f5f5;
  vertical-align: middle;
}
.input-group .input-group-addon:first-child {
  border-right: 0;
}
.input-group .input-group-addon:last-child {
  border-left: 0;
}
.input-group .input-group-addon input {
  vertical-align: middle;
}
.input-group.input-group-lg {
  font-size: 16.9px;
  font-size: 1.3rem;
}
@media (min-width: 992px) {
  .input-group.input-group-lg {
    font-size: 16.9px;
    font-size: 1.3rem;
  }
}
@media (min-width: 1200px) {
  .input-group.input-group-lg {
    font-size: 18.2px;
    font-size: 1.3rem;
  }
}
.input-group.input-group-sm {
  font-size: 10.4px;
  font-size: 0.8rem;
}
@media (min-width: 992px) {
  .input-group.input-group-sm {
    font-size: 10.4px;
    font-size: 0.8rem;
  }
}
@media (min-width: 1200px) {
  .input-group.input-group-sm {
    font-size: 11.2px;
    font-size: 0.8rem;
  }
}
.input-group .input-group-btn {
  font-size: 1em;
}
.input-group .input-group-btn .btn {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-width: 1px;
  border-radius: 0px;
  height: 2.5em;
  margin-right: -1px;
  font-size: 1em;
}
.input-group .input-group-btn .btn.btn-default {
  border-color: #aaa;
}

label {
  font-weight: 600;
}

.form-inline label {
  margin-right: 0.25em;
}
.form-inline .form-group {
  margin-right: 1em;
}

.form-horizontal {
  padding-right: 1em;
}

.has-success .control-label {
  color: #55616d;
}
.has-success .form-control {
  border: 1px solid #2E7D32;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
  padding-right: 3em;
}
.has-success .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #1565C0;
}
.has-success label {
  color: #2E7D32;
}
.has-success .help-block {
  color: #2E7D32;
}

.has-warning .control-label {
  color: #55616d;
}
.has-warning .form-control {
  border: 1px solid #F57C00;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
  padding-right: 3em;
}
.has-warning .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #1565C0;
}
.has-warning label {
  color: #F57C00;
}
.has-warning .help-block {
  color: #F57C00;
}

.has-error .control-label {
  color: #55616d;
}
.has-error .form-control {
  border: 1px solid #D32F2F;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
  padding-right: 3em;
}
.has-error .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #1565C0;
}
.has-error .help-block {
  color: #D32F2F;
}
.has-error label {
  color: #D32F2F;
}

.mdform .form-control {
  border: 0;
  border-bottom: 1px solid #bbb;
  padding-left: 0;
  height: 2em;
  -webkit-transition: 0.2s border-color;
  -o-transition: 0.2s border-color;
  transition: 0.2s border-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  padding: 3px 0.5em 3px 2px;
}
.mdform .form-control:focus {
  border-bottom: 2px solid #1E88E5;
  padding: 3px 0.5em 2px 2px;
}
.mdform .form-control.dashed {
  border-bottom: 1px dashed #aaa;
}
.mdform .form-control.dashed:focus {
  border-bottom: 2px solid #1E88E5;
}
.mdform label {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 0.9em;
}
.mdform .md-form-group {
  position: relative;
  padding-top: 1.3em;
  margin-bottom: 2em;
}
.mdform .md-form-group label {
  position: absolute;
  font-size: 1.1em;
  font-weight: inherit;
  line-height: 1.8em;
  color: #78828c;
  bottom: 0.2em;
  -webkit-transition: bottom 0.2s, font-size 0.2s, color 0.2s;
  -o-transition: bottom 0.2s, font-size 0.2s, color 0.2s;
  transition: bottom 0.2s, font-size 0.2s, color 0.2s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
}
.mdform .md-form-group label.small {
  position: absolute;
  bottom: 2.5em;
  line-height: inherit;
  font-size: 0.9em;
  font-weight: 700;
  color: inherit;
}

.form-group {
  margin-bottom: 2em;
}
.form-group.checkbox {
  margin-bottom: 2.5em;
  padding-top: 0.5em;
}

.checkbox label, .radio label {
  font-weight: 400;
  font-size: 1em;
  padding-left: 0;
}
.checkbox label input, .radio label input {
  position: relative;
  margin: 0;
  top: 0.25em;
}
.checkbox label span.label-text, .radio label span.label-text {
  margin: 0 0.4em;
  display: inline-block;
  vertical-align: middle;
}

.icheckbox_square-grey {
  vertical-align: middle;
}

.bootstrap-switch-container {
  border-radius: 2px;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary, .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
  background-color: #7259EF;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info, .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
  background-color: #1E88E5;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success, .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
  background-color: #26c1b2;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning, .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
  background-color: #FFB12B;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger, .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
  background-color: #FC5F7C;
}

.bootstrap-switch, .bootstrap-switch .bootstrap-switch-handle-on, .bootstrap-switch .bootstrap-switch-handle-off {
  border-radius: 2px;
}

.bootstrap-switch {
  padding: 0;
}

.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on, .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off, .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
  font-size: 0.9em;
  padding: 4px 7px;
}

.datepicker.datepicker-dropdown {
  padding: 0.5em;
  -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  border: 0;
}
.datepicker.datepicker-dropdown table tr td {
  padding: 0.7em;
}

.datepicker table tr td.active.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active.disabled:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active:active, .datepicker table tr td.active:hover, .datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active:hover:active, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active[disabled] {
  background-color: #1E88E5;
  background-image: none;
  border-radius: 0;
}

/* * * * * * * * * *
* Media and Thumbnails Styling
*
* * * * * * * * * */
.img-thumb {
  font-size: 13px;
  font-size: 1rem;
  width: 10em;
}
@media (min-width: 992px) {
  .img-thumb {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .img-thumb {
    font-size: 14px;
    font-size: 1rem;
  }
}

.img-thumb-nm {
  font-size: 13px;
  font-size: 1rem;
  width: 6em;
}
@media (min-width: 992px) {
  .img-thumb-nm {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .img-thumb-nm {
    font-size: 14px;
    font-size: 1rem;
  }
}

.img-thumb-sm {
  font-size: 13px;
  font-size: 1rem;
  width: 4.5em;
}
@media (min-width: 992px) {
  .img-thumb-sm {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .img-thumb-sm {
    font-size: 14px;
    font-size: 1rem;
  }
}

.img-thumb-xs {
  font-size: 13px;
  font-size: 1rem;
  width: 3.2em;
}
@media (min-width: 992px) {
  .img-thumb-xs {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .img-thumb-xs {
    font-size: 14px;
    font-size: 1rem;
  }
}

.img-thumb-xxs {
  font-size: 13px;
  font-size: 1rem;
  width: 2.5em;
}
@media (min-width: 992px) {
  .img-thumb-xxs {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .img-thumb-xxs {
    font-size: 14px;
    font-size: 1rem;
  }
}

.img-thumb-lg {
  font-size: 13px;
  font-size: 1rem;
  width: 13em;
}
@media (min-width: 992px) {
  .img-thumb-lg {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .img-thumb-lg {
    font-size: 14px;
    font-size: 1rem;
  }
}

.media.align-middle {
  vertical-align: middle;
}
.media.align-middle .media-left {
  vertical-align: middle;
}

.media-body {
  padding-left: 1em;
}

.media-left {
  padding: 0em 0.5em;
}
.media-left > .fa, .media-left .fa-stack {
  margin: 0;
}
.media-left.no-padding {
  padding: 0;
}

.media-success {
  background-color: #26c1b2;
  color: white;
}

.media-info {
  background-color: #1E88E5;
  color: white;
}

.media-primary {
  background-color: #7259EF;
  color: white;
}

.media-warning {
  background-color: #FFB12B;
  color: white;
}

.media-danger {
  background-color: #FC5F7C;
  color: white;
}

.media-dark {
  background-color: #445566;
  color: white;
}

.media-body {
  padding: 0em 0.8em;
}

.media-full {
  padding: 0.2em;
}

.media-user {
  margin: 0;
  padding: 0;
  color: #1565C0;
  font-weight: 400;
  margin-bottom: 0.2em;
}

.media-raised {
  -webkit-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
          box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
  border-radius: 4px;
}

.img-thumb.media-raised {
  display: block;
  -webkit-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
          box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
}

.img-circle.media-raised {
  display: block;
  -webkit-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
          box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
  border-radius: 50%;
}

.media-user-inline {
  color: #1565C0;
}

.media-content {
  margin-bottom: 0;
  margin-top: 0em;
}
.media-content.media-content-small {
  font-size: 0.9em;
}

.media-title {
  font-weight: normal;
  margin: 0;
  padding: 0;
  font-size: 1em;
}

.rounded-icon {
  font-size: 13px;
  font-size: 1rem;
  display: inline-block;
  width: 3em;
  height: 3em;
  text-align: center;
  line-height: 3;
  background: #f7f7f7;
  color: #55616d;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .rounded-icon {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .rounded-icon {
    font-size: 14px;
    font-size: 1rem;
  }
}
.rounded-icon .fa, .rounded-icon .mdi {
  margin: 0;
}
.rounded-icon .mdi::before {
  position: relative;
  bottom: 0.3em;
}
.rounded-icon.rounded-icon-mini {
  font-size: 10.4px;
  font-size: 0.8rem;
}
@media (min-width: 992px) {
  .rounded-icon.rounded-icon-mini {
    font-size: 10.4px;
    font-size: 0.8rem;
  }
}
@media (min-width: 1200px) {
  .rounded-icon.rounded-icon-mini {
    font-size: 11.2px;
    font-size: 0.8rem;
  }
}
.rounded-icon.rounded-icon-lg {
  font-size: 22.1px;
  font-size: 1.7rem;
}
@media (min-width: 992px) {
  .rounded-icon.rounded-icon-lg {
    font-size: 22.1px;
    font-size: 1.7rem;
  }
}
@media (min-width: 1200px) {
  .rounded-icon.rounded-icon-lg {
    font-size: 23.8px;
    font-size: 1.7rem;
  }
}
.rounded-icon.round-icon-xlg {
  font-size: 28.6px;
  font-size: 2.2rem;
}
@media (min-width: 992px) {
  .rounded-icon.round-icon-xlg {
    font-size: 28.6px;
    font-size: 2.2rem;
  }
}
@media (min-width: 1200px) {
  .rounded-icon.round-icon-xlg {
    font-size: 30.8px;
    font-size: 2.2rem;
  }
}
.rounded-icon.rounded-icon-success {
  background-color: #26c1b2;
  color: white;
}
.rounded-icon.rounded-icon-info {
  background-color: #1E88E5;
  color: white;
}
.rounded-icon.rounded-icon-primary {
  background-color: #7259EF;
  color: white;
}
.rounded-icon.rounded-icon-warning {
  background-color: #FFB12B;
  color: white;
}
.rounded-icon.rounded-icon-danger {
  background-color: #FC5F7C;
  color: white;
}

.square-icon {
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  display: inline-block;
  font-size: 13px;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .square-icon {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .square-icon {
    font-size: 14px;
    font-size: 1rem;
  }
}
.square-icon.square-icon-success {
  background-color: #26c1b2;
  color: white;
}
.square-icon.square-icon-info {
  background-color: #1E88E5;
  color: white;
}
.square-icon.square-icon-primary {
  background-color: #7259EF;
  color: white;
}
.square-icon.square-icon-warning {
  background-color: #FFB12B;
  color: white;
}
.square-icon.square-icon-danger {
  background-color: #FC5F7C;
  color: white;
}
.square-icon.square-icon-dark {
  background-color: #445566;
  color: white;
}
.square-icon.square-icon-lg {
  font-size: 22.1px;
  font-size: 1.7rem;
}
@media (min-width: 992px) {
  .square-icon.square-icon-lg {
    font-size: 22.1px;
    font-size: 1.7rem;
  }
}
@media (min-width: 1200px) {
  .square-icon.square-icon-lg {
    font-size: 23.8px;
    font-size: 1.7rem;
  }
}
.square-icon.square-icon-xlg {
  font-size: 28.6px;
  font-size: 2.2rem;
}
@media (min-width: 992px) {
  .square-icon.square-icon-xlg {
    font-size: 28.6px;
    font-size: 2.2rem;
  }
}
@media (min-width: 1200px) {
  .square-icon.square-icon-xlg {
    font-size: 30.8px;
    font-size: 2.2rem;
  }
}
.square-icon.square-icon-mini {
  font-size: 9.1px;
  font-size: 0.7rem;
}
@media (min-width: 992px) {
  .square-icon.square-icon-mini {
    font-size: 9.1px;
    font-size: 0.7rem;
  }
}
@media (min-width: 1200px) {
  .square-icon.square-icon-mini {
    font-size: 9.8px;
    font-size: 0.7rem;
  }
}
.square-icon.square-icon-xs {
  font-size: 5.2px;
  font-size: 0.4rem;
}
@media (min-width: 992px) {
  .square-icon.square-icon-xs {
    font-size: 5.2px;
    font-size: 0.4rem;
  }
}
@media (min-width: 1200px) {
  .square-icon.square-icon-xs {
    font-size: 5.6px;
    font-size: 0.4rem;
  }
}

/* * * * * * * * * *
* Button Styling
*
* * * * * * * * * */
.btn {
  /* Basic Styling For Buttons */
  font-size: 13px;
  font-size: 1rem;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 1px -2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 1px -2px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
  padding: 0.9em 1.5em;
  font-weight: 400;
  height: 3em;
  border-radius: 2px;
  border-width: 0px;
  border-style: solid;
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .btn {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .btn {
    font-size: 14px;
    font-size: 1rem;
  }
}
.btn .fa, .btn .oi, .btn .mdi {
  /* Give Margins for any icons in the button */
  margin-right: 0.3em;
  margin-left: 0.3em;
}
.btn.btn-default {
  /* Color Styling For Default Buttons */
  background-color: #f5f5f5;
  border-color: #ddd;
}
.btn.btn-default:hover, .btn.btn-default:focus, .btn.btn-default:active {
  background-color: #eeeeee;
  border-color: #ddd;
}
.btn.btn-primary {
  /* Color Styling For  Buttons */
  background-color: #7259EF;
  border-color: #664bee;
}
.btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:active {
  background-color: #664bee;
  border-color: #664bee;
}
.btn.btn-success {
  /* Color Styling For Primary Buttons */
  background-color: #26c1b2;
  border-color: #23b0a2;
}
.btn.btn-success:hover, .btn.btn-success:focus, .btn.btn-success:active {
  background-color: #23b0a2;
  border-color: #23b0a2;
}
.btn.btn-info {
  /* Color Styling For Info Buttons */
  background-color: #1E88E5;
  border-color: #187bd1;
}
.btn.btn-info:hover, .btn.btn-info:focus, .btn.btn-info:active {
  background-color: #187bd1;
  border-color: #187bd1;
}
.btn.btn-warning {
  /* Color Styling For Warning Buttons */
  background-color: #FFB12B;
  border-color: #ffa60c;
}
.btn.btn-warning:hover, .btn.btn-warning:focus, .btn.btn-warning:active {
  background-color: #ffa60c;
  border-color: #ffa60c;
}
.btn.btn-danger {
  /* Color Styling For Danger Buttons */
  background-color: #FC5F7C;
  border-color: #fc4b6c;
}
.btn.btn-danger:hover, .btn.btn-danger:focus, .btn.btn-danger:active {
  background-color: #fc4b6c;
  border-color: #fc4b6c;
}
.btn.btn-link {
  /* Clear Styling for Link Buttons */
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: transparent;
  display: inline;
  padding: 0;
  line-height: 1.4;
  height: auto;
  color: #1565C0;
}
.btn.btn-transparent-light {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
  color: #fff;
}
.btn.btn-transparent-light:focus, .btn.btn-transparent-light:active, .btn.btn-transparent-light:focus:active {
  outline: 0;
  border: 0;
}
.btn.btn-xs {
  /* Size for Extra Small Buttons */
  font-size: 9.1px;
  font-size: 0.7rem;
}
@media (min-width: 992px) {
  .btn.btn-xs {
    font-size: 9.1px;
    font-size: 0.7rem;
  }
}
@media (min-width: 1200px) {
  .btn.btn-xs {
    font-size: 9.8px;
    font-size: 0.7rem;
  }
}
.btn.btn-sm {
  /* Size for Small Buttons */
  font-size: 11.05px;
  font-size: 0.85rem;
}
@media (min-width: 992px) {
  .btn.btn-sm {
    font-size: 11.05px;
    font-size: 0.85rem;
  }
}
@media (min-width: 1200px) {
  .btn.btn-sm {
    font-size: 11.9px;
    font-size: 0.85rem;
  }
}
.btn.btn-lg {
  /* Size for Large Buttons */
  font-size: 16.25px;
  font-size: 1.25rem;
}
@media (min-width: 992px) {
  .btn.btn-lg {
    font-size: 16.25px;
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .btn.btn-lg {
    font-size: 17.5px;
    font-size: 1.25rem;
  }
}
.btn.btn-box {
  /* Box Outline Buttons Base Styling */
  background: none;
  color: #333;
  border-width: 1px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0.5em 1.5em;
}
.btn.btn-box.btn-default {
  /* Box Outline Buttons Color Styling - Default */
  background-color: white;
  border-color: #777;
}
.btn.btn-box.btn-default:hover, .btn.btn-box.btn-default:focus, .btn.btn-box.btn-default:active, .btn.btn-box.btn-default.active, .dropdown.open .btn-box.btn-default.btn.dropdown-toggle, .dropup.open .btn-box.btn-default.btn.dropdown-toggle, .btn-group.open .btn-box.btn-default.btn.dropdown-toggle, .btn-group-vertical.open .btn-box.btn-default.btn.dropdown-toggle {
  background-color: #eee;
  color: #333;
}
.btn.btn-box.btn-primary {
  /* Box Outline Buttons Color Styling - Primary */
  color: #664bee;
  border-color: #5234eb;
}
.btn.btn-box.btn-primary:hover, .btn.btn-box.btn-primary:focus, .btn.btn-box.btn-primary:active, .btn.btn-box.btn-primary.active, .dropdown.open .btn-box.btn-primary.btn.dropdown-toggle, .dropup.open .btn-box.btn-primary.btn.dropdown-toggle, .btn-group.open .btn-box.btn-primary.btn.dropdown-toggle, .btn-group-vertical.open .btn-box.btn-primary.btn.dropdown-toggle {
  background-color: #7259EF;
  border-color: #664bee;
  color: white;
}
.btn.btn-box.btn-success {
  /* Box Outline Buttons Color Styling - Success */
  color: #23b0a2;
  border-color: #198177;
}
.btn.btn-box.btn-success:hover, .btn.btn-box.btn-success:focus, .btn.btn-box.btn-success:active, .btn.btn-box.btn-success.active, .dropdown.open .btn-box.btn-success.btn.dropdown-toggle, .dropup.open .btn-box.btn-success.btn.dropdown-toggle, .btn-group.open .btn-box.btn-success.btn.dropdown-toggle, .btn-group-vertical.open .btn-box.btn-success.btn.dropdown-toggle {
  background-color: #26c1b2;
  border-color: #23b0a2;
  color: white;
}
.btn.btn-box.btn-info {
  /* Box Outline Buttons Color Styling - Info */
  color: #187bd1;
  border-color: #1360a4;
}
.btn.btn-box.btn-info:hover, .btn.btn-box.btn-info:focus, .btn.btn-box.btn-info:active, .btn.btn-box.btn-info.active, .dropdown.open .btn-box.btn-info.btn.dropdown-toggle, .dropup.open .btn-box.btn-info.btn.dropdown-toggle, .btn-group.open .btn-box.btn-info.btn.dropdown-toggle, .btn-group-vertical.open .btn-box.btn-info.btn.dropdown-toggle {
  background-color: #1E88E5;
  border-color: #187bd1;
  color: white;
}
.btn.btn-box.btn-warning {
  /* Box Outline Buttons Color Styling - Warning */
  color: #ffa60c;
  border-color: #de8c00;
}
.btn.btn-box.btn-warning:hover, .btn.btn-box.btn-warning:focus, .btn.btn-box.btn-warning:active, .btn.btn-box.btn-warning.active, .dropdown.open .btn-box.btn-warning.btn.dropdown-toggle, .dropup.open .btn-box.btn-warning.btn.dropdown-toggle, .btn-group.open .btn-box.btn-warning.btn.dropdown-toggle, .btn-group-vertical.open .btn-box.btn-warning.btn.dropdown-toggle {
  background-color: #FFB12B;
  border-color: #ffa60c;
  color: white;
}
.btn.btn-box.btn-danger {
  /* Box Outline Buttons Color Styling - Danger */
  color: #fc4b6c;
  border-color: #fb1943;
}
.btn.btn-box.btn-danger:hover, .btn.btn-box.btn-danger:focus, .btn.btn-box.btn-danger:active, .btn.btn-box.btn-danger.active, .dropdown.open .btn-box.btn-danger.btn.dropdown-toggle, .dropup.open .btn-box.btn-danger.btn.dropdown-toggle, .btn-group.open .btn-box.btn-danger.btn.dropdown-toggle, .btn-group-vertical.open .btn-box.btn-danger.btn.dropdown-toggle {
  background-color: #FC5F7C;
  border-color: #fc4b6c;
  color: white;
}
.btn.active, .dropdown.open .btn.dropdown-toggle, .dropup.open .btn.dropdown-toggle, .btn-group.open .btn.dropdown-toggle, .btn-group-vertical.open .btn.dropdown-toggle {
  /* Color Styling For .active Buttons, defined separately so it can be easily extended for btn-groups */
}
.btn.active.btn-default, .dropdown.open .btn-default.btn.dropdown-toggle, .dropup.open .btn-default.btn.dropdown-toggle, .btn-group.open .btn-default.btn.dropdown-toggle, .btn-group-vertical.open .btn-default.btn.dropdown-toggle {
  background-color: #f5f5f5;
  border-color: #ddd;
}
.btn.active.btn-primary, .dropdown.open .btn-primary.btn.dropdown-toggle, .dropup.open .btn-primary.btn.dropdown-toggle, .btn-group.open .btn-primary.btn.dropdown-toggle, .btn-group-vertical.open .btn-primary.btn.dropdown-toggle {
  background-color: #664bee;
  border-color: #664bee;
}
.btn.active.btn-success, .dropdown.open .btn-success.btn.dropdown-toggle, .dropup.open .btn-success.btn.dropdown-toggle, .btn-group.open .btn-success.btn.dropdown-toggle, .btn-group-vertical.open .btn-success.btn.dropdown-toggle {
  background-color: #23b0a2;
  border-color: #23b0a2;
}
.btn.active.btn-info, .dropdown.open .btn-info.btn.dropdown-toggle, .dropup.open .btn-info.btn.dropdown-toggle, .btn-group.open .btn-info.btn.dropdown-toggle, .btn-group-vertical.open .btn-info.btn.dropdown-toggle {
  background-color: #187bd1;
  border-color: #187bd1;
}
.btn.active.btn-warning, .dropdown.open .btn-warning.btn.dropdown-toggle, .dropup.open .btn-warning.btn.dropdown-toggle, .btn-group.open .btn-warning.btn.dropdown-toggle, .btn-group-vertical.open .btn-warning.btn.dropdown-toggle {
  background-color: #ffa60c;
  border-color: #ffa60c;
}
.btn.active.btn-danger, .dropdown.open .btn-danger.btn.dropdown-toggle, .dropup.open .btn-danger.btn.dropdown-toggle, .btn-group.open .btn-danger.btn.dropdown-toggle, .btn-group-vertical.open .btn-danger.btn.dropdown-toggle {
  background-color: #fc4b6c;
  border-color: #fc4b6c;
}
.btn.active.btn-box.btn-default, .dropdown.open .btn-box.btn-default.btn.dropdown-toggle, .dropup.open .btn-box.btn-default.btn.dropdown-toggle, .btn-group.open .btn-box.btn-default.btn.dropdown-toggle, .btn-group-vertical.open .btn-box.btn-default.btn.dropdown-toggle {
  background-color: #f5f5f5;
  border-color: #ddd;
}
.btn.active.btn-box.btn-primary, .dropdown.open .btn-box.btn-primary.btn.dropdown-toggle, .dropup.open .btn-box.btn-primary.btn.dropdown-toggle, .btn-group.open .btn-box.btn-primary.btn.dropdown-toggle, .btn-group-vertical.open .btn-box.btn-primary.btn.dropdown-toggle {
  background-color: #7259EF;
  border-color: #664bee;
  color: white;
}
.btn.active.btn-box.btn-success, .dropdown.open .btn-box.btn-success.btn.dropdown-toggle, .dropup.open .btn-box.btn-success.btn.dropdown-toggle, .btn-group.open .btn-box.btn-success.btn.dropdown-toggle, .btn-group-vertical.open .btn-box.btn-success.btn.dropdown-toggle {
  background-color: #26c1b2;
  border-color: #23b0a2;
  color: white;
}
.btn.active.btn-box.btn-info, .dropdown.open .btn-box.btn-info.btn.dropdown-toggle, .dropup.open .btn-box.btn-info.btn.dropdown-toggle, .btn-group.open .btn-box.btn-info.btn.dropdown-toggle, .btn-group-vertical.open .btn-box.btn-info.btn.dropdown-toggle {
  background-color: #1E88E5;
  border-color: #187bd1;
  color: white;
}
.btn.active.btn-box.btn-warning, .dropdown.open .btn-box.btn-warning.btn.dropdown-toggle, .dropup.open .btn-box.btn-warning.btn.dropdown-toggle, .btn-group.open .btn-box.btn-warning.btn.dropdown-toggle, .btn-group-vertical.open .btn-box.btn-warning.btn.dropdown-toggle {
  background-color: #FFB12B;
  border-color: #ffa60c;
  color: white;
}
.btn.active.btn-box.btn-danger, .dropdown.open .btn-box.btn-danger.btn.dropdown-toggle, .dropup.open .btn-box.btn-danger.btn.dropdown-toggle, .btn-group.open .btn-box.btn-danger.btn.dropdown-toggle, .btn-group-vertical.open .btn-box.btn-danger.btn.dropdown-toggle {
  background-color: #FC5F7C;
  border-color: #fc4b6c;
  color: white;
}
.btn.btn-pill {
  /* Border Radius for Pill Buttons */
  border-radius: 10em;
}
.btn.btn-round {
  /* Base Styling for Round Buttons */
  /*padding: 0;*/
  padding: 10px;
  width: 3em;
  height: 3em;
  text-align: center;
  border-radius: 50%;
}
.btn.btn-round .fa, .btn.btn-round .mdi, .btn.btn-round .oi {
  margin: 0;
  font-size: 1em;
  display: inline-block;
}
.btn.btn-round .oi {
  font-size: 0.9em;
}

/* Dropdown Button Styling */
.dropdown.open .btn.dropdown-toggle, .dropup.open .btn.dropdown-toggle {
  /* Style for Active Dropdown Button */
}

.btn-group {
  /* Button Group Styling */
  -webkit-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
          box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
  border-radius: 2px;
}
.btn-group .btn {
  font-size: 1em;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-left-width: 1px;
  border-left-style: solid;
}
.btn-group .btn:first-child {
  border-left-width: 0;
}
.btn-group .btn-group {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-group .btn-group .btn {
  border-left-width: 1px;
}
.btn-group .btn.btn-box {
  border-left-width: 1px;
}
.btn-group.btn-group-box {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-group.btn-group-xs {
  /* Size for Extra Small Buttons */
  font-size: 9.1px;
  font-size: 0.7rem;
}
@media (min-width: 992px) {
  .btn-group.btn-group-xs {
    font-size: 9.1px;
    font-size: 0.7rem;
  }
}
@media (min-width: 1200px) {
  .btn-group.btn-group-xs {
    font-size: 9.8px;
    font-size: 0.7rem;
  }
}
.btn-group.btn-group-sm {
  /* Size for Small Buttons */
  font-size: 11.05px;
  font-size: 0.85rem;
}
@media (min-width: 992px) {
  .btn-group.btn-group-sm {
    font-size: 11.05px;
    font-size: 0.85rem;
  }
}
@media (min-width: 1200px) {
  .btn-group.btn-group-sm {
    font-size: 11.9px;
    font-size: 0.85rem;
  }
}
.btn-group.btn-group-lg {
  /* Size for Large Buttons */
  font-size: 16.25px;
  font-size: 1.25rem;
}
@media (min-width: 992px) {
  .btn-group.btn-group-lg {
    font-size: 16.25px;
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .btn-group.btn-group-lg {
    font-size: 17.5px;
    font-size: 1.25rem;
  }
}

.btn-group-vertical {
  /* Vertical Button Group Styling */
  -webkit-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
          box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
  border-radius: 0;
}
.btn-group-vertical .btn {
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-top-width: 1px;
  border-top-style: solid;
  font-size: 1em;
}
.btn-group-vertical .btn:first-child {
  border-top-width: 0;
}
.btn-group-vertical .btn:first-child:not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical .btn-group, .btn-group-vertical .btn-group-vertical {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-group-vertical .btn-group .btn, .btn-group-vertical .btn-group-vertical .btn {
  border-top-width: 1px;
}
.btn-group-vertical .btn.btn-box {
  border-left-width: 1px;
}
.btn-group-vertical.btn-group-box {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-group, .btn-group-vertical {
  /* Style Active Dropdown Button */
}
.btn-group.open .btn.dropdown-toggle, .btn-group-vertical.open .btn.dropdown-toggle {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* * * * * * *
* Panels Styling
*
* *********[Panel Structure]************

1. .panel

    a. Panel Cover
        i. Panel Heading(.panel-heading)
            A. Heading 2 (h2)
                **** Panel Heading Goes Here *****
    ------------- OR --------------------
    a. Panel Heading (.panel-heading)
        i. Heading 2 (h2)
            **** Panel Heading Goes Here *****


    b. Panel Large Action (Optional) (.panel-highlight-action)
        i. Action Button (.btn)

    c. Panel Highlighted Image (Optional) (.panel-highlight-image)
        ii. Action Image (img)

    d. Panel Body (.panel-body)

        ****** Your Content Goes Here ********


    e. Panel Footer (.panel-footer)

* * * * * * */
.panel {
  font-size: 13px;
  font-size: 1rem;
  overflow: visible;
  -webkit-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
          box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
  border-radius: 2px;
  border: 0;
  background-color: #ffffff;
  color: #55616d;
  margin-bottom: 30px;
  position: relative;
}
@media (min-width: 992px) {
  .panel {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .panel {
    font-size: 14px;
    font-size: 1rem;
  }
}
.panel .panel.panel-default .panel-heading {
  background: transparent;
}
.panel .panel-heading {
  position: relative;
  border-radius: 2px 2px 0 0;
  padding: 1.5em 1.6em 0.7em;
  color: #55616d;
  font-size: 1em;
  background: transparent;
  border: 0;
}
.panel .panel-heading h2 {
  margin: 0;
  padding: 0;
  font-size: 1.404928em;
}
.panel .panel-heading h2.large {
  font-size: 1.57351936em;
}
.panel .panel-heading h3, .panel .panel-heading h4, .panel .panel-heading h5 {
  margin: 0;
}
.panel .panel-heading.no-padding-v {
  padding-top: 0;
  padding-bottom: 0;
}
.panel .panel-heading.no-padding {
  padding: 0;
}
.panel .panel-heading.no-padding-h {
  padding-left: 0;
  padding-right: 0;
}
.panel .panel-cover {
  /* Tall Cover background color or image for your panels */
  position: relative;
  background-color: #778899;
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 2px 2px 0 0;
  height: 15em;
}
.panel .panel-cover .panel-heading {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  bottom: 0;
  color: white;
}
.panel .panel-cover .panel-heading.panel-heading-bg {
  background: rgba(0, 0, 0, 0.5);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background: -o-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}
.panel .panel-cover.panel-cover-tall {
  height: 20em;
}
.panel .subtext {
  margin-top: 0.8em;
  display: block;
  font-size: 1em;
  color: #64707c;
}
.panel .panel-highlight-action {
  /* Large Highlighted Panel Button , Adjusted Between the panel-heading and panel-body */
  position: relative;
  overflow: visible;
  height: 1em;
  text-align: right;
  padding: 0em 5%;
}
.panel .panel-highlight-action .btn {
  position: relative;
  display: inline-block;
  bottom: 1.5em;
}
.panel .panel-highlight-image {
  /* Large Highlighted Panel Image */
  position: relative;
  overflow: visible;
  height: 3em;
  text-align: center;
  padding: 0em 3em;
}
.panel .panel-highlight-image img {
  -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  position: relative;
  display: inline-block;
  bottom: 7em;
  margin: auto;
}
.panel .collapsed-only {
  display: none;
}
.panel .panel-image {
  width: 100%;
}
.panel .panel-footer {
  padding: 1em 1.6em 1em;
  background-color: #f4f6f8;
  border-top: 1px solid #eeeff1;
  position: relative;
}
.panel .panel-footer .panel-actions {
  right: 1.6em;
  top: 0.7em;
}
.panel .panel-footer .panel-actions li a:hover, .panel .panel-footer .panel-actions li a:active, .panel .panel-footer .panel-actions li a:focus {
  background-color: #e1e4e7;
}
.panel .panel-actions {
  /* List of Panel Actions adjusted to top right corner of panel */
  display: block;
  position: absolute;
  right: 1em;
  top: 1.2em;
  margin: 0;
  padding: 0;
}
.panel .panel-actions li {
  display: block;
  float: right;
  margin: 0;
  padding: 0;
}
.panel .panel-actions li a {
  color: inherit;
  font-size: 1.5em;
  display: inline-block;
  text-align: center;
  width: 1.4em;
  height: 1.4em;
  border-radius: 50%;
  color: #78828c;
}
.panel .panel-actions li a i {
  font-size: 0.9em;
}
.panel .panel-actions li a:hover, .panel .panel-actions li a:active, .panel .panel-actions li a:focus {
  background-color: #eee;
  color: #777;
  outline: 0;
}
.panel .panel-actions li a .mdi::before {
  bottom: 0.17em;
  font-size: 1em;
}
.panel .panel-actions li a.panel-action-grey {
  background-color: #eee;
}
.panel .panel-actions li a.panel-action-grey:hover {
  background-color: #ddd;
  -webkit-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
          box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
}
.panel .panel-body {
  padding: 1.4em 1.8em 1.4em;
}
.panel .panel-body.no-padding-v {
  padding-top: 0em;
  padding-bottom: 0;
}
.panel .panel-body.no-padding {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0em;
  padding-bottom: 0;
}
.panel .panel-body.no-padding-h {
  padding-left: 0;
  padding-right: 0;
}
.panel .btn-round {
  margin: 0em 0.5em 0;
}
.panel.panel-fullscreen {
  /* Styling for when panel goes full screen */
  position: fixed;
  border: none !important;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
  z-index: 12;
  height: 100%;
}
.panel.panel-fullscreen .panel-heading, .panel.panel-fullscreen .panel-body, .panel.panel-fullscreen .panel-footer {
  font-size: 1.2em;
}
.panel.panel-fullscreen .panel-highlight-action {
  padding: 0em 5%;
}
.panel.panel-fullscreen .panel-cover {
  height: 20em;
}
.panel.panel-fullscreen .panel-cover.panel-cover-tall {
  height: 30em;
}
.panel.panel-fullscreen .panel-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.panel.panel-collapsed {
  /* Styling for when panel is collapsed */
}
.panel.panel-collapsed .open-only {
  display: none;
}
.panel.panel-collapsed .collapsed-only {
  display: inline;
}
.panel.panel-collapsed .panel-body {
  padding-top: 0;
  padding-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 0;
  overflow-y: hidden;
}
.panel.panel-collapsed .panel-heading {
  padding: 1.5em 1.6em 1.5em;
}
.panel.panel-raised {
  /* A raised panel has an item inside it that is raised above its height */
  margin-top: 20px;
  overflow: visible;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.panel.panel-raised .panel-item-raised {
  margin: 0 15px 0;
  border-radius: 4px;
  position: relative;
  margin-top: -20px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  position: relative;
  margin-bottom: 15px;
}
.panel.panel-raised .panel-item-raised.panel-raised-narrow {
  margin-left: 25px;
  margin-right: 25px;
}
.panel.panel-primary {
  /* Panel with Primary Color */
}
.panel.panel-primary .panel-cover {
  background: #7259EF;
  background-size: cover;
  background-position: center;
}
.panel.panel-primary .panel-cover .panel-heading {
  background: none;
  color: white;
}
.panel.panel-primary .panel-heading {
  background: #fe0000;
  color: white;
  padding: 1.5em 1.6em 1.5em;
}
.panel.panel-primary .panel-heading .project {
  background: #fe0000;
  color: white;
  padding: 1.5em 1.6em 1.5em;
}
.panel.panel-primary .panel-heading .subtext {
  color: #eee;
}
.panel.panel-primary .panel-heading .panel-actions li a {
  color: white;
}
.panel.panel-primary .panel-heading .panel-actions li a:hover, .panel.panel-primary .panel-heading .panel-actions li a:active, .panel.panel-primary .panel-heading .panel-actions li a:focus {
  background-color: #A40104;
  color: white;
}
.panel.panel-primary .panel-body {
  padding: 1.5em 1.6em;
}
.panel.panel-success {
  /* Panel with Success Color */
}
.panel.panel-success .panel-cover {
  background: #26c1b2;
  background-size: cover;
  background-position: center;
}
.panel.panel-success .panel-cover .panel-heading {
  background: none;
  color: white;
}
.panel.panel-success .panel-heading {
  background: #26c1b2;
  color: white;
  padding: 1.5em 1.6em 1.5em;
}
.panel.panel-success .panel-heading .subtext {
  color: #eee;
}
.panel.panel-success .panel-heading .panel-actions li a {
  color: white;
}
.panel.panel-success .panel-heading .panel-actions li a:hover, .panel.panel-success .panel-heading .panel-actions li a:active, .panel.panel-success .panel-heading .panel-actions li a:focus {
  background-color: #29d2c2;
  color: white;
}
.panel.panel-success .panel-body {
  padding: 1.5em 1.6em;
}
.panel.panel-warning {
  /* Panel with Warning Color */
}
.panel.panel-warning .panel-cover {
  background: #FFB12B;
  background-size: cover;
  background-position: center;
}
.panel.panel-warning .panel-cover .panel-heading {
  background: none;
  color: white;
}
.panel.panel-warning .panel-heading {
  background: #FFB12B;
  color: white;
  padding: 1.5em 1.6em 1.5em;
}
.panel.panel-warning .panel-heading .subtext {
  color: #eee;
}
.panel.panel-warning .panel-heading .panel-actions li a {
  color: white;
}
.panel.panel-warning .panel-heading .panel-actions li a:hover, .panel.panel-warning .panel-heading .panel-actions li a:active, .panel.panel-warning .panel-heading .panel-actions li a:focus {
  background-color: #ffba45;
  color: white;
}
.panel.panel-warning .panel-body {
  padding: 1.5em 1.6em;
}
.panel.panel-danger {
  /* Panel with Danger Color */
}
.panel.panel-danger .panel-cover {
  background: #FC5F7C;
  background-size: cover;
  background-position: center;
}
.panel.panel-danger .panel-cover .panel-heading {
  background: none;
  color: white;
}
.panel.panel-danger .panel-heading {
  background: #FC5F7C;
  color: white;
  padding: 1.5em 1.6em 1.5em;
}
.panel.panel-danger .panel-heading .subtext {
  color: #eee;
}
.panel.panel-danger .panel-heading .panel-actions li a {
  color: white;
}
.panel.panel-danger .panel-heading .panel-actions li a:hover, .panel.panel-danger .panel-heading .panel-actions li a:active, .panel.panel-danger .panel-heading .panel-actions li a:focus {
  background-color: #fd7d95;
  color: white;
}
.panel.panel-danger .panel-body {
  padding: 1.5em 1.6em;
}
.panel.panel-info {
  /* Panel with Info Color */
}
.panel.panel-info .panel-cover {
  background: #1E88E5;
  background-size: cover;
  background-position: center;
}
.panel.panel-info .panel-cover .panel-heading {
  background: none;
  color: white;
}
.panel.panel-info .panel-heading {
  background: #1E88E5;
  color: white;
  padding: 1.5em 1.6em 1.5em;
}
.panel.panel-info .panel-heading .subtext {
  color: #eee;
}
.panel.panel-info .panel-heading .panel-actions li a {
  color: white;
}
.panel.panel-info .panel-heading .panel-actions li a:hover, .panel.panel-info .panel-heading .panel-actions li a:active, .panel.panel-info .panel-heading .panel-actions li a:focus {
  background-color: #3594e8;
  color: white;
}
.panel.panel-info .panel-body {
  padding: 1.5em 1.6em;
}
.panel.panel-grey .panel-heading, .panel.panel-gray .panel-heading {
  background: #f7f7f7;
  color: #55616d;
  border-bottom-color: #ddd;
  padding: 1.5em 1.7em 1.5em;
}

/* * * * * * * * * *
* Navigation Styling
*
* tabs, navs, navbars
*
* * * * * * * * * */
.tab-pane {
  font-size: 13px;
  font-size: 1rem;
  padding: 1.2em;
}
@media (min-width: 992px) {
  .tab-pane {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .tab-pane {
    font-size: 14px;
    font-size: 1rem;
  }
}

.nav-tabs {
  font-size: 13px;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .nav-tabs {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .nav-tabs {
    font-size: 14px;
    font-size: 1rem;
  }
}
.nav-tabs li a {
  font-weight: 600;
  color: #444;
  padding: 0.6em 1em;
  font-size: 1em;
  border-radius: 0;
  margin-right: 0;
}
.nav-tabs li a:hover {
  background-color: #f5f5f5;
}

.nav-tabs.nav-tabs-material {
  font-size: 13px;
  font-size: 1rem;
  border-bottom: 0;
  border-bottom: 1px solid #ddd;
}
@media (min-width: 992px) {
  .nav-tabs.nav-tabs-material {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .nav-tabs.nav-tabs-material {
    font-size: 14px;
    font-size: 1rem;
  }
}
.nav-tabs.nav-tabs-material li {
  border-bottom: 1px solid #ddd;
}
.nav-tabs.nav-tabs-material li a {
  font-weight: 600;
  color: #444;
  padding: 0.6em 1em;
  font-size: 1em;
  border-radius: 0;
  margin-right: 0;
  border: 0;
  border-bottom: 1px solid transparent;
}
.nav-tabs.nav-tabs-material li a:hover {
  background: none;
}
.nav-tabs.nav-tabs-material li.active {
  border-bottom: 1px solid #7259EF;
}
.nav-tabs.nav-tabs-material li.active a {
  border: 0;
  border-bottom: 1px solid #7259EF;
}

.nav-pills {
  font-size: 13px;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .nav-pills {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .nav-pills {
    font-size: 14px;
    font-size: 1rem;
  }
}
.nav-pills li a {
  font-weight: 600;
  color: #444;
  padding: 0.6em 1em;
  font-size: 1em;
  border-radius: 0;
  margin-right: 0;
}
.nav-pills li a:hover {
  background-color: #f5f5f5;
}
.nav-pills li.active a {
  background-color: #7259EF;
}
.nav-pills li.active a:hover, .nav-pills li.active a:focus, .nav-pills li.active a:active {
  background-color: #7259EF;
}

.main-nav {
  font-family: "Rubik";
  font-size: 1em;
  display: block;
  margin: 0;
  padding: 0;
}
.main-nav > li > a {
  width: 17.5rem;
  overflow: hidden;
}
.main-nav li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: block;
}
.main-nav li a {
  padding: 1.1em 1.2em 1.1em 0;
  white-space: nowrap;
  display: block;
  position: relative;
}
.main-nav li a:hover, .main-nav li a:focus, .main-nav li a:active {
  text-decoration: none;
}
.main-nav li a i {
  font-size: 1.0em;
  display: inline-block;
  margin: 0em 1em 0em 1.2em;
  padding: 0em 0em 0.1em 0em;
  display: inline-block;
  text-align: center;
}
.main-nav li a .label {
  float: right;
}
.main-nav li.main-nav-label {
  border-top: 1px solid #eee;
  margin-top: 0.5em;
  opacity: 1;
  -webkit-transition: 1s all;
  -o-transition: 1s all;
  transition: 1s all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.main-nav li.main-nav-label span {
  font-size: 0.9em;
  text-transform: uppercase;
  font-weight: 400;
  color: #888;
  padding: 1.6em 1.7em 1.2em;
  display: block;
  white-space: nowrap;
}
.main-nav li.main-nav-label:first-child {
  border-top: 0;
}
.main-nav ul {
  margin: 0;
  padding: 0;
}
.main-nav ul li a {
  padding: 0.9em 1.3em 0.8em 4em;
}
.main-nav ul li:last-child a {
  padding-bottom: 1em;
}
.main-nav .menu-caret {
  display: block;
  position: absolute;
  right: 0;
  width: 3em;
  text-align: center;
  line-height: inherit;
  font-size: 1.1em;
}
.main-nav .menu-caret::before {
  content: "\F142";
  font-family: "Material Design Icons";
  font-size: 1.3em;
  position: relative;
  bottom: 0.15em;
}
.main-nav li.active > a > .menu-caret::before {
  content: "\F140";
  font-family: "Material Design Icons";
  font-size: 1.3em;
}

.horizontal-nav {
  font-family: "Rubik";
  display: block;
  margin: 0;
  padding: 0;
  border-top: 1px solid #eee;
}
.horizontal-nav:before, .horizontal-nav:after {
  content: " ";
  display: table;
}
.horizontal-nav:after {
  clear: both;
}
.horizontal-nav li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-block;
  width: 33%;
  float: left;
}
.horizontal-nav li a {
  padding: 0.5em 0.2em 0.5em 0.2em;
  display: block;
  color: #333;
  text-align: center;
  font-size: 1.3em;
}
.horizontal-nav li a:hover, .horizontal-nav li a:focus, .horizontal-nav li a:active {
  text-decoration: none;
}

/* * * * * * * * * *
* Navbar, Main Topbar Styling
*
* .navbar
*
********** [Navbar Structure] ************
1. .navbar

    a. Navbar Header (.navbar-header)
        i. Brand Name (.navbar-brand)

    b. Navbar Body (.navbar-body)

        @. Navbar Nav (.navbar-nav)
        @. Navbar Form (.navbar-form)
        @. Button (.navbar-btn)

    *** [Utility Classes] ******

        @. .navbar-left
        @. .navbar-right

* * * * * * */
.navbar {
  font-size: 13px;
  font-size: 1rem;
  z-index: 11;
  min-height: 4.7rem;
  padding: 0em 30px 0em 0px;
  border-radius: 0;
  border-width: 0px;
  -webkit-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.12);
  margin-bottom: 0;
  background: #fff;
  color: #55616d;
  border-color: #fff;
  border-bottom-color: #fff;
}
@media (min-width: 992px) {
  .navbar {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .navbar {
    font-size: 14px;
    font-size: 1rem;
  }
}
.navbar .navbar-header {
  background-size: contain;
  background-repeat: no-repeat;
  width: 10em;
}
@media (min-width: 768px) {
  .navbar .navbar-header {
    width: 17.5rem;
  }
}
.navbar .navbar-brand {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 1em;
  height: 4.7rem;
  line-height: 4.7rem;
  padding: 0em 0.5em;
  vertical-align: middle;
  position: relative;
  color: inherit;
  vertical-align: middle;
}
.navbar .navbar-brand .navbar-brand-text {
  font-size: 1.4em;
  display: none;
}
@media (min-width: 768px) {
  .navbar .navbar-brand .navbar-brand-text {
    display: inline;
  }
}
.navbar .navbar-brand .mdi {
  font-size: 1.8em;
  margin-right: 0.3em;
}
.navbar .navbar-brand .mdi::before {
  bottom: 2px;
}
.navbar .navbar-body {
  margin-left: 10em;
}
@media (min-width: 768px) {
  .navbar .navbar-body {
    margin-left: 17.5rem;
  }
}
.navbar .navbar-nav > li > a, .navbar .navbar-form, .navbar .navbar-text {
  font-size: 1em;
  line-height: 1.5;
  height: 4.7rem;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.navbar .navbar-nav > li > a {
  padding-left: 0.75em;
  padding-right: 0.75em;
  overflow: hidden;
  margin-right: 0.25em;
}
.navbar .navbar-nav > li > a i {
  font-size: 1em;
}
.navbar .navbar-nav > li > a.icon-right i {
  margin-left: 0.4em;
  font-size: 1em;
}
.navbar .navbar-nav li .dropdown-menu {
  position: fixed;
  left: 5%;
  top: 4.7rem;
  width: 90%;
  -webkit-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.12);
}
@media (min-width: 768px) {
  .navbar .navbar-nav li .dropdown-menu {
    position: absolute;
    right: 0;
    left: auto;
    top: auto;
    width: 24rem;
  }
}
.navbar .navbar-btn {
  font-size: 1em;
  height: 2.5rem;
  line-height: 1.5;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  margin-top: 1.1rem;
  margin-bottom: 1.1rem;
}
.navbar .navbar-btn .mdi {
  line-height: inherit;
  font-size: 1em;
}
.navbar .navbar-toggle {
  height: 2.5em;
  border-radius: 0;
  margin-top: 1.1rem;
  margin-bottom: 1.1rem;
}
.navbar .btn-transparent-light {
  float: left;
  margin-right: 0em;
  margin-left: 0.5em;
}
.navbar .navbar-form {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}
.navbar .navbar-form.navbar-form-full {
  padding-top: 0.8863636364rem;
  padding-bottom: 0.8863636364rem;
  padding-left: 30px;
}
.navbar .navbar-input-group {
  display: inline-block;
  font-size: 1.1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 99%;
  position: relative;
}
.navbar .navbar-input-group .form-control {
  width: 100%;
  border: none;
  padding-right: 4em;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .navbar-input-group .input-group-btn .btn {
  z-index: 1000;
  color: #888;
  background: none;
  border: none;
  width: 3.5em;
  position: absolute;
  right: 0;
  margin-left: -3em;
  padding: 0.4em;
}
.navbar + .sidebar.sidebar-navbar-theme .main-nav > li > a:hover, .navbar + .sidebar.sidebar-navbar-theme .main-nav > li > a:focus, .navbar + .sidebar.sidebar-navbar-theme .main-nav > li > a:active {
  border-left: 3px solid #fff;
}
.navbar + .sidebar.sidebar-navbar-theme .main-nav > li.active > a {
  border-left: 3px solid #fff;
}
.navbar + .sidebar.sidebar-navbar-theme .main-nav > li ul > li > a {
  border-left: 3px solid #fff;
}
.navbar + .sidebar.sidebar-navbar-theme .main-nav > li ul > li.active > a {
  color: #fff;
}
.navbar .btn-transparent-light {
  color: #55616d;
}
.navbar .btn-transparent-light:hover, .navbar .btn-transparent-light:active, .navbar .btn-transparent-light:focus {
  background-color: #f4f4f4;
  color: #55616d;
}
.navbar .navbar-toggle {
  color: #55616d;
  border-color: #55616d;
}
.navbar .navbar-toggle .icon-bar {
  background-color: #55616d;
}
.navbar .navbar-input-group .form-control {
  background-color: #f4f4f4;
  color: #55616d;
  border: 1px solid #f4f4f4;
}
.navbar .navbar-input-group .form-control::-webkit-input-placeholder {
  color: #eee;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.navbar .navbar-input-group .form-control:-ms-input-placeholder {
  color: #eee;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.navbar .navbar-input-group .form-control::placeholder {
  color: #eee;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.navbar .navbar-input-group .form-control:focus {
  background-color: #fff;
  color: #333;
}
.navbar .navbar-input-group .form-control:focus::-webkit-input-placeholder {
  color: #888;
}
.navbar .navbar-input-group .form-control:focus:-ms-input-placeholder {
  color: #888;
}
.navbar .navbar-input-group .form-control:focus::placeholder {
  color: #888;
}
.navbar .navbar-input-group .input-group-btn .btn {
  color: #55616d;
}
.navbar .navbar-always-float.navbar-right {
  float: right;
}
.navbar .navbar-always-float.navbar-left {
  float: left;
}
.navbar .navbar-nav {
  margin: 0;
}
.navbar .navbar-nav.navbar-always-float > li {
  float: left;
}
.navbar .navbar-nav > li > a {
  color: #55616d;
}
.navbar .navbar-nav > li > a:hover, .navbar .navbar-nav > li > a:active, .navbar .navbar-nav > li > a:focus {
  background-color: #f4f4f4;
  color: #55616d;
  outline: none;
}
.navbar .navbar-nav > li.active > a, .navbar .navbar-nav > li.active > a:focus, .navbar .navbar-nav > li.active > a:active, .navbar .navbar-nav > li.open > a, .navbar .navbar-nav > li.open > a:focus, .navbar .navbar-nav > li.open > a:active {
  background-color: #f4f4f4;
  color: #55616d;
}
.navbar.navbar-inverse {
  background: #282F39;
  color: #fff;
  border-color: #282F39;
  border-bottom-color: #282F39;
}
.navbar.navbar-inverse + .sidebar.sidebar-navbar-theme .main-nav > li > a:hover, .navbar.navbar-inverse + .sidebar.sidebar-navbar-theme .main-nav > li > a:focus, .navbar.navbar-inverse + .sidebar.sidebar-navbar-theme .main-nav > li > a:active {
  border-left: 3px solid #282F39;
}
.navbar.navbar-inverse + .sidebar.sidebar-navbar-theme .main-nav > li.active > a {
  border-left: 3px solid #282F39;
}
.navbar.navbar-inverse + .sidebar.sidebar-navbar-theme .main-nav > li ul > li > a {
  border-left: 3px solid #282F39;
}
.navbar.navbar-inverse + .sidebar.sidebar-navbar-theme .main-nav > li ul > li.active > a {
  color: #282F39;
}
.navbar.navbar-inverse .btn-transparent-light {
  color: #fff;
}
.navbar.navbar-inverse .btn-transparent-light:hover, .navbar.navbar-inverse .btn-transparent-light:active, .navbar.navbar-inverse .btn-transparent-light:focus {
  background-color: #3d4857;
  color: #fff;
}
.navbar.navbar-inverse .navbar-toggle {
  color: #fff;
  border-color: #fff;
}
.navbar.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar.navbar-inverse .navbar-input-group .form-control {
  background-color: #3d4857;
  color: #fff;
  border: 1px solid #3d4857;
}
.navbar.navbar-inverse .navbar-input-group .form-control::-webkit-input-placeholder {
  color: #eee;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.navbar.navbar-inverse .navbar-input-group .form-control:-ms-input-placeholder {
  color: #eee;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.navbar.navbar-inverse .navbar-input-group .form-control::placeholder {
  color: #eee;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.navbar.navbar-inverse .navbar-input-group .form-control:focus {
  background-color: #fff;
  color: #333;
}
.navbar.navbar-inverse .navbar-input-group .form-control:focus::-webkit-input-placeholder {
  color: #888;
}
.navbar.navbar-inverse .navbar-input-group .form-control:focus:-ms-input-placeholder {
  color: #888;
}
.navbar.navbar-inverse .navbar-input-group .form-control:focus::placeholder {
  color: #888;
}
.navbar.navbar-inverse .navbar-input-group .input-group-btn .btn {
  color: #fff;
}
.navbar.navbar-inverse .navbar-always-float.navbar-right {
  float: right;
}
.navbar.navbar-inverse .navbar-always-float.navbar-left {
  float: left;
}
.navbar.navbar-inverse .navbar-nav {
  margin: 0;
}
.navbar.navbar-inverse .navbar-nav.navbar-always-float > li {
  float: left;
}
.navbar.navbar-inverse .navbar-nav > li > a {
  color: #fff;
}
.navbar.navbar-inverse .navbar-nav > li > a:hover, .navbar.navbar-inverse .navbar-nav > li > a:active, .navbar.navbar-inverse .navbar-nav > li > a:focus {
  background-color: #3d4857;
  color: #fff;
  outline: none;
}
.navbar.navbar-inverse .navbar-nav > li.active > a, .navbar.navbar-inverse .navbar-nav > li.active > a:focus, .navbar.navbar-inverse .navbar-nav > li.active > a:active, .navbar.navbar-inverse .navbar-nav > li.open > a, .navbar.navbar-inverse .navbar-nav > li.open > a:focus, .navbar.navbar-inverse .navbar-nav > li.open > a:active {
  background-color: #3d4857;
  color: #fff;
}
.navbar.navbar-blue {
  background: #1e1e1e;
  color: #fff;
  border-color: #1a86e4;
  border-bottom-color: #1a86e4;
}
.navbar.navbar-blue + .sidebar.sidebar-navbar-theme .main-nav > li > a:hover, .navbar.navbar-blue + .sidebar.sidebar-navbar-theme .main-nav > li > a:focus, .navbar.navbar-blue + .sidebar.sidebar-navbar-theme .main-nav > li > a:active {
  border-left: 3px solid #1e1e1e;
}
.navbar.navbar-blue + .sidebar.sidebar-navbar-theme .main-nav > li.active > a {
  border-left: 3px solid #1e1e1e;
}
.navbar.navbar-blue + .sidebar.sidebar-navbar-theme .main-nav > li ul > li > a {
  border-left: 3px solid #1e1e1e;
}
.navbar.navbar-blue + .sidebar.sidebar-navbar-theme .main-nav > li ul > li.active > a {
  color: #1e1e1e;
}
.navbar.navbar-blue .btn-transparent-light {
  color: #fff;
}
.navbar.navbar-blue .btn-transparent-light:hover, .navbar.navbar-blue .btn-transparent-light:active, .navbar.navbar-blue .btn-transparent-light:focus {
  background-color: #3e99e9;
  color: #fff;
}
.navbar.navbar-blue .navbar-toggle {
  color: #fff;
  border-color: #fff;
}
.navbar.navbar-blue .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar.navbar-blue .navbar-input-group .form-control {
  background-color: #3e99e9;
  color: #fff;
  border: 1px solid #3e99e9;
}
.navbar.navbar-blue .navbar-input-group .form-control::-webkit-input-placeholder {
  color: #eee;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.navbar.navbar-blue .navbar-input-group .form-control:-ms-input-placeholder {
  color: #eee;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.navbar.navbar-blue .navbar-input-group .form-control::placeholder {
  color: #eee;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.navbar.navbar-blue .navbar-input-group .form-control:focus {
  background-color: #fff;
  color: #333;
}
.navbar.navbar-blue .navbar-input-group .form-control:focus::-webkit-input-placeholder {
  color: #888;
}
.navbar.navbar-blue .navbar-input-group .form-control:focus:-ms-input-placeholder {
  color: #888;
}
.navbar.navbar-blue .navbar-input-group .form-control:focus::placeholder {
  color: #888;
}
.navbar.navbar-blue .navbar-input-group .input-group-btn .btn {
  color: #fff;
}
.navbar.navbar-blue .navbar-always-float.navbar-right {
  float: right;
}
.navbar.navbar-blue .navbar-always-float.navbar-left {
  float: left;
}
.navbar.navbar-blue .navbar-nav {
  margin: 0;
}
.navbar.navbar-blue .navbar-nav.navbar-always-float > li {
  float: left;
}
.navbar.navbar-blue .navbar-nav > li > a {
  color: #fff;
}
.navbar.navbar-blue .navbar-nav > li > a:hover, .navbar.navbar-blue .navbar-nav > li > a:active, .navbar.navbar-blue .navbar-nav > li > a:focus {
  background-color: #3e99e9;
  color: #fff;
  outline: none;
}
.navbar.navbar-blue .navbar-nav > li.active > a, .navbar.navbar-blue .navbar-nav > li.active > a:focus, .navbar.navbar-blue .navbar-nav > li.active > a:active, .navbar.navbar-blue .navbar-nav > li.open > a, .navbar.navbar-blue .navbar-nav > li.open > a:focus, .navbar.navbar-blue .navbar-nav > li.open > a:active {
  background-color: #3e99e9;
  color: #fff;
}
.navbar.navbar-teal {
  background: #26c1b2;
  color: #fff;
  border-color: #23b0a2;
  border-bottom-color: #23b0a2;
}
.navbar.navbar-teal + .sidebar.sidebar-navbar-theme .main-nav > li > a:hover, .navbar.navbar-teal + .sidebar.sidebar-navbar-theme .main-nav > li > a:focus, .navbar.navbar-teal + .sidebar.sidebar-navbar-theme .main-nav > li > a:active {
  border-left: 3px solid #26c1b2;
}
.navbar.navbar-teal + .sidebar.sidebar-navbar-theme .main-nav > li.active > a {
  border-left: 3px solid #26c1b2;
}
.navbar.navbar-teal + .sidebar.sidebar-navbar-theme .main-nav > li ul > li > a {
  border-left: 3px solid #26c1b2;
}
.navbar.navbar-teal + .sidebar.sidebar-navbar-theme .main-nav > li ul > li.active > a {
  color: #26c1b2;
}
.navbar.navbar-teal .btn-transparent-light {
  color: #fff;
}
.navbar.navbar-teal .btn-transparent-light:hover, .navbar.navbar-teal .btn-transparent-light:active, .navbar.navbar-teal .btn-transparent-light:focus {
  background-color: #28cab9;
  color: #fff;
}
.navbar.navbar-teal .navbar-toggle {
  color: #fff;
  border-color: #fff;
}
.navbar.navbar-teal .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar.navbar-teal .navbar-input-group .form-control {
  background-color: #28cab9;
  color: #fff;
  border: 1px solid #28cab9;
}
.navbar.navbar-teal .navbar-input-group .form-control::-webkit-input-placeholder {
  color: #eee;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.navbar.navbar-teal .navbar-input-group .form-control:-ms-input-placeholder {
  color: #eee;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.navbar.navbar-teal .navbar-input-group .form-control::placeholder {
  color: #eee;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.navbar.navbar-teal .navbar-input-group .form-control:focus {
  background-color: #fff;
  color: #333;
}
.navbar.navbar-teal .navbar-input-group .form-control:focus::-webkit-input-placeholder {
  color: #888;
}
.navbar.navbar-teal .navbar-input-group .form-control:focus:-ms-input-placeholder {
  color: #888;
}
.navbar.navbar-teal .navbar-input-group .form-control:focus::placeholder {
  color: #888;
}
.navbar.navbar-teal .navbar-input-group .input-group-btn .btn {
  color: #fff;
}
.navbar.navbar-teal .navbar-always-float.navbar-right {
  float: right;
}
.navbar.navbar-teal .navbar-always-float.navbar-left {
  float: left;
}
.navbar.navbar-teal .navbar-nav {
  margin: 0;
}
.navbar.navbar-teal .navbar-nav.navbar-always-float > li {
  float: left;
}
.navbar.navbar-teal .navbar-nav > li > a {
  color: #fff;
}
.navbar.navbar-teal .navbar-nav > li > a:hover, .navbar.navbar-teal .navbar-nav > li > a:active, .navbar.navbar-teal .navbar-nav > li > a:focus {
  background-color: #28cab9;
  color: #fff;
  outline: none;
}
.navbar.navbar-teal .navbar-nav > li.active > a, .navbar.navbar-teal .navbar-nav > li.active > a:focus, .navbar.navbar-teal .navbar-nav > li.active > a:active, .navbar.navbar-teal .navbar-nav > li.open > a, .navbar.navbar-teal .navbar-nav > li.open > a:focus, .navbar.navbar-teal .navbar-nav > li.open > a:active {
  background-color: #28cab9;
  color: #fff;
}
.navbar.navbar-primary {
  background: #7359ee;
  color: #fff;
  border-color: #7359ee;
  border-bottom-color: #7359ee;
}
.navbar.navbar-primary + .sidebar.sidebar-navbar-theme .main-nav > li > a:hover, .navbar.navbar-primary + .sidebar.sidebar-navbar-theme .main-nav > li > a:focus, .navbar.navbar-primary + .sidebar.sidebar-navbar-theme .main-nav > li > a:active {
  border-left: 3px solid #7359ee;
}
.navbar.navbar-primary + .sidebar.sidebar-navbar-theme .main-nav > li.active > a {
  border-left: 3px solid #7359ee;
}
.navbar.navbar-primary + .sidebar.sidebar-navbar-theme .main-nav > li ul > li > a {
  border-left: 3px solid #7359ee;
}
.navbar.navbar-primary + .sidebar.sidebar-navbar-theme .main-nav > li ul > li.active > a {
  color: #7359ee;
}
.navbar.navbar-primary .btn-transparent-light {
  color: #fff;
}
.navbar.navbar-primary .btn-transparent-light:hover, .navbar.navbar-primary .btn-transparent-light:active, .navbar.navbar-primary .btn-transparent-light:focus {
  background-color: #7b62ef;
  color: #fff;
}
.navbar.navbar-primary .navbar-toggle {
  color: #fff;
  border-color: #fff;
}
.navbar.navbar-primary .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar.navbar-primary .navbar-input-group .form-control {
  background-color: #7b62ef;
  color: #fff;
  border: 1px solid #7b62ef;
}
.navbar.navbar-primary .navbar-input-group .form-control::-webkit-input-placeholder {
  color: #eee;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.navbar.navbar-primary .navbar-input-group .form-control:-ms-input-placeholder {
  color: #eee;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.navbar.navbar-primary .navbar-input-group .form-control::placeholder {
  color: #eee;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.navbar.navbar-primary .navbar-input-group .form-control:focus {
  background-color: #fff;
  color: #333;
}
.navbar.navbar-primary .navbar-input-group .form-control:focus::-webkit-input-placeholder {
  color: #888;
}
.navbar.navbar-primary .navbar-input-group .form-control:focus:-ms-input-placeholder {
  color: #888;
}
.navbar.navbar-primary .navbar-input-group .form-control:focus::placeholder {
  color: #888;
}
.navbar.navbar-primary .navbar-input-group .input-group-btn .btn {
  color: #fff;
}
.navbar.navbar-primary .navbar-always-float.navbar-right {
  float: right;
}
.navbar.navbar-primary .navbar-always-float.navbar-left {
  float: left;
}
.navbar.navbar-primary .navbar-nav {
  margin: 0;
}
.navbar.navbar-primary .navbar-nav.navbar-always-float > li {
  float: left;
}
.navbar.navbar-primary .navbar-nav > li > a {
  color: #fff;
}
.navbar.navbar-primary .navbar-nav > li > a:hover, .navbar.navbar-primary .navbar-nav > li > a:active, .navbar.navbar-primary .navbar-nav > li > a:focus {
  background-color: #7b62ef;
  color: #fff;
  outline: none;
}
.navbar.navbar-primary .navbar-nav > li.active > a, .navbar.navbar-primary .navbar-nav > li.active > a:focus, .navbar.navbar-primary .navbar-nav > li.active > a:active, .navbar.navbar-primary .navbar-nav > li.open > a, .navbar.navbar-primary .navbar-nav > li.open > a:focus, .navbar.navbar-primary .navbar-nav > li.open > a:active {
  background-color: #7b62ef;
  color: #fff;
}

/* * * * * * * * * *
* Main Naviagation and Sidebar Styling
*
* sidebar
*
********** [Sidebar Structure] ************
1. .sidebar

    a. Scrollable Body (.sidebar-body)

        i. Sidebar Cover (.sidebar-cover)
            A. Sidebar User (.sidebar-user)

        ii. Main Navigation (.main-nav-container)

    *Wrap sidebar-body around sidebar-scrollable-content to make it custom scroll properly*

* * * * * * */
.sidebar {
  font-size: 13px;
  font-size: 1rem;
  z-index: 9;
  position: absolute;
  top: 0;
  padding-top: 4.7rem;
  width: 17.5rem;
  height: 100%;
  min-height: 100vh;
  margin-left: -17.5rem;
  border-style: solid;
  border-width: 0px;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 1px -2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 1px -2px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s margin-left;
  -o-transition: 0.3s margin-left;
  transition: 0.3s margin-left;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #fdfdfd;
  border-color: #f5f5f5;
}
@media (min-width: 992px) {
  .sidebar {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .sidebar {
    font-size: 14px;
    font-size: 1rem;
  }
}
.sidebar.sidebar-fixed {
  position: fixed;
  top: 0;
  height: 100vh;
  padding-top: 4.7rem;
}
@media (min-width: 768px) {
  .sidebar {
    margin-left: 0;
  }
}
.sidebar.sidebar-right {
  -webkit-transition: 0.3s margin-right;
  -o-transition: 0.3s margin-right;
  transition: 0.3s margin-right;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar .sidebar-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 10;
  -webkit-box-shadow: -1px 0px 1px 0px rgba(0, 0, 0, 0.1);
          box-shadow: -1px 0px 1px 0px rgba(0, 0, 0, 0.1);
}
.sidebar .sidebar-cover {
  padding-top: 0em;
}
.sidebar .sidebar-cover .sidebar-user {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
  padding: 1.5em 0.9em 1.5em 1em;
  font-size: 1.05em;
  font-weight: 400;
  cursor: pointer;
}
.sidebar .sidebar-cover .sidebar-user:before, .sidebar .sidebar-cover .sidebar-user:after {
  content: " ";
  display: table;
}
.sidebar .sidebar-cover .sidebar-user:after {
  clear: both;
}
.sidebar .sidebar-cover .sidebar-user .sidebar-user-img {
  margin-bottom: 0em;
  float: left;
}
.sidebar .sidebar-cover .sidebar-user .sidebar-user-img img {
  width: 3.5em;
  height: 3.5em;
}
.sidebar .sidebar-cover .sidebar-user .sidebar-user-expand {
  margin-left: 0.5em;
  font-size: 1.1em;
}
.sidebar .sidebar-cover .sidebar-user .sidebar-user-name {
  padding-top: 0.2em;
  text-align: left;
  margin-left: 4.7em;
}
.sidebar .sidebar-cover .sidebar-user .sidebar-user-name .sidebar-user-email {
  display: block;
  margin-top: 0.5em;
  font-size: 0.8em;
}
.sidebar .sidebar-cover .sidebar-highlight {
  overflow: hidden;
}
.sidebar .sidebar-cover.sidebar-highlight-active .sidebar-highlight {
  max-height: 1000px;
}
.sidebar .sidebar-highlight {
  border-radius: 4px;
  position: relative;
  background: transparent;
}
.sidebar .sidebar-highlight .main-nav li a {
  padding: 0.7em 0em;
}
.sidebar .sidebar-body {
  padding-bottom: 11em;
  font-size: 1.05em;
}
.sidebar.sidebar-hidden {
  margin-left: -17.5rem;
}
.sidebar.sidebar-hidden.sidebar-right {
  margin-left: 0;
  margin-right: -17.5rem;
}
.sidebar.sidebar-hidden.sidebar-right.sidebar-visible {
  margin-left: 0;
  margin-right: 0;
}
.sidebar.sidebar-visible {
  margin-left: 0;
}
.sidebar .sidebar-cover {
  background: #fdfdfd;
  background-size: cover;
  color: #546270;
  border-bottom: 1px solid #f5f5f5;
}
.sidebar .sidebar-cover.sidebar-highlight-active {
  background-color: #f1f4f9;
}
.sidebar .sidebar-cover .sidebar-user:hover {
  background-color: #f1f4f9;
}
.sidebar .sidebar-cover .fa {
  font-size: 0.85em;
}
.sidebar .sidebar-footer {
  background-color: #fdfdfd;
}
.sidebar .sidebar-footer .horizontal-nav {
  border-top: 1px solid #f5f5f5;
}
.sidebar .horizontal-nav a {
  border-left: 3px solid transparent;
  color: #546474;
  font-weight: 400;
}
.sidebar .horizontal-nav a:hover, .sidebar .horizontal-nav a:focus, .sidebar .horizontal-nav a:active {
  font-weight: 400;
  outline: 0;
  color: #344454;
}
.sidebar .main-nav li a {
  color: #546474;
}
.sidebar .main-nav li.main-nav-label {
  border-color: #f5f5f5;
}
.sidebar .main-nav li.main-nav-label span {
  color: #8494A4;
}
.sidebar .main-nav > li > a {
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  -webkit-transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  -o-transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar .main-nav > li > a:hover, .sidebar .main-nav > li > a:focus, .sidebar .main-nav > li > a:active {
  font-weight: 400;
  outline: 0;
  background: #f1f4f9;
  color: #344454;
  border-left: 3px solid #1565C0;
}
.sidebar .main-nav > li.active > a {
  background: #f1f4f9;
  color: #344454;
  border-left: 3px solid #1565C0;
}
.sidebar .main-nav > li ul {
  background-color: #f1f4f9;
}
.sidebar .main-nav > li ul > li > a {
  border-left: 3px solid transparent;
  border-left: 3px solid #1565C0;
}
.sidebar .main-nav > li ul > li > a:hover, .sidebar .main-nav > li ul > li > a:focus, .sidebar .main-nav > li ul > li > a:active {
  color: #344454;
}
@media (min-width: 768px) {
  .sidebar.sidebar-mini .main-nav > li > a {
    background-color: #fdfdfd;
  }
  .sidebar.sidebar-mini .main-nav > li > a:hover, .sidebar.sidebar-mini .main-nav > li > a:focus, .sidebar.sidebar-mini .main-nav > li > a:active {
    background-color: #fdfdfd;
    border-left: 0 !important;
  }
  .sidebar.sidebar-mini .main-nav > li.active > a {
    color: #546474;
    background-color: #fdfdfd;
    border-left: 0 !important;
  }
  .sidebar.sidebar-mini .main-nav > li.active > a:hover, .sidebar.sidebar-mini .main-nav > li.active > a:focus, .sidebar.sidebar-mini .main-nav > li.active > a:active {
    color: #344454;
    background-color: #fdfdfd;
    border-left: 0 !important;
  }
  .sidebar.sidebar-mini .main-nav > li ul {
    background-color: #fdfdfd;
  }
  .sidebar.sidebar-mini .main-nav > li ul li > a {
    border-left: 0 !important;
  }
  .sidebar.sidebar-mini .main-nav > li ul li.active {
    background: none;
  }
  .sidebar.sidebar-mini .main-nav > li ul li.active a {
    color: #546474;
    background: none;
  }
  .sidebar.sidebar-mini .main-nav > li ul.open {
    background-color: #fdfdfd;
  }
}
.sidebar.sidebar-left {
  border-right-width: 0px;
  left: 0;
}
.sidebar.sidebar-right {
  border-left-width: 0px;
  right: 0;
}
.sidebar.sidebar-dark {
  background-color: #282f39;
  border-color: #2c343f;
}
.sidebar.sidebar-dark .sidebar-cover {
  background: rgba(30, 126, 239, 0);
  background-size: cover;
  color: #bac2cf;
  border-bottom: 1px solid #2c343f;
}
.sidebar.sidebar-dark .sidebar-cover.sidebar-highlight-active {
  background-color: #242a33;
}
.sidebar.sidebar-dark .sidebar-cover .sidebar-user:hover {
  background-color: #242a33;
}
.sidebar.sidebar-dark .sidebar-cover .fa {
  font-size: 0.85em;
}
.sidebar.sidebar-dark .sidebar-footer {
  background-color: #282f39;
}
.sidebar.sidebar-dark .sidebar-footer .horizontal-nav {
  border-top: 1px solid #2c343f;
}
.sidebar.sidebar-dark .horizontal-nav a {
  border-left: 3px solid transparent;
  color: #9da8b9;
  font-weight: 400;
}
.sidebar.sidebar-dark .horizontal-nav a:hover, .sidebar.sidebar-dark .horizontal-nav a:focus, .sidebar.sidebar-dark .horizontal-nav a:active {
  font-weight: 400;
  outline: 0;
  color: #e7eaee;
}
.sidebar.sidebar-dark .main-nav li a {
  color: #9da8b9;
}
.sidebar.sidebar-dark .main-nav li.main-nav-label {
  border-color: #2c343f;
}
.sidebar.sidebar-dark .main-nav li.main-nav-label span {
  color: #7f8ea4;
}
.sidebar.sidebar-dark .main-nav > li > a {
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  -webkit-transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  -o-transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar.sidebar-dark .main-nav > li > a:hover, .sidebar.sidebar-dark .main-nav > li > a:focus, .sidebar.sidebar-dark .main-nav > li > a:active {
  font-weight: 400;
  outline: 0;
  background: #242a33;
  color: #e7eaee;
  border-left: 3px solid #1565C0;
}
.sidebar.sidebar-dark .main-nav > li.active > a {
  background: #242a33;
  color: #e7eaee;
  border-left: 3px solid #1565C0;
}
.sidebar.sidebar-dark .main-nav > li ul {
  background-color: #242a33;
}
.sidebar.sidebar-dark .main-nav > li ul > li > a {
  border-left: 3px solid transparent;
  border-left: 3px solid #1565C0;
}
.sidebar.sidebar-dark .main-nav > li ul > li > a:hover, .sidebar.sidebar-dark .main-nav > li ul > li > a:focus, .sidebar.sidebar-dark .main-nav > li ul > li > a:active {
  color: #e7eaee;
}
@media (min-width: 768px) {
  .sidebar.sidebar-dark.sidebar-mini .main-nav > li > a {
    background-color: #282f39;
  }
  .sidebar.sidebar-dark.sidebar-mini .main-nav > li > a:hover, .sidebar.sidebar-dark.sidebar-mini .main-nav > li > a:focus, .sidebar.sidebar-dark.sidebar-mini .main-nav > li > a:active {
    background-color: #282f39;
    border-left: 0 !important;
  }
  .sidebar.sidebar-dark.sidebar-mini .main-nav > li.active > a {
    color: #9da8b9;
    background-color: #282f39;
    border-left: 0 !important;
  }
  .sidebar.sidebar-dark.sidebar-mini .main-nav > li.active > a:hover, .sidebar.sidebar-dark.sidebar-mini .main-nav > li.active > a:focus, .sidebar.sidebar-dark.sidebar-mini .main-nav > li.active > a:active {
    color: #e7eaee;
    background-color: #282f39;
    border-left: 0 !important;
  }
  .sidebar.sidebar-dark.sidebar-mini .main-nav > li ul {
    background-color: #282f39;
  }
  .sidebar.sidebar-dark.sidebar-mini .main-nav > li ul li > a {
    border-left: 0 !important;
  }
  .sidebar.sidebar-dark.sidebar-mini .main-nav > li ul li.active {
    background: none;
  }
  .sidebar.sidebar-dark.sidebar-mini .main-nav > li ul li.active a {
    color: #9da8b9;
    background: none;
  }
  .sidebar.sidebar-dark.sidebar-mini .main-nav > li ul.open {
    background-color: #282f39;
  }
}
.sidebar .main-nav > li > a > span.title, .sidebar .main-nav > li > a > span.label {
  display: inline-block;
}
@media (min-width: 768px) {
  .sidebar.sidebar-mini {
    width: 5rem;
    overflow: visible;
    z-index: 9;
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
  }
  .sidebar.sidebar-mini .sidebar-header {
    display: none;
  }
  .sidebar.sidebar-mini .horizontal-nav {
    display: none;
  }
  .sidebar.sidebar-mini.sidebar-hidden {
    margin-left: -5rem;
  }
  .sidebar.sidebar-mini .sidebar-user {
    padding: 1em 1em 1em 1em;
  }
  .sidebar.sidebar-mini .sidebar-user .sidebar-user-name {
    display: none;
  }
  .sidebar.sidebar-mini .sidebar-user .sidebar-user-img img.img-circle {
    width: 100%;
    height: auto;
  }
  .sidebar.sidebar-mini .main-nav-label {
    display: none;
  }
  .sidebar.sidebar-mini .main-nav > li {
    position: relative;
    background-color: initial;
  }
  .sidebar.sidebar-mini .main-nav > li > a {
    border-left: 0;
    border-right: 0;
    width: 5rem;
    overflow: hidden;
    white-space: nowrap;
  }
  .sidebar.sidebar-mini .main-nav > li > a i {
    width: 5rem;
    display: inline-block;
    font-size: 1.2em;
    text-align: center;
    padding: 0;
    margin: 0;
    margin-right: 0.8em;
  }
  .sidebar.sidebar-mini .main-nav > li > a span.label {
    display: none;
  }
  .sidebar.sidebar-mini .main-nav > li > a .menu-caret {
    display: none;
  }
  .sidebar.sidebar-mini .main-nav > li > a::after {
    display: none;
  }
  .sidebar.sidebar-mini .main-nav > li.active a {
    border: none;
    background-color: initial;
  }
  .sidebar.sidebar-mini .main-nav > li ul {
    position: absolute;
    display: block;
    width: 0;
    overflow-x: hidden;
    left: 5.2rem;
    max-height: 1000px !important;
  }
  .sidebar.sidebar-mini .main-nav > li ul li a {
    width: 12.3rem;
    padding-left: 1em;
  }
  .sidebar.sidebar-mini .main-nav > li:hover {
    border-left: none;
  }
  .sidebar.sidebar-mini .main-nav > li:hover > a {
    width: 17.5rem;
    -webkit-animation-name: sidebar-slide-link;
            animation-name: sidebar-slide-link;
    -webkit-animation-duration: 0.1s;
            animation-duration: 0.1s;
    -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 1px -2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 1px -2px rgba(0, 0, 0, 0.1);
    border-left: 0;
  }
  @-webkit-keyframes sidebar-slide-link {
    from {
      width: 0;
    }
    to {
      width: 17.5rem;
    }
  }
  @keyframes sidebar-slide-link {
    from {
      width: 0;
    }
    to {
      width: 17.5rem;
    }
  }
  .sidebar.sidebar-mini .main-nav > li:hover ul {
    display: block;
    width: 12.3rem;
    -webkit-animation-name: sidebar-slide-list;
            animation-name: sidebar-slide-list;
    -webkit-animation-duration: 0.1s;
            animation-duration: 0.1s;
    -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 1px -2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 1px -2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 1px -2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 1px -2px rgba(0, 0, 0, 0.1);
    max-height: 1000px !important;
  }
  @-webkit-keyframes sidebar-slide-list {
    from {
      width: 0;
    }
    to {
      width: 12.3rem;
    }
  }
  @keyframes sidebar-slide-list {
    from {
      width: 0;
    }
    to {
      width: 12.3rem;
    }
  }
}

/* * * * * * * * * *
* Dropdown Menu styling
*
* * * * * * * * * */
.dropdown-menu {
  width: auto;
  border-radius: 0;
  font-size: 13px;
  font-size: 1rem;
  padding: 0;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.25s;
          animation-duration: 0.25s;
  overflow: hidden;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1px;
  -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
@media (min-width: 992px) {
  .dropdown-menu {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu {
    font-size: 14px;
    font-size: 1rem;
  }
}
.dropdown-menu > li a {
  padding: 1em 1.5em;
}
.dropdown-menu .divider {
  margin: 0;
  padding: 0;
}
.dropdown-menu.list-group {
  width: 24em;
  color: #55616d;
}
.dropdown-menu.list-group.list-group-wide {
  width: 26em;
}
.dropdown-menu.list-group.list-group-wide li a .media-content {
  white-space: normal;
}
.dropdown-menu.list-group.list-group-linked li.list-group-item a {
  padding: 0.8em 1.5em 0.8em 0.8em;
}
.dropdown-menu.list-group li a {
  font-size: 0.95em;
}
.dropdown-menu.list-group li a .media {
  position: relative;
}
.dropdown-menu.list-group li a .media .media-right {
  position: absolute;
  right: 0;
  top: 0;
}
.dropdown-menu.list-group li a .media .media-user {
  margin-top: 0.1em;
  margin-bottom: 0.3em;
}

.notification-dropdown .media .media-left {
  padding-top: 2px;
}

.dropup .dropdown-menu {
  -webkit-transform-origin: bottom;
      -ms-transform-origin: bottom;
          transform-origin: bottom;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* * * * * * * * * *
* Alerts Styling
*
* * * * * * * * * */
.alert {
  font-size: 13px;
  font-size: 1rem;
  padding: 0.75em 1em;
  border-radius: 0;
  border: 1px solid #eee;
}
@media (min-width: 992px) {
  .alert {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .alert {
    font-size: 14px;
    font-size: 1rem;
  }
}
.alert.alert-success {
  background-color: #bcf2ed;
  border-color: #26c1b2;
  color: #198177;
}
.alert.alert-warning {
  background-color: #fff3de;
  border-color: #FFB12B;
  color: #de8c00;
}
.alert.alert-info {
  background-color: #beddf7;
  border-color: #1E88E5;
  color: #1360a4;
}
.alert.alert-danger {
  background-color: #fed7de;
  border-color: #FC5F7C;
  color: #fb1943;
}
.alert.alert-dissmissable button {
  color: inherit;
  font-size: 1em;
  opacity: 0.8;
}
.alert.alert-dissmissable button:hover {
  opacity: 1;
}
.alert.alert-dissmissable button span {
  font-size: 1em;
}
.alert .alert-link {
  font-weight: bold;
  color: inherit;
}

.alert-bold {
  font-size: 13px;
  font-size: 1rem;
  -webkit-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
          box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
  border-radius: 0;
}
@media (min-width: 992px) {
  .alert-bold {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .alert-bold {
    font-size: 14px;
    font-size: 1rem;
  }
}
.alert-bold.alert-success {
  background-color: #26c1b2;
  color: white;
}
.alert-bold.alert-warning {
  background-color: #FFB12B;
  color: white;
}
.alert-bold.alert-info {
  background-color: #1E88E5;
  color: white;
}
.alert-bold.alert-danger {
  background-color: #FC5F7C;
  color: white;
}

.close {
  line-height: 1.4;
}

.modal-content {
  -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}

.modal-header, .modal-body, .modal-footer {
  padding: 1em 1.5em;
}

.toast-top-right, .toast-top-left {
  top: 5em;
}

.toast-warning {
  background-color: #FFB12B;
}

.toast-info {
  background-color: #1E88E5;
}

/* * * * * * *
* Progress Styling
*
* * * * * * */
.progress {
  height: 1.8em;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  background-color: #e7e7e7;
  font-weight: 600;
  font-size: 13px;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .progress {
    font-size: 13px;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .progress {
    font-size: 14px;
    font-size: 1rem;
  }
}
.progress .progress-bar {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #7259EF;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.8em;
}
.progress .progress-bar.progress-bar-info {
  background-color: #1E88E5;
}
.progress .progress-bar.progress-bar-warning {
  background-color: #FFB12B;
}
.progress .progress-bar.progress-bar-danger {
  background-color: #FC5F7C;
}
.progress .progress-bar.progress-bar-success {
  background-color: #26c1b2;
}
.progress.progress-md {
  height: 4px;
  background-color: #f0eefd;
}
.progress.progress-md.progress-md-info {
  background-color: #beddf7;
}
.progress.progress-md.progress-md-warning {
  background-color: #fff3de;
}
.progress.progress-md.progress-md-danger {
  background-color: #fed7de;
}
.progress.progress-md.progress-md-success {
  background-color: #bcf2ed;
}

/* * * * * * * * * *
* Label Styling
*
* * * * * * * * * */
.label {
  font-size: 0.9em;
  padding: 0.5em 1em 0.5em;
  vertical-align: middle;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  border: 0px solid #aaa;
  border-radius: 1px;
  margin-right: 0.5em;
  vertical-align: middle;
}
.label.label-short {
  padding: 0.15em 0.7em 0.17em;
}
.label.label-default {
  background-color: #777;
  border-color: #555;
}
.label.label-primary {
  background-color: #7259EF;
  border-color: #5234eb;
}
.label.label-info {
  background-color: #1E88E5;
  border-color: #1360a4;
}
.label.label-warning {
  background-color: #FFB12B;
  border-color: #de8c00;
}
.label.label-danger {
  background-color: #FC5F7C;
  border-color: #fb1943;
}
.label.label-success {
  background-color: #26c1b2;
  border-color: #198177;
}
.label.label-white {
  background-color: #ddd;
  color: #333;
}
.label.label-chip {
  border-radius: 2em;
}

/* * * * * * * * * *
* Badge Styling
*
* * * * * * * * * */
.badge {
  font-size: 0.9em;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  padding: 0.3em 0.6em 0.3em 0.6em;
  margin-left: 0.2em;
  text-align: center;
}
.badge.badge-round {
  display: inline-block;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 1.6em;
  line-height: 1.5;
  width: 1.6em;
  padding: 0;
  text-align: center;
  border-radius: 50%;
}
.badge.badge-round-large {
  font-size: 0.8em;
  display: inline-block;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 2.2em;
  line-height: 2.2;
  width: 2.2em;
  padding: 0;
  text-align: center;
  border-radius: 50%;
}

/* * * * * * * * * *
* List Group Styling
*
* list-group
*
* * * * * * * * * */
.list-group {
  border-radius: 0;
}
.list-group.list-group-panelled {
  border-top: 0;
  border-radius: 0;
  margin: 0;
}
.list-group.list-group-panelled .list-group-item {
  border-left: 0;
  border-right: 0;
}
.list-group.list-group-panelled .list-group-item:first-child {
  border-top: 0;
}
.list-group.list-group-panelled .list-group-item:last-child {
  border-bottom: 0;
}
.list-group.list-group-linked .list-group-item {
  padding: 0;
}
.list-group.list-group-linked .list-group-item > a.link-wrapper {
  display: block;
  cursor: pointer;
  padding: 1em;
  color: inherit;
  text-decoration: none;
  overflow: auto;
  -webkit-transition: 0.5s background-color;
  -o-transition: 0.5s background-color;
  transition: 0.5s background-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.list-group.list-group-linked .list-group-item > a.link-wrapper:hover {
  background-color: #f7f7f7;
}
.list-group .list-group-item {
  padding: 1em;
  border-color: #eee;
  background-color: #ffffff;
}
.list-group .list-group-item:first-child {
  border-radius: 0;
}
.list-group .list-group-item:last-child {
  border-radius: 0;
}
.list-group.list-group-striped > .list-group-item:nth-of-type(even) {
  background-color: #f7f7f7;
}

ul.block-list {
  margin: 0;
  padding: 0;
  display: block;
}
ul.block-list li {
  margin: 0;
  padding: 0;
  display: block;
}

/* * * * * * *
*  Styling for Small Components
*  breadcrumb, main page title (ribbon), notification-pulse sign, ripple effect
*
* * * * * * */
.ribbon {
  padding: 1.5em 40px 1.5em;
  color: #55616d;
}
.ribbon h2 {
  margin: 0;
  padding: 0;
  font-size: 1.7623416832em;
}

.breadcrumb {
  font-size: 1em;
  margin: 0;
  padding: 0;
  padding-top: 0.5em;
  background: none;
  font-size: 1em;
}
.breadcrumb a {
  color: #78828c;
  font-size: 1em;
}
.breadcrumb.breadcrumb-caret li + li::before {
  content: "\e258";
  font-family: "Glyphicons Halflings";
  line-height: 1;
  font-size: 0.7em;
  padding-left: 3px;
  padding-right: 7px;
}

@-webkit-keyframes scaleThrice {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(6);
            transform: scale(6);
    opacity: 0;
  }
}

@keyframes scaleThrice {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(6);
            transform: scale(6);
    opacity: 0;
  }
}
.notification-pulse {
  position: relative;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.notification-pulse.pulse-right {
  position: absolute;
  right: 15px;
  margin-top: -1px;
  z-index: 13;
}
.notification-pulse.pulse-left {
  position: absolute;
  left: 14px;
  top: 14px;
}
.notification-pulse::after {
  content: " ";
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  background: #EF5350;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.notification-pulse::before {
  content: " ";
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  background: none;
  border: 1px solid #EF5350;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-animation-name: scaleThrice;
          animation-name: scaleThrice;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.easyPieChart canvas {
  position: absolute;
  top: 0;
  left: 0;
}

@-webkit-keyframes ripple-animation {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.4;
  }
  to {
    -webkit-transform: scale(100);
            transform: scale(100);
    opacity: 0;
  }
}

@keyframes ripple-animation {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.4;
  }
  to {
    -webkit-transform: scale(100);
            transform: scale(100);
    opacity: 0;
  }
}
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: white;
  -webkit-animation: ripple-animation 2s;
          animation: ripple-animation 2s;
}

.main-nav .ripple-effect {
  position: absolute;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: black;
  -webkit-animation: ripple-animation 2s;
          animation: ripple-animation 2s;
}

.tooltip .tooltip-inner {
  padding: 1em 1em 0.8em 1em;
}

.popover {
  border-radius: 0px;
}
.popover .popover-content {
  padding: 1em 1em 0.8em 1em;
}

.mdi {
  font-size: 1em;
  vertical-align: baseline;
}
.mdi.mdi-1-5x {
  font-size: 1.5em;
}
.mdi.mdi-2x {
  font-size: 2em;
}
.mdi.mdi-3x {
  font-size: 3em;
}
.mdi.mdi-4x {
  font-size: 4em;
}
.mdi.mdi-5x {
  font-size: 5em;
}

.mdi::before {
  font-size: 1.2em;
  position: relative;
  bottom: 0px;
  vertical-align: middle;
  line-height: 1;
}

.panel-action .mdi::before, .mdi.mdi-adjusted::before {
  position: relative;
  bottom: 0.12em;
}

.btn .mdi::before {
  position: relative;
  bottom: 0px;
}

.navbar .btn .mdi::before {
  position: relative;
  bottom: 0;
}

.navbar .navbar-nav li .mdi::before {
  position: relative;
  bottom: 0em;
  font-size: 1.4em;
}

.btn-sm .mdi {
  position: relative;
  bottom: 1px;
}

/*
* Layout for Emphasize Admin Pages
*
*/
.page {
  -webkit-transition: 0.3s margin-left;
  -o-transition: 0.3s margin-left;
  transition: 0.3s margin-left;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 0;
}
@media (min-width: 768px) {
  .page {
    margin-left: 17.5rem;
  }
  .page.full-width {
    margin-left: 0;
  }
}

.fullpage-form-container {
  /* Class Used on page element for login/signup etc. For pages that have just a form. */
  width: 32em;
  margin: auto;
  margin-top: 7%;
}
.fullpage-form-container.fullpage-form-container-wide {
  margin-top: 5%;
  width: 35em;
}

.sidebar-toggled-mini .page {
  /* .sidebar-toogled-mini Class Used on body element when the sidebar is in collapsed mini state. */
}
@media (min-width: 768px) {
  .sidebar-toggled-mini .page {
    margin-left: 5rem;
  }
}

.sidebar-toggled-visible .page {
  /* .sidebar-toogled-mini Class Used on body element when the sidebar is visible. */
  margin-left: 0;
}
@media (min-width: 768px) {
  .sidebar-toggled-visible .page {
    margin-left: 17.5rem;
  }
  .sidebar-toggled-visible .page.full-width {
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .sidebar-toggled-visible.sidebar-toggled-mini .page {
    margin-left: 5rem;
  }
}

.sidebar-toggled-hidden.sidebar-toggled-mini .page {
  margin-left: 0;
}

.sidebar-toggled-hidden .page {
  margin-left: 0;
}

.page-content {
  padding-top: 0px;
  padding-left: 15px;
  padding-right: 15px;
}
.page-content.no-padding {
  padding-left: 0px;
  padding-right: 0px;
}

.fixed-navbar-top .page {
  /* .fixed-navbar-top Class Used on body element when the navbar is fixed on top. */
  padding-top: 4.7rem;
}

.page-wrapper {
  position: relative;
}

.row-table {
  /* A new form of grid that used display:table */
  width: 100%;
  height: 100%;
  margin: 0;
  display: table;
  table-layout: fixed;
}
.row-table::after, .row-table::before {
  display: none;
  content: "";
}
.row-table > [class*=col-] {
  display: table-cell;
  margin: 0;
  padding: 0;
  vertical-align: top;
  float: none;
  table-layout: fixed;
}
.row-table.row-middle > [class*=col-] {
  vertical-align: middle;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4,
.col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
  /*Reduce default grid padding on small screens*/
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4,
  .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.page-content {
  /*Reduce default Page padding on small screens*/
  padding-left: 0px;
  padding-right: 0px;
}
@media (min-width: 768px) {
  .page-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.panel-email {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
}

.inbox-container {
  position: relative;
}
.inbox-container:before, .inbox-container:after {
  content: " ";
  display: table;
}
.inbox-container:after {
  clear: both;
}

.inbox-sidebar {
  padding: 1em 1em;
  width: 18rem;
  color: #78828c;
  min-height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.12);
  border-right: 1px solid #eee;
}
.inbox-sidebar .inbox-sidebar-btn {
  padding: 1em;
}

.inbox-container.inbox-sidebar-visible .inbox-sidebar {
  width: 18rem;
  display: block;
  z-index: 2;
  background-color: #f1f6fb;
}

.inbox-container .inbox-sidebar {
  width: 0;
  display: none;
  z-index: 2;
}
.inbox-container .inbox-emails {
  margin-left: 0rem;
  z-index: 1;
}

@media (min-width: 1200px) {
  .inbox-container .inbox-sidebar {
    display: block;
    width: 18rem;
    z-index: 2;
  }
  .inbox-container .inbox-emails {
    margin-left: 18rem;
    z-index: 1;
  }
}
.inbox-emails {
  background: white;
  min-height: 100vh;
}

.email-nav.main-nav a {
  width: 100%;
  color: #78828c;
  font-weight: 500;
}
.email-nav.main-nav a:hover {
  color: #55616d;
}

.email-sections {
  display: table-row;
  width: 100%;
}
.email-sections:before, .email-sections:after {
  content: " ";
  display: table;
}
.email-sections:after {
  clear: both;
}

.inbox-emails {
  position: relative;
  left: -1px;
  margin-left: 18rem;
  border-left: 1px solid #eee;
  overflow-x: auto;
}

.inbox-actions {
  padding: 1.5em;
}

.emails {
  display: block;
  padding: 0;
  margin: 0;
  display: table;
  width: 100%;
  min-width: 650px;
}
.emails .email {
  display: table-row;
  width: 100%;
  list-style-type: none;
  padding: 0;
  margin: 0;
  padding: 1em;
  padding-right: 2em;
  position: relative;
  height: 4em;
  cursor: pointer;
  color: #64707c;
}
.emails .email.unread {
  font-weight: 600;
  color: #55616d;
  background-color: #f5f5f5;
}
.emails .email:hover {
  background-color: #f3f3f3;
}
.emails .email .email-section {
  display: table-cell;
  line-height: 2em;
  vertical-align: middle;
  border-bottom: 1px solid #eee;
}
.emails .email .email-actions-left {
  width: 4.6em;
  padding-left: 1.6em;
  text-align: left;
}
.emails .email .email-sender {
  width: 20em;
  text-align: left;
}
.emails .email .email-left {
  display: table-row;
}
.emails .email .email-right {
  display: table-row;
}
.emails .email .email-details {
  color: #78828c;
  font-size: 0.8em;
  padding-top: 0.4em;
  padding-right: 2em;
  width: 7em;
}

.emails-message {
  min-width: 32px;
}
.emails-message .message-sender {
  padding: 1em;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.emails-message .message-user {
  font-size: 1.15em;
  padding-top: 0.3em;
}
.emails-message .message-details {
  width: 10em;
  text-align: right;
}
.emails-message .message-message {
  padding: 2em;
  max-width: 80em;
  font-size: 1.05em;
}

.inbox-compose-form {
  min-width: 650px;
  padding: 0em 2em 2em;
}
.inbox-compose-form textarea.form-control {
  border: 1px solid #ddd;
  margin-top: 1em;
  height: 13em;
  resize: none;
}
.inbox-compose-form textarea.form-control:focus {
  border: 2px solid #1E88E5;
}

.dropzone {
  width: 100%;
  height: 7em;
  padding-top: 2.8em;
  text-align: center;
  border: none;
  margin-bottom: 2em;
  cursor: pointer;
  background-color: #f5f5f5;
  border: 1px dashed #aaa;
}
.dropzone:hover {
  background-color: #eee;
}

.wysihtml5-toolbar {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 100%;
  height: 3.1em;
  padding: 0em;
  border-bottom: 1px solid #ddd;
}
.wysihtml5-toolbar li:first-child > .btn, .wysihtml5-toolbar > .btn-group {
  border-left-width: 0px;
}
.wysihtml5-toolbar li > .btn, .wysihtml5-toolbar li > .btn-group {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border-left-width: 1px;
  border-right-width: 1px;
}
.wysihtml5-toolbar li > .btn .btn, .wysihtml5-toolbar li > .btn-group .btn {
  border-right-width: 0px;
}
.wysihtml5-toolbar .btn.btn-default {
  background: #fff;
}

.wysi-textarea-container {
  padding: 0em;
  margin-top: 1em;
  position: relative;
}

ul.wysihtml5-toolbar > li {
  margin: 0 !important;
}

.wysihtml5-sandbox {
  margin-top: 0 !important;
  padding: 3.5em 0.5em 0.5em !important;
  height: 20em !important;
}

.nav-tabs.profile-tabs li a {
  padding: 1.5em 3em;
}

.activity {
  display: block;
  margin: 0;
  padding: 0;
}
.activity .activity-post {
  display: block;
  margin: 0;
  padding: 0;
}
.activity .activity-post .activity-image {
  width: 2.7em;
  height: 2.7em;
  margin-left: 0.4em;
  margin-right: 0.4em;
}
.activity .activity-post .activity-post-content {
  padding-top: 0;
  padding-bottom: 0;
}
.activity .activity-post .activity-post-footer {
  padding: 0.8em 1.5em;
}
.activity .activity-post .activity-post-action {
  margin-right: 1em;
  color: #78828c;
  font-size: 0.9em;
}
.activity .activity-post .activity-post-action .btn-default.btn {
  color: #78828c;
}
.activity .activity-post .activity-post-title {
  padding: 1.3em 1em;
  margin-bottom: 0em;
}
.activity .activity-post .activity-post-title a {
  font-weight: 600;
  color: #64707c;
}
.activity .activity-post .time {
  font-size: 0.8em;
  margin-left: 1em;
}

.activity-post-gallery .gallery-image {
  height: 13em;
  display: inline-block;
  padding: 0em;
  margin-right: 1.3em;
  margin-bottom: 1.3em;
}

.fc-toolbar.fc-header-toolbar {
  padding: 1.5em 2em;
  padding-top: 6em;
  color: #fff;
  background-color: #7259EF;
  margin-bottom: 0;
}
.fc-toolbar.fc-header-toolbar button {
  background: none;
  color: #fff;
  -webkit-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
          box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
  border: none;
  padding: 0.9em 2em;
  height: 2.8em;
  line-height: 1;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 0px;
  text-transform: capitalize;
  font-family: "Open Sans", sans-serif;
  text-shadow: none;
}
.fc-toolbar.fc-header-toolbar button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.fc-left h2 {
  font-size: 1.7em;
  line-height: 1.6470588235;
}

table .fc-head .fc-widget-header td, table .fc-head .fc-widget-header th, table .fc-head .fc-widget-content td, table .fc-head .fc-widget-content th, table .fc-body .fc-widget-header td, table .fc-body .fc-widget-header th, table .fc-body .fc-widget-content td, table .fc-body .fc-widget-content th {
  padding: 0.5em 0.1em;
}

.fc-widget-content .fc-day-grid .fc-day-number {
  padding: 0.8em;
}

.fc-month-view > table {
  border-left: none !important;
}
.fc-month-view > table > thead > tr > td, .fc-month-view > table > tbody > tr > td {
  border-left: none !important;
  border-right: none !important;
}

.external-events .fc-event {
  margin-bottom: 0.5em;
}

.fc-event, .fc-event-dot {
  border-radius: 0;
  padding: 0.3em;
  background-color: #1E88E5;
}

.faq .panel {
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 1em;
}
.faq .panel .panel-collapse .panel-body {
  border-top: none;
  padding: 1em 1em;
  padding-top: 0;
  font-size: 1em;
  color: #64707c;
}
.faq .panel-heading {
  padding: 0 !important;
}
.faq .panel-heading a {
  display: block;
  padding: 1em 0em;
  font-weight: 500;
  color: #1565C0;
}
.faq .panel-heading a:focus, .faq .panel-heading a:active, .faq .panel-heading a:hover {
  background: none;
  border: none;
  outline: none;
  text-decoration: none;
}

.invoice-summary:before, .invoice-summary:after {
  content: " ";
  display: table;
}
.invoice-summary:after {
  clear: both;
}

.panel.pricing-panel {
  margin-top: 1em;
  margin-left: 0.5em;
  margin-right: 0.5em;
  font-weight: 500;
  -webkit-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
          box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 1px 1px 0px rgba(0, 120, 255, 0.1);
  background-color: #f7f7f7;
  border-radius: 0;
}
.panel.pricing-panel.pricing-popular {
  -webkit-transform: scale(1.04);
      -ms-transform: scale(1.04);
          transform: scale(1.04);
  -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.panel.pricing-panel .panel-body {
  padding: 0;
}
.panel.pricing-panel .pricing-title {
  padding: 2em 0em;
  border-radius: 0;
}
.panel.pricing-panel .pricing-title h2 {
  font-size: 1.7623416832em;
  margin-bottom: 0;
}
.panel.pricing-panel .pricing-price {
  padding: 2.5em;
}
.panel.pricing-panel .pricing-price h2 {
  font-size: 3em;
  margin-bottom: 0;
  font-weight: 500;
}

.pricing-feature-list {
  display: block;
  margin: 0;
  padding: 0;
  margin-bottom: 0em;
  border-bottom: 1px solid #eee;
}
.pricing-feature-list li {
  color: #64707c;
  display: block;
  margin: 0;
  padding: 1em;
  font-size: 1.12em;
  border-top: 1px solid #eee;
}

.pricing-button {
  padding: 1em;
}

.ct-series-a .ct-line {
  /* Set the colour of this series line */
  stroke: #36a2eb;
  /* Control the thikness of your lines */
  stroke-width: 4px;
  /* Create a dashed line with a pattern */
}

.ct-series-a .ct-point {
  /* Colour of your points */
  stroke: #36a2eb;
  /* Size of your points */
  stroke-width: 6px;
  /* Make your points appear as squares */
}

.ct-series-b .ct-line {
  /* Set the colour of this series line */
  stroke: #ff6384;
  /* Control the thikness of your lines */
  stroke-width: 4px;
  /* Create a dashed line with a pattern */
}

.ct-series-b .ct-point {
  /* Colour of your points */
  stroke: #ff6384;
  /* Size of your points */
  stroke-width: 6px;
  /* Make your points appear as squares */
}

.ct-series-a .ct-bar {
  /* Colour of your bars */
  stroke: #ff6384;
  /* The width of your bars */
  stroke-width: 25px;
}

.ct-series-b .ct-bar {
  /* Colour of your bars */
  stroke: #36a2eb;
  /* The width of your bars */
  stroke-width: 25px;
}

.ct-series-a .ct-slice-pie {
  /* fill of the pie slieces */
  fill: #36a2eb;
  /* give your pie slices some outline or separate them visually by using the background color here */
  stroke: white;
  /* outline width */
  stroke-width: 2px;
}

.ct-series-b .ct-slice-pie {
  /* fill of the pie slieces */
  fill: #ffce56;
  /* give your pie slices some outline or separate them visually by using the background color here */
  stroke: white;
  /* outline width */
  stroke-width: 2px;
}

.ct-series-c .ct-slice-pie {
  /* fill of the pie slieces */
  fill: #4bc0c0;
  /* give your pie slices some outline or separate them visually by using the background color here */
  stroke: white;
  /* outline width */
  stroke-width: 2px;
}

.ct-series-d .ct-slice-pie {
  /* fill of the pie slieces */
  fill: #9966ff;
  /* give your pie slices some outline or separate them visually by using the background color here */
  stroke: white;
  /* outline width */
  stroke-width: 2px;
}

.ct-series-e .ct-slice-pie {
  /* fill of the pie slieces */
  fill: #ff9f40;
  /* give your pie slices some outline or separate them visually by using the background color here */
  stroke: white;
  /* outline width */
  stroke-width: 2px;
}

.ct-chart-donut .ct-label {
  fill: white;
}

.ct-chart-pie .ct-label {
  fill: white;
}

.ct-series-a .ct-slice-donut, .ct-series-a .ct-slice-donut-solid {
  /* fill of the pie slieces */
  fill: #36a2eb;
  /* give your pie slices some outline or separate them visually by using the background color here */
  stroke: white;
  /* outline width */
  stroke-width: 2px;
}

.ct-series-b .ct-slice-donut, .ct-series-b .ct-slice-donut-solid {
  /* fill of the pie slieces */
  fill: #ffce56;
  /* give your pie slices some outline or separate them visually by using the background color here */
  stroke: white;
  /* outline width */
  stroke-width: 2px;
}

.ct-series-c .ct-slice-donut, .ct-series-c .ct-slice-donut-solid {
  /* fill of the pie slieces */
  fill: #4bc0c0;
  /* give your pie slices some outline or separate them visually by using the background color here */
  stroke: white;
  /* outline width */
  stroke-width: 2px;
}

.ct-series-d .ct-slice-donut, .ct-series-d .ct-slice-donut-solid {
  /* fill of the pie slieces */
  fill: #9966ff;
  /* give your pie slices some outline or separate them visually by using the background color here */
  stroke: white;
  /* outline width */
  stroke-width: 2px;
}

.ct-series-e .ct-slice-donut, .ct-series-e .ct-slice-donut-solid {
  /* fill of the pie slieces */
  fill: #ff9f40;
  /* give your pie slices some outline or separate them visually by using the background color here */
  stroke: white;
  /* outline width */
  stroke-width: 2px;
}

.easy-pie-chart {
  position: relative;
}

.easy-pie-chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.easy-pie-chart {
  width: 110px;
  height: 110px;
  text-align: center;
  line-height: 120px;
  margin-right: 1em;
}

.demo-elements {
  padding: 1em 0em 0em;
}

.demo-section {
  margin-bottom: 0.5em;
}

.jqstooltip {
  max-width: 500px !important;
  max-height: 500px !important;
  height: 30px !important;
  width: auto !important;
}

.jqsfield {
  font-size: 10px !important;
}

.fontawesome-icon-list div {
  padding: 1em 1.5em;
}
.fontawesome-icon-list div .fa {
  font-size: 1.2em;
  margin-right: 0.4em;
}
.fontawesome-icon-list div:hover {
  background-color: #f1f6fb;
  cursor: pointer;
}

#icons .page-header {
  border-bottom: 0;
}

.mid-icons #icons div {
  display: inline-block;
  width: 25%;
  padding: 1.2em;
}

.oi {
  font-size: 0.9em;
}

#oi-icons div {
  display: inline-block;
  width: 25%;
  padding: 1.2em;
}
#oi-icons div .oi {
  font-size: 1.1em;
  margin-right: 0.2em;
}

.sidebar-theming-heading {
  padding: 1.5em 1.5em;
}

.sidebar-theming-body {
  padding: 0.5em 1.5em 0.5em 1.5em;
}

.sidebar-theming-section {
  margin-bottom: 2em;
}

.nav.nav-tabs.sidebar-theming {
  border: none;
  margin-bottom: 4px;
}
.nav.nav-tabs.sidebar-theming li {
  border: none;
  margin-right: 1em;
}
.nav.nav-tabs.sidebar-theming li a {
  padding: 1px;
  border: none;
  border-radius: 2px;
  display: block;
  padding: 0;
  opacity: 0.9;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.6em;
  background-color: #eee;
  text-align: center;
  color: #333;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 1px -2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 1px -2px rgba(0, 0, 0, 0.1);
}
.nav.nav-tabs.sidebar-theming li a .fa, .nav.nav-tabs.sidebar-theming li a .mdi, .nav.nav-tabs.sidebar-theming li a .oi {
  font-size: 0.8em;
  display: none;
}
.nav.nav-tabs.sidebar-theming li a.active .fa, .nav.nav-tabs.sidebar-theming li a.active .mdi, .nav.nav-tabs.sidebar-theming li a.active .oi {
  display: inline;
}
.nav.nav-tabs.sidebar-theming li a:hover {
  opacity: 1;
  -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.nav.nav-tabs.sidebar-theming li a.dark {
  background: #282F39;
  color: white;
}
.nav.nav-tabs.sidebar-theming li a.info {
  background-color: #1E88E5;
  color: white;
}
.nav.nav-tabs.sidebar-theming li a.primary {
  background-color: #7259EF;
  color: white;
}
.nav.nav-tabs.sidebar-theming li a.success {
  background-color: #26c1b2;
  color: white;
}

/*# sourceMappingURL=style.css.map */