:root {
  --primary-color: #042b69;
  --brand-color: #ff0;
  --base-color: #46597d;
  --gray: #999;
  --light: #bbb;
  --border-radius: 0px;
  --border-color: #f5f5f5;
  --border-color--dark: #f1f1f1;
  --header-height: 58px;
  --input-height: 48px;
  --input-border-radius: 2px;
  --input-border-color: #ddd;

  --primary-color-light: #dee8fd;
  --sidebar-link-color: #edf2f4;
  --sidebar-active-color: #b1e0ff;

  --success: #63cb89;
  --info: blue;
  --warning: orange;
  --danger: red;
  --primary: #1b61d0;
  --primary-light: #9aa7ff;
  --deep-color: #081d3f;
}

/*------------------------------------------------------------
[1. Global Styles]
------------------------------------------------------------*/

html,
body {
  font-size: 14px;
  width: 100%;
  height: 100%;
}

body {
  background-color: #fff;
  /*font-weight: 300;*/
  color: #3d464c;
  color: var(--base-color);

  overflow-x: hidden;
}

a,
a:hover {
  color: #2b2b2b;
}

p {
  line-height: 1.6;
}

small {
  font-size: 80%;
  font-weight: 400;
}

menu {
  padding-left: 0px;
}

.basic-font {
  font-family: "arial";
}

body,
span,
text,
a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

a:hover,
a:active,
a:focus {
  outline: none !important;
  text-decoration: none !important;
}

hr {
  border-color: #d0d4d9;
}

.cross-page-line {
  display: block;
  height: 1px;
  width: 100%;
  margin: 20px 0px;
  background: #e0e0e0;
}

/*------------------------------------------------------------
[2. CSS Utilities]
------------------------------------------------------------*/

/* Position */

.position-top-right,
.position-top-left,
.position-bottom-right,
.position-bottom-left {
  position: absolute;
}

.position-top-right {
  top: 0;
  right: 0;
}

.position-top-left {
  top: 0;
  left: 0;
}

.position-bottom-right {
  bottom: 0;
  right: 0;
}

.position-bottom-left {
  bottom: 0;
  right: 0;
}

/* Box Shadow */

.bs-n {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.bs-dark {
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
}

.bs-light {
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.bs-t {
  -webkit-box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.05);
}

.bs-r {
  -webkit-box-shadow: 1px 0 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 1px 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 1px 0 1px rgba(0, 0, 0, 0.05);
}

.bs-b {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.bs-l {
  -webkit-box-shadow: -1px 0 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: -1px 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: -1px 0 1px rgba(0, 0, 0, 0.05);
}

/* Typography */

.f-thin {
  font-weight: 300;
}

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

.f-bold {
  font-weight: 600 !important;
}

.f-s-10 {
  font-size: 10px;
}

.f-s-11 {
  font-size: 11px;
}

.f-s-12 {
  font-size: 12px;
}

.f-s-13 {
  font-size: 13px;
}

.f-s-14 {
  font-size: 14px;
}

.f-s-15 {
  font-size: 15px;
}

.f-s-16 {
  font-size: 16px;
}

.f-s-17 {
  font-size: 17px;
}

.f-s-18 {
  font-size: 18px;
}

.f-s-20 {
  font-size: 20px;
}

.f-s-22 {
  font-size: 22px;
}

.f-s-24 {
  font-size: 24px;
}

.f-s-26 {
  font-size: 26px;
}

.f-s-28 {
  font-size: 28px;
}

.f-s-30 {
  font-size: 30px;
}

.f-s-32 {
  font-size: 32px;
}

.secondary-link {
  font-size: 13px;
  color: #2196f3;
  font-weight: bold;
}

/* Margins & Paddings */

.no-s {
  margin: 0px !important;
  padding: 0px !important;
}

.no-m {
  margin: 0;
}

.no-p {
  padding: 0;
}

.m {
  margin: 15px;
}

.m-t-xxs {
  margin-top: 5px;
}

.m-r-xxs {
  margin-right: 5px;
}

.m-b-xxs {
  margin-bottom: 5px;
}

.m-l-xxs {
  margin-left: 5px;
}

.m-t-xs {
  margin-top: 10px;
}

.m-r-xs {
  margin-right: 10px;
}

.m-b-xs {
  margin-bottom: 10px;
}

.m-l-xs {
  margin-left: 10px;
}

.m-t-sm {
  margin-top: 15px;
}

.m-r-sm {
  margin-right: 15px;
}

.m-b-sm {
  margin-bottom: 15px;
}

.m-l-sm {
  margin-left: 15px;
}

.m-t-md {
  margin-top: 20px;
}

.m-r-md {
  margin-right: 20px;
}

.m-b-md {
  margin-bottom: 20px;
}

.m-l-md {
  margin-left: 20px;
}

.m-t-lg {
  margin-top: 25px !important;
}

.m-r-lg {
  margin-right: 25px;
}

.m-b-lg {
  margin-bottom: 25px;
}

.m-l-lg {
  margin-left: 25px;
}

.m-t-xxl {
  margin-top: 30px;
}

.m-r-xxl {
  margin-right: 30px;
}

.m-b-xxl {
  margin-bottom: 30px;
}

.m-l-xxl {
  margin-left: 30px;
}

.m-t-n-xxs {
  margin-top: -5px;
}

.m-r-n-xxs {
  margin-right: -5px;
}

.m-b-n-xxs {
  margin-bottom: -5px;
}

.m-l-n-xxs {
  margin-left: -5px;
}

.m-t-n-xs {
  margin-top: -10px;
}

.m-r-n-xs {
  margin-right: -10px;
}

.m-b-n-xs {
  margin-bottom: -10px;
}

.m-l-n-xs {
  margin-left: -10px;
}

.m-t-n-sm {
  margin-top: -15px;
}

.m-r-n-sm {
  margin-right: -15px;
}

.m-b-n-sm {
  margin-bottom: -15px;
}

.m-l-n-sm {
  margin-left: -15px;
}

.m-t-n-md {
  margin-top: -20px;
}

.m-r-n-md {
  margin-right: -20px;
}

.m-b-n-md {
  margin-bottom: -20px;
}

.m-l-n-md {
  margin-left: -20px;
}

.m-t-n-lg {
  margin-top: -25px;
}

.m-r-n-lg {
  margin-right: -25px;
}

.m-b-n-lg {
  margin-bottom: -25px;
}

.m-l-n-lg {
  margin-left: -25px;
}

.m-t-n-xxl {
  margin-top: -30px;
}

.m-r-n-xxl {
  margin-right: -30px;
}

.m-b-n-xxl {
  margin-bottom: -30px;
}

.m-l-n-xxl {
  margin-left: -30px;
}

.p {
  padding: 15px;
}

.p-h-xxs {
  padding-left: 5px;
  padding-right: 5px;
}

.p-h-xs {
  padding-left: 10px;
  padding-right: 10px;
}

.p-h-sm {
  padding-left: 15px;
  padding-right: 15px;
}

.no-p-h {
  padding-left: 0;
  padding-right: 0;
}

.no-p-v {
  padding-top: 0;
  padding-bottom: 0;
}

.p-h-md {
  padding-left: 20px;
  padding-right: 20px;
}

.p-h-lg {
  padding-left: 25px;
  padding-right: 25px;
}

.p-h-xxl {
  padding-left: 30px;
  padding-right: 30px;
}

.p-v-xxs {
  padding-top: 5px;
  padding-bottom: 5px;
}

.p-v-xs {
  padding-top: 10px;
  padding-bottom: 10px;
}

.p-v-sm {
  padding-top: 15px;
  padding-bottom: 15px;
}

.p-v-md {
  padding-top: 20px;
  padding-bottom: 20px;
}

.p-v-lg {
  padding-top: 25px;
  padding-bottom: 25px;
}

.p-v-xxl {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* Width & Height */

.full-height {
  height: 100% !important;
}

.full-width {
  width: 100% !important;
}

.w-xxs {
  width: 50px;
}

.w-xs {
  width: 90px;
}

.w-sm {
  width: 140px;
}

.w {
  width: 200px;
}

.w-md {
  width: 240px;
}

.w-lg {
  width: 280px;
}

.w-xl {
  width: 330px;
}

.w-xxl {
  width: 370px;
}

.w-auto {
  width: auto;
}

.h-auto {
  height: auto;
}

/* Borders */

.no-b {
  border: 0 !important;
}

.b {
  border: 1px solid #f1f1f1;
}

.b-t {
  border-top: 1px solid #f1f1f1;
}

.b-r {
  border-right: 1px solid #f1f1f1;
}

.b-b {
  border-bottom: 1px solid #f1f1f1;
}

.b-l {
  border-left: 1px solid #f1f1f1;
}

.b-default {
  border-color: #f1f1f1;
}

.b-primary {
  border-color: #756bb0;
}

.b-info {
  border-color: #14a2bb;
}

.b-success {
  border-color: #2ec5d3;
}

.b-warning {
  border-color: #dfba47;
}

.b-danger {
  border-color: #de4d4d;
}

.b-2 {
  border-size: 2px;
}

.b-3 {
  border-size: 3px;
}

.b-4 {
  border-size: 4px;
}

.b-n-t {
  border-top: 0;
}

.b-n-r {
  border-right: 0;
}

.b-n-b {
  border-bottom: 0;
}

.b-n-l {
  border-left: 0;
}

/* Radius */

.no-r {
  border-radius: 0 !important;
}

.r {
  border-radius: 2px;
}

.r-t-l {
  border-top-left-radius: 2px;
}

.r-t-r {
  border-top-right-radius: 2px;
}

.r-b-l {
  border-bottom-left-radius: 2px;
}

.r-b-r {
  border-bottom-right-radius: 2px;
}

.no-r-t-l {
  border-top-left-radius: 0 !important;
}

.no-r-t-r {
  border-top-right-radius: 0 !important;
}

.no-r-b-l {
  border-bottom-left-radius: 0 !important;
}

.no-r-b-r {
  border-bottom-right-radius: 0 !important;
}

/*------------------------------------------------------------
[3. Components]
------------------------------------------------------------*/

/* Text */

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  /*font-weight: 300;*/
  color: #2b2b2b;
}

.center {
  float: none;
  margin: 0px auto;
}

label {
  font-weight: 400;
}

.label {
  font-weight: 400;
  padding: 4px 8px;
  font-size: 11px;
}

label.error {
  color: #ec5e69;
  font-weight: 500;
  margin-top: 5px;
  float: left;
  font-size: 12px;
}

.label.label-default {
  background: #f1f1f1;
  color: #637282;
}

.label.label-primary {
  background: #0070e0;
}

.label.label-success {
  background: #63cb89;
}

.label.label-info {
  background: #5893df;
}

.label.label-warning {
  background: #f1c205;
}

.label.label-danger {
  background: #ec5e69;
}

.header-text {
  padding: 0;
  font-size: 14px;
  color: #637282;
  font-weight: 500;
}

.icon-xs {
  font-size: 12px;
}

.icon-naira {
  content: "solo";
  width: 10px;
  background: red;
}

.icon-sm {
  font-size: 14px;
}

.icon-md {
  font-size: 16px;
}

.icon-lg {
  font-size: 18px;
}

.icon-state-default {
  color: #e2e2e2;
}

.icon-state-primary {
  color: #0070e0;
}

.icon-state-success {
  color: #63cb89;
}

.icon-state-info {
  color: #5893df;
}

.icon-state-warning {
  color: #f1c205;
}

.icon-state-danger {
  color: #ec5e69;
}

.fontawesome-icon-list {
  padding: 0 2px;
}

.fa-hover {
  cursor: pointer;
  line-height: 50px;
  white-space: nowrap;
}

.fa-hover:hover {
  background-color: #f7f7f7;
}

.fa-hover a {
  color: #4f4f4f;
}

.lead {
  color: #2b2b2b;
}

.text-muted {
  color: #637282;
}

.text-primary {
  color: #0070e0;
}

.text-success {
  color: #63cb89;
}

.text-info {
  color: #5893df;
}

.text-warning {
  color: #f1c205;
}

.text-danger {
  color: #ec5e69;
}

blockquote {
  border-left: 5px solid #ccc;
}

.blockquote-reverse,
blockquote.pull-right {
  border-right: 5px solid #ccc;
}

.well {
  border-radius: 0;
  box-shadow: none;
  border: 0;
  background-color: #;
}

.text-money {
  font-family: "Arial";
}
.page-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-color);
  display: inline-block;
  margin-top: 16px;
  margin-left: 12px;
}

.breadcrumb {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  font-size: 13px;
}

.breadcrumb li i {
  font-size: 14px;
  margin-right: 4px;
  color: rgba(0, 0, 0, 0.4);
  display: block;
  float: left;
}

.breadcrumb > .active,
.breadcrumb li a {
  color: rgba(0, 0, 0, 0.4);
  font-weight: 500;
}

.breadcrumb li a:hover {
  text-decoration: underline !important;
}

.breadcrumb-header {
  font-size: 22px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
}

.panel {
  border-radius: 4px;
  /*box-shadow: 0 1px 1px #999;*/
  padding: 0px;
  border-color: var(--border-color);
}

.panel-body {
  padding: 0;
}

.panel-heading {
  padding: 0;
  border: 0;
}

.panel-title {
  color: #637282;
  font-weight: 500;
  padding: 0;
  padding-bottom: 30px;
  font-size: 14px;
}

.alert .alert-link {
  font-weight: 500;
}
.alert-default {
  background: var(--primary-color);
  border-color: #e6e8eb;
}
.alert-success {
  color: #30b661;
  background-color: #e8f7ed;
  border-color: #30b661;
}
.alert-info {
  color: #2f73c8;
  background-color: #d9e7f9;
  border-color: #2f73c8;
}
.alert-warning {
  color: #94780a;
  background-color: #f9e69b;
  border-color: #94780a;
}
.alert-danger {
  color: #d83945;
  background-color: #fbdbde;
  border-color: #d83945;
}
.alert-success .alert-link {
  color: #218892;
}
.alert-info .alert-link {
  color: #2f73c8;
}
.alert-warning .alert-link {
  color: #94780a;
}
.alert-danger .alert-link {
  color: #d83945;
}

/* Backgrounds */
.bg-white {
  background: white !important;
}

.bg-n {
  background: transparent !important;
}

.bg-primary {
  background-color: #0070e0;
  color: #fff;
}

.bg-primary.dark {
  background-color: #005fbf;
  color: #fff;
}

.bg-primary.light {
  background-color: #0580fc;
  color: #fff;
}

.bg-success {
  background-color: #63cb89;
  color: #fff;
}

.bg-success.dark {
  background-color: #4a9b68;
  color: #fff;
}

.bg-success.light {
  background-color: #74eda0;
  color: #fff;
}

.bg-info {
  background-color: #5893df;
  color: #fff;
}

.bg-info.dark {
  background-color: #4374b2;
  color: #fff;
}

.bg-info.light {
  background-color: #71acf7;
  color: #fff;
}

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

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

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

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

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

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

.bg-dark {
  background-color: #333;
  color: #fff;
}

.bg-dark.dark {
  background-color: #2b2b2b;
  color: #fff;
}

.bg-dark.light {
  background-color: #3b3b3b;
  color: #fff;
}

.bg-light {
  background-color: #f1f1f1;
}

.bg-light.dark {
  background-color: #e5e5e5;
}

.bg-light.light {
  background-color: #f9f9f9;
}

.bg-gray {
  background-color: #f9f9f9 !important;
}

.bg-gray.dark {
  background-color: #b9b9b9;
}

.bg-gray.light {
  background-color: #d7d7d7;
}

/* Buttons */

.search-form .btn-default {
  background-color: #fff;
}

.btn-default.active,
.btn-default:active,
.open > .dropdown-toggle.btn-default {
  border-color: #0070e0 !important;
  background-color: rgba(0, 112, 224, 0.08);
  color: #0070e0;
}

.btn-default.active:hover,
.btn-default:active:hover,
.open > .dropdown-toggle.btn-default:hover {
  border-color: #e6e9ec;
  background-color: #e6e9ec;
}

.btn {
  border-radius: var(--input-border-radius);
  padding: 5px 16px;
  box-shadow: none !important;
  /*color: inherit;*/
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 0;
  outline-offset: 0;
}

.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-xs {
  padding: 1px 5px;
}

.btn-sm {
  padding: 5px 10px;
}

.btn-lg {
  padding: 10px 16px;
}

.btn-rounded {
  border-radius: 60px;
}

.btn-gray {
  border-color: var(--border-color) !important;
  background-color: var(--border-color) !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-gray:hover,
.btn-gray:active:hover,
.btn-gray.active:hover,
.open > .dropdown-toggle.btn-gray:hover,
.btn-gray:active:focus,
.btn-gray.active:focus,
.open > .dropdown-toggle.btn-gray:focus,
.btn-gray:active.focus,
.btn-gray.active.focus,
.open > .dropdown-toggle.btn-gray.focus,
.btn-gray:focus,
.btn-gray.focus {
  /*border-color: #64a0ef!important;*/
  background-color: var(--border-color--dark) !important;
}

.btn-common {
  border-color: #ccc !important;
  background-color: #f7fafc !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-common:hover,
.btn-common:active:hover,
.btn-common.active:hover,
.open > .dropdown-toggle.btn-common:hover,
.btn-common:active:focus,
.btn-common.active:focus,
.open > .dropdown-toggle.btn-common:focus,
.btn-common:active.focus,
.btn-common.active.focus,
.open > .dropdown-toggle.btn-common.focus,
.btn-common:focus,
.btn-common.focus {
  /*border-color: #64a0ef!important;*/
  background-color: #ecf0f3 !important;
}

.btn-default {
  border-color: #0070e0;
  background-color: transparent;
  color: #0070e0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-default:hover,
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus,
.btn-default:focus,
.btn-default.focus {
  border-color: #0070e0 !important;
  background-color: rgba(0, 112, 224, 0.08);
  color: #0070e0;
}

.btn-primary {
  border-color: var(--primary-color) !important;
  background-color: var(--primary-color) !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0.9;
}

.btn-primary:hover,
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus,
.btn-primary:focus,
.btn-primary.focus {
  opacity: 1;
  /* border-color: #2182e2 !important; */
  /* background-color: #2182e2 !important; */
}

.btn-success {
  border-color: #63cb89 !important;
  background-color: #63cb89 !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-success:hover,
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus,
.btn-success:focus,
.btn-success.focus {
  border-color: #6fd293 !important;
  background-color: #6fd293 !important;
}

.btn-info {
  border-color: #5893df !important;
  background-color: #5893df !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-info:hover,
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus,
.btn-info:focus,
.btn-info.focus {
  border-color: #64a0ef !important;
  background-color: #64a0ef !important;
}

.btn-warning {
  border-color: #f1c205 !important;
  background-color: #f1c205 !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-warning:hover,
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus,
.btn-warning:focus,
.btn-warning.focus {
  border-color: #f5ca1e !important;
  background-color: #f5ca1e !important;
}

.btn-danger {
  border-color: #ec5e69 !important;
  background-color: #ec5e69 !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-danger:hover,
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus,
.btn-danger:focus,
.btn-danger.focus {
  border-color: #f5707a !important;
  background-color: #f5707a !important;
}

.btn-disabled {
  border-color: #0070e0 !important;
  background-color: transparent !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-disabled:hover {
  border: none !important;
}

.btn-social {
  width: 45px;
  height: 45px;
  padding: 10px 0px;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-social:hover {
  color: #fff;
  opacity: 0.8;
}

.btn-social:focus {
  color: #fff;
}

.btn-facebook {
  background-color: #3b5998;
  color: #fff;
}

.btn-twitter {
  background-color: #55acee;
  color: #fff;
}

.btn-google {
  background-color: #dd4b39;
  color: #fff;
}

.btn-youtube {
  background-color: #bb0000;
  color: #fff;
}

.btn-vimeo {
  background-color: #1eb8eb;
  color: #fff;
}

.btn-dribbble {
  background-color: #ea4c89;
  color: #fff;
}

.btn-instagram {
  background-color: #3f729b;
  color: #fff;
}

.btn-pinterest {
  background-color: #bd081b;
  color: #fff;
}

.btn-vk {
  background-color: #507299;
  color: #fff;
}

.btn-rss {
  background-color: #ff6600;
  color: #fff;
}

.btn-flickr {
  background-color: #ff0084;
  color: #fff;
}

/* Modals */

.modal-content {
  border-radius: 4px;
  box-shadow: none;
  border: none;
}

.modal-header,
.modal-footer {
  padding: 25px;
  border: none;
}

.modal-header h4 {
  color: #637282;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0;
  font-size: 14px;
}

.modal-body {
  padding: 0 25px;
}

/* Progress Bars */

.progress {
  background-color: rgba(120, 130, 140, 0.13);
  box-shadow: none !important;
  height: 4px;
  border-radius: 0;
  margin-bottom: 18px;
  overflow: hidden;
}

.progress-bar {
  background-color: #b1b4b8;
  box-shadow: none;
  font-size: 8px;
  font-weight: 600;
  line-height: 12px;
}

.progress-bar-success {
  background-color: #63cb89;
}

.progress-bar-info {
  background-color: #5893df;
}

.progress-bar-warning {
  background-color: #f1c205;
}

.progress-bar-danger {
  background-color: #ec5e69;
}

.progress.progress-sm {
  height: 8px !important;
}

.progress.progress-sm .progress-bar {
  line-height: 10px;
}

.progress.progress-md {
  height: 15px !important;
}

.progress.progress-md .progress-bar {
  line-height: 15px;
}

.progress.progress-lg {
  height: 20px !important;
}

.progress.progress-lg .progress-bar {
  line-height: 20px;
}

.progress-rounded {
  border-radius: 60px;
}

/* Navs & Tabs */

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  border-color: #e5e9ec;
  border-bottom-color: transparent;
  color: #1c61d0 !important;
}

.nav-tabs {
  border-color: #e5e9ec;
}

.nav-tabs > li > a {
  color: #2b2b2b;
}

.nav > li > a:focus,
.nav > li > a:hover {
  /*background-color: #fff;*/
}

.nav-tabs > li > a:hover {
  border-color: #edf1f4;
  border-bottom: transparent;
}

.nav-justified.nav-tabs > li > a:hover {
  border-color: #ddd;
  border-bottom: transparent;
}

.nav-tabs > li > a {
  border-radius: 0 !important;
  border-top-left-radius: 3px !important;
  border-top-right-radius: 3px !important;
  color: #777;
  border-bottom: 1px solid #e2e2e2;
}

.nav-tabs {
  border-bottom: 1px solid #e2e2e2 !important;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  border: 1px solid transparent;
  color: #1b2733;
  /*font-weight: 700;*/
}

div:not(.tabs-right):not(.tabs-left) > .nav-tabs > li:not(.active) > a:hover {
  background: transparent;
  border-color: transparent;
  border-bottom: 1px solid #b6babd;
  color: #3d464d;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  /*color: #555;*/
  color: #1c61d0;
  cursor: default;
  background-color: transparent;
  /*border-bottom-color: #1B2733;*/
  border-bottom-color: var(--primary-color);
}

.nav-pills > li > a {
  color: #777;
  border-radius: 0px !important;
}

.nav-pills > li > a {
  border-radius: 4px !important;
  padding: 10px 15px !important;
  margin-right: 5px !important;
}

.nav-pills > li > a:hover {
  background-color: #e2e2e2;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #1b2733;
}

.tabs-left .nav > li:first-child > a {
  margin-left: 15px !important;
}

.tabs-right .nav > li > a {
  text-align: right;
  margin-left: -1px !important;
  margin-right: 0px;
  padding-right: 15px;
}

.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
  border-bottom: 0;
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: none;
}

.tab-content > .active,
.pill-content > .active {
  display: block;
}

.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
  float: none;
}

.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
  /*min-width: 74px;*/
  margin-bottom: 0;
  border-bottom: 0;

  width: 180px;
  /*max-width: 150px;*/
  padding-right: 20px;
}

.tabs-left > .nav-tabs {
  float: left;
  margin-right: 19px;
  border-right: 1px solid #e2e2e2;
  border-bottom: 0 !important;
}

.tabs-left > .nav-tabs > li > a {
  margin-right: -1px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
  background: transparent;
  border-color: transparent;
  border-right: 1px solid #b6babd !important;
  border-bottom: none;
  color: #3d464d;
}

.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
  border-color: transparent;
  border-right-color: #1b2733 !important;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px !important;
  border-bottom-left-radius: 3px !important;
  border-top-right-radius: 0 !important;
}

.tabs-right > .nav-tabs {
  float: right;
  margin-left: 19px;
  border-left: 1px solid #e2e2e2;
  border-bottom: 0 !important;
}

.tabs-right > .nav-tabs > li > a {
  padding-left: 15px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
  background: transparent;
  border-color: transparent;
  border-left: 1px solid #b6babd !important;
  border-bottom: none;
  color: #3d464d;
}

.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
  border-color: transparent;
  border-left-color: #1b2733 !important;
  border-bottom: none;
  border-top-right-radius: 3px !important;
  border-bottom-right-radius: 3px !important;
  border-top-left-radius: 0 !important;
}

.nav-tabs.nav-justified > li > a {
  margin-bottom: -1px;
  margin-left: 0px;
}

.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:hover {
  border-color: transparent;
  border-bottom: 1px solid #1b2733;
  color: #1b2733;
}

.nav-tabs.nav-justified {
  border-bottom: 1px solid #e2e2e2;
}

.tab-content {
  margin-top: 15px;
}

.panel-default > .panel-heading {
  color: #333;
  background-color: var(--primary-color);
  border-color: #e6e8eb;
}

/* Forms */
.form-control {
  box-shadow: none !important;
  color: #8a8c8c;
  border-radius: var(--input-border-radius);
  padding-left: 12px;
  padding-right: 12px;
  height: 36px;
  /*border-color: var(--border-color);*/
  border-color: #ddd;
}
.form-control::placeholder {
  color: #bbb;
}

.form-control:focus {
  /*border-color: #a0aab5;*/
  border-color: var(--primary-color);
  box-shadow: none;
}

div.checker,
div.checker input,
div.checker span {
  width: 18px;
  height: 18px;
}

input[type="checkbox"],
input[type="radio"] {
  margin-right: 4px;
}

input.form-control.input-rounded {
  border-radius: 60px;
}

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #0070e0;
  border-radius: 15px;
}

.pager .disabled > a,
.pager .disabled > a:focus,
.pager .disabled > a:hover,
.pager .disabled > span {
  opacity: 0.65;
  border: 1px solid #0070e0;
  color: #0070e0;
}

.input-group-addon {
  border-radius: 4px;
  background-color: #f7f7f7;
  border-color: #c1c7cd;
}

.bootstrap-tagsinput {
  border-radius: 4px;
  box-shadow: none;
  border-color: #d7d7d7;
  padding: 6px 12px;
}

.note-editor .note-toolbar,
.note-editor .note-statusbar {
  background: transparent;
}

.note-editor {
  border-radius: 4px;
}

.note-editor,
.note-editor .note-toolbar,
.note-editor .note-statusbar .note-resizebar {
  border-color: #d7d7d7;
}

.has-success .checkbox,
.has-success .checkbox-inline,
.has-success .control-label,
.has-success .help-block,
.has-success .radio,
.has-success .radio-inline,
.has-success.checkbox label,
.has-success.checkbox-inline label,
.has-success.radio label,
.has-success.radio-inline label {
  color: #63cb89;
}

.has-success .form-control {
  border-color: #63cb89;
}

.has-success .form-control:focus {
  border-color: #6dd191;
}

.has-warning .checkbox,
.has-warning .checkbox-inline,
.has-warning .control-label,
.has-warning .help-block,
.has-warning .radio,
.has-warning .radio-inline,
.has-warning.checkbox label,
.has-warning.checkbox-inline label,
.has-warning.radio label,
.has-warning.radio-inline label {
  color: #f1c205;
}

.has-warning .form-control {
  border-color: #f1c205;
}

.has-warning .form-control:focus {
  border-color: #f5ca1e;
}

.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .control-label,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.checkbox label,
.has-error.checkbox-inline label,
.has-error.radio label,
.has-error.radio-inline label {
  color: #ec5e69;
}

.has-error .form-control {
  border-color: #ec5e69;
}

.has-error .form-control:focus {
  border-color: #f5707a;
}

.dd-handle {
  border-radius: 0;
  background-color: #f7f7f7;
  border: none;
  font-weight: 500;
  color: #2b2b2b;
}

.dd3-content {
  border: none;
  background-color: #f7f7f7;
  font-weight: 500;
}

.dd3-handle {
  height: 36px;
}

.dropzone {
  min-height: 274px;
  border: 1px solid #d8d8d8;
}

.plupload_button {
  padding: 6px 12px;
  border-radius: 0 !important;
  font-size: 14px;
  border-color: #d7d7d7;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.plupload_button:hover {
  background-color: #e6e9ec;
}

.dropzone.dz-clickable .dz-message {
  line-height: 232px;
  margin: auto;
}

/* Tables */

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  border-color: #e6e8eb;
}

.table > thead > tr > th {
  border-bottom: 1px solid #e6e8eb;
  color: #6a7c8f;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f7f7f7;
}

table.dataTable.display tbody tr.even > .sorting_1,
table.dataTable.order-column.stripe tbody tr.even > .sorting_1,
table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd {
  background-color: #f7f7f7;
}

table.dataTable thead th,
table.dataTable tfoot th {
  font-weight: 400;
}

table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
  font-weight: bold !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  border-radius: 100%;
  border: none;
  box-shadow: none;
  color: #637282 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  border: none;
  box-shadow: none;
  background: #0070e0;
  color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border: none;
  box-shadow: none;
  background: #f1f1f1;
  color: #637282 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.next,
.dataTables_wrapper .dataTables_paginate .paginate_button.previous {
  border-radius: 25px;
}

th {
  font-weight: 400;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  padding: 12px 8px;
}

.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > thead > tr > td.active,
.table > thead > tr > th.active {
  background-color: var(--primary-color);
}

.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > thead > tr > td.success,
.table > thead > tr > th.success {
  background-color: #92d1a9;
}

.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > thead > tr > td.info,
.table > thead > tr > th.info {
  background-color: #75a0d8;
}

.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > thead > tr > td.warning,
.table > thead > tr > th.warning {
  /*background-color: #e8cd61;*/
}

.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > thead > tr > td.danger,
.table > thead > tr > th.danger {
  background-color: #ea7c84;
}

.checkbox label,
.radio label {
  padding-left: 0px;
}

/* Dropdowns */

.dropdown-menu {
  position: absolute;
  top: 100%;
  z-index: 1000;
  display: none;
  float: left;
  list-style: none;
  text-shadow: none;
  padding: 7px 0;
  margin: 10px 0px 0px 0px;
  background-color: #fff;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 1px solid #e5e9ec;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  -ms-border-radius: 0px !important;
  -o-border-radius: 0px !important;
  border-radius: 4px !important;
  -webkit-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li {
  font-size: 14px;
  font-weight: 400;
}

.dropdown-menu li a:hover {
  background: #f7f7f7;
  text-decoration: none;
}

.navbar-nav > li > .dropdown-menu {
  margin-top: 25px !important;
}

.dropdown-menu:before {
  position: absolute;
  top: -8px;
  left: 9px;
  right: auto;
  display: inline-block !important;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #e5e9ec;
  border-left: 8px solid transparent;
  content: "";
}

.dropdown-menu:after {
  position: absolute;
  top: -7px;
  left: 10px;
  right: auto;
  display: inline-block !important;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
  border-left: 7px solid transparent;
  content: "";
}

.dropdown.dropup > .dropdown-menu:after,
.dropdown.dropup > .dropdown-menu:before,
.btn-group.dropup > .dropdown-menu:after,
.btn-group.dropup > .dropdown-menu:before,
.dropdown-toggle.dropup > .dropdown-menu:after,
.dropdown-toggle.dropup > .dropdown-menu:before {
  display: none !important;
}

.navbar-left .dropdown-menu:before,
.dropdown-menu.dropdown-menu-left:before {
  left: 16px;
  right: auto;
}

.navbar-left .dropdown-menu:after,
.dropdown-menu.dropdown-menu-left:after {
  left: 17px;
  right: auto;
}

.navbar-right .dropdown-menu:before,
.dropdown-menu.dropdown-menu-right:before {
  right: 16px;
  left: auto;
}

.navbar-right .dropdown-menu:after,
.dropdown-menu.dropdown-menu-right:after {
  right: 17px;
  left: auto;
}

.dropdown-menu.title-caret:after {
  border-bottom: 7px solid #fff;
}

.dropdown-menu > li.active > a:hover,
.dropdown-menu > li.active > a:focus,
.dropdown-menu > li.active > a:active,
.dropdown-menu > li.active > a,
.dropdown-menu > li.active > a:hover,
.dropdown-menu > li.active > a:focus {
  background: #f7f7f7;
  color: #2b2b2b;
}

.drop-title {
  display: block;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: 1px solid #e5e9ec;
  background: #fff;
  padding: 12px;
  color: #6a6a6a;
  margin: 0px;
}

.drop-title-link {
  float: right;
  display: inline !important;
  padding: 0px !important;
  height: 18px;
  width: 18px;
  overflow: hidden;
  vertical-align: text-top;
  line-height: 18px !important;
  text-align: center;
  border-radius: 100%;
}

.drop-title-link i {
  margin-right: 0 !important;
}

.dropdown-menu li.drop-all a {
  padding: 10px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  color: #707070;
  background: #fff;
  font-size: 14px;
}

.dropdown-menu li.drop-all a:hover {
  background: #f7f7f7;
}

.dropdown-xs {
  min-width: 100px;
  border-radius: 2px !important;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.dropdown-xs li a {
  padding: 4px 10px 4px !important;
}

.dropdown-sm {
  width: 190px;
}

.dropdown-md {
  width: 230px;
}

.dropdown-lg {
  width: 280px;
}

.dropdown-content {
  padding-top: 0;
  padding-bottom: 0;
}

.dropdown-menu li a {
  padding: 8px 15px;
  color: #5f5f5f;
  font-size: 14px;
  font-weight: 400;
  display: block;
}

.dropdown-menu li a i {
  margin-right: 10px;
}

.dropdown-menu li.no-link {
  padding: 7px 10px 7px 10px;
}

.dropdown-menu li.li-group {
  border-bottom: 1px solid #e5e9ec;
  padding: 5px 0px 5px 0px;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eee;
  border-color: transparent;
}

.right-sidebar-top .nav > li > a {
  padding: 11px 15px;
}

.page-right-sidebar-inner .tab-content {
  margin-top: 0;
}

.nav > li > a {
  font-weight: 400;
  margin: 0 15px;
  padding: 10px 0;
}

.nav-tabs.nav > li:first-child > a {
  margin-left: 0px;
}

.nav-pills.nav > li:first-child > a {
  margin-left: 0px;
}

.navbar .dropdown .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  margin-top: 40px !important;
}

.navbar .dropdown .dropdown-menu.dropdown-list li:first-child {
  margin-top: 5px;
}

.navbar .dropdown .dropdown-menu.dropdown-list li:last-child {
  margin-bottom: 5px;
}

.navbar .dropdown .dropdown-menu.dropdown-list.theme-settings li:first-child {
  margin-top: 0;
}

.navbar .open .dropdown-menu {
  visibility: visible;
  opacity: 1;
  margin-top: 15px !important;
}

.navbar .dropdown {
  display: inline-block;
}

.dropdown-notifications {
  height: auto !important;
  max-height: 250px;
}

.dropdown-notifications .dropdown-oc li a {
  padding-right: 0;
  border-bottom: 1px solid #e5e9ec;
}

.dropdown-notifications .dropdown-oc li a span.notification-badge {
  width: 30px;
  height: 30px;
  display: block;
  line-height: 30px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
  margin-top: 10px;
}

.dropdown-notifications .dropdown-oc li a span.notification-badge i {
  margin-right: 0px;
}

.dropdown-notifications .dropdown-oc li a span.notification-info {
  width: 204px;
  display: block;
  padding: 5px 15px;
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
}

.dropdown-notifications .dropdown-oc li a span.notification-info small {
  color: #aaa;
}

.popover {
  border: 1px solid #e5e9ec;
  border-radius: 4px;
  box-shadow: none;
}

.popover.top > .arrow {
  border-top-color: #e5e9ec;
}

.popover.right > .arrow {
  border-right-color: #e5e9ec;
}

.popover-title {
  padding: 15px 15px 10px 15px;
  color: #637282;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  background-color: transparent;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  font-family: "Ubuntu", sans-serif;
}

.popover-content {
  padding: 10px 15px 15px 15px;
}

/* Panels */

#accordion .panel,
#accordion2 .panel {
  padding: 0;
}

#accordion .panel-title,
#accordion2 .panel-title {
  padding: 20px;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body,
.panel-primary > .panel-heading + .panel-collapse > .panel-body,
.panel-success > .panel-heading + .panel-collapse > .panel-body,
.panel-warning > .panel-heading + .panel-collapse > .panel-body,
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  padding: 20px;
}

.panel-group .panel {
  border-radius: 4px;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body,
.panel-primary > .panel-heading + .panel-collapse > .panel-body,
.panel-success > .panel-heading + .panel-collapse > .panel-body,
.panel-info > .panel-heading + .panel-collapse > .panel-body,
.panel-warning > .panel-heading + .panel-collapse > .panel-body,
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-color: #fff;
}

.panel-default {
  border-color: #e6e8eb;
}

.panel-primary {
  /*border-color: #0A59B3;*/
  /*background-color: #0070E0;*/
  color: #0070e0;
}
.panel-primary .stats-number {
  /*text-shadow: 1px 1px 0 #000;*/
}

.panel-success {
  border-color: #63cb89;
}

.panel-info {
  border-color: #5893df;
}

.panel-warning {
  /*border-color: #F1C205;*/
  color: #f1c205;
}

.panel-danger {
  border-color: #ec5e69;
}

.panel-primary > .panel-heading a,
.panel-success > .panel-heading a,
.panel-info > .panel-heading a,
.panel-warning > .panel-heading a,
.panel-danger > .panel-heading a {
  color: #fff !important;
}

.panel-primary > .panel-heading {
  background-color: #0070e0;
  border-color: #0070e0;
}

.panel-success > .panel-heading {
  background-color: #63cb89;
  border-color: #63cb89;
}

.panel-info > .panel-heading {
  background-color: #5893df;
  border-color: #5893df;
}

.panel-warning > .panel-heading {
  background-color: #f1c205;
  border-color: #f1c205;
}

.panel-danger > .panel-heading {
  background-color: #ec5e69;
  border-color: #ec5e69;
}

.panel-default .panel-title > .small,
.panel-default .panel-title > .small > a,
.panel-default .panel-title > a,
.panel-default .panel-title > small,
.panel-default .panel-title > small > a {
  color: #2b2b2b;
}

/*------------------------------------------------------------
[4. Layout]
------------------------------------------------------------*/

/* Page Container */

.page-container {
  min-height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.page-container:not(.container) {
  width: 100%;
}

/* Page Header */

.page-header {
  padding-bottom: 0px;
  margin: 0px;
  border-bottom: solid 1px #f5f5f5;
  height: 58px;
  position: relative;
  padding-right: 25px;
  background: #fff;
  /*box-shadow: 0 1px 10px #F6F6F6;*/
}

.page-header-fixed .page-header {
  position: fixed;
  z-index: 99;
  left: 240px;
  right: 0;
  top: 0;
}

.page-header-fixed .page-container.container .page-header {
  padding-right: 15px;
  padding-left: 195px;
  left: 0;
  right: 0;
  margin: auto;
}

.page-header-fixed.page-sidebar-collapsed
  .page-container.container
  .page-header {
  padding-right: 15px;
  padding-left: 75px;
  left: 0;
  right: 0;
  margin: auto;
}

@media (min-width: 768px) {
  .page-header-fixed .page-container.container .page-header {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .page-header-fixed .page-container.container .page-header {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .page-header-fixed .page-container.container .page-header {
    width: 1170px;
  }
}

.page-sidebar-collapsed.page-header-fixed .page-header {
  left: 60px;
}

.page-header .form-control {
  background-color: #fff;
  color: #fff;
}

.page-header .form-control::placeholder {
  color: #cfd8e7;
}

.page-sidebar-fixed .page-header {
  z-index: 41;
}

.page-header .navbar-default {
  background-color: #fff;
  border: 0;
  margin-bottom: 0;
  height: 56px;
  border-radius: 0;
}

.page-header .navbar-default .container-fluid,
.page-header .navbar-default .navbar-collapse {
  height: 56px !important;
}

.page-header .navbar-default .navbar-brand i.fixed-sidebar-button-active {
  background: #fff;
}

.page-header .navbar-nav > li.v-divider {
  display: block;
  width: 1px;
  height: 26px;
  background: #f3f3f3;
  margin: 21px 15px;
}

.page-header .navbar-nav > li > a {
  padding-top: 20px;
  padding-bottom: 20px;
  height: 56px;
  color: #4f4f4f;
  font-size: 11px;
  text-transform: uppercase;
}

.page-header .navbar-nav > li > a:hover,
.page-header .navbar-nav > li > a:link,
.page-header .navbar-nav > li > a:focus {
  color: #637282 !important;
}

.page-header .navbar-nav > li > a > img {
  width: 36px;
  margin-top: -10px;
  display: inline-block;
  vertical-align: top;
}

.page-header .navbar-nav > li.user-dropdown > a {
  margin-right: 0px;
}

.open:not(.active-page) > a {
  color: #71869b;
  font-weight: 500;
}

.active-page.open > a {
  font-weight: 500;
}

.active-page.open > a i {
  color: #71869b;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
  color: #1f2229;
  background-color: transparent;
}

.page-header .navbar-collapse {
  padding-right: 0px;
  padding-left: 0px;
  overflow-x: visible;
}

@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .page-header .navbar-nav > li > a > i {
    font-size: 14px;
    vertical-align: text-top;
  }
  .page-header .navbar-nav > li > a > i[class^="icon-"] {
    font-size: 19px;
    vertical-align: top;
  }
}

/* Page Right Sidebar */

.page-right-sidebar {
  width: 231px;
  background: #fff;
  border-left: 1px solid #efefef;
  height: 100%;
  min-height: 100%;
  right: -231px;
  top: 0;
  z-index: 42;
  position: fixed;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}

.page-right-sidebar.visible {
  right: 0;
}

.page-right-sidebar#chat-right-sidebar {
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  opacity: 0;
}

.page-right-sidebar#chat-right-sidebar.visible {
  opacity: 1;
}

.right-sidebar-top {
  background: #fff;
  display: block;
  height: 56px;
  border-bottom: 1px solid #efefef;
}

#chat-right-sidebar .right-sidebar-top {
  height: 56px;
  border-bottom: 1px solid #e5e5e5;
}

.page-right-sidebar .right-sidebar-close {
  float: right;
  color: #4f5862;
  opacity: 0.6;
  font-size: 16px;
  padding: 10px 20px;
  height: 55px;
  line-height: 34px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.page-right-sidebar .right-sidebar-close:hover {
  background: transparent;
  opacity: 1;
}

.page-right-sidebar .chat-sidebar-close {
  float: left;
  color: #4f5862;
  opacity: 0.6;
  font-size: 22px;
  padding: 17px 20px;
  height: 36px;
  line-height: 22px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.page-right-sidebar .chat-sidebar-close:hover {
  background: transparent;
  opacity: 1;
}

.right-sidebar-tabs {
  float: left;
  width: 174px;
  height: 55px;
}

.right-sidebar-tabs li {
  width: 50%;
}

.right-sidebar-tabs a {
  height: 55px;
  line-height: 33px !important;
  font-size: 12px;
  color: #4f5862;
  opacity: 0.6;
  text-transform: uppercase;
  font-weight: 700 !important;
  text-align: center;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border: 0 !important;
  margin-right: 0 !important;
  border-radius: 0 !important;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  margin-left: 0 !important;
}

.right-sidebar-tabs .nav-tabs {
  border-bottom: 0 !important;
}

.right-sidebar-tabs .nav-tabs > li.active > a,
.right-sidebar-tabs .nav-tabs > li.active > a:focus,
.right-sidebar-tabs .nav-tabs > li.active > a:hover {
  cursor: default;
  background-color: #fff;
  border: none;
  color: #4f5862 !important;
  opacity: 1 !important;
}

.right-sidebar-tabs > .nav-tabs > li > a:focus,
.right-sidebar-tabs > .nav-tabs > li > a:hover {
  text-decoration: none;
  background-color: transparent;
  opacity: 1;
  border-bottom-color: transparent !important;
}

.chat-list .chat-item {
  overflow: hidden;
  position: relative;
  display: block;
  border-bottom: 1px solid #efefef;
  padding: 5px 0;
}

.chat-list .chat-item:last-child {
  border-bottom: 1px solid transparent;
}

.chat-list .chat-item:hover {
  background: #f9f9f9;
}

.chat-list .chat-item img {
  float: left;
  width: 40px;
  border-radius: 100%;
  margin: 10px;
  margin-left: 20px;
}

.chat-list .chat-item .user-avatar {
  position: relative;
  display: inline-block;
  overflow: hidden;
  float: left;
}

.chat-list .chat-item.active-user .user-avatar:after {
  content: " ";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #44aea1;
  position: absolute;
  bottom: 9px;
  right: 9px;
  border: 2px solid #fff;
}

.chat-list .chat-item .chat-info {
  float: left;
  overflow: hidden;
  padding: 13px 0;
  width: 100px;
}

.chat-list .chat-item .chat-info span.chat-author {
  display: block;
  color: #4f5862;
  opacity: 0.6;
  font-size: 13px;
  line-height: 15px;
  padding: 0;
  margin-bottom: 4px;
}

.chat-list .chat-item .chat-info span.chat-text {
  display: block;
  color: #4f5862;
  opacity: 0.6;
  font-size: 13px;
  line-height: 15px;
  padding: 0;
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.chat-list .chat-item .chat-info span.chat-time {
  display: block;
  color: #4f5862;
  opacity: 0.6;
  font-size: 12px;
  line-height: 15px;
  padding: 0;
  margin: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -7.5px;
}

.chat-list .chat-item.unread .chat-info span {
  font-weight: 600;
  opacity: 1;
}

.load-more-messages {
  display: block;
  text-align: center;
  width: 100%;
  margin: 15px auto;
  font-size: 14px;
  color: #4f5862;
  opacity: 0.6;
}

.load-more-messages:hover {
  color: #4f5862;
  opacity: 1;
}

.chat-top-info {
  float: left;
  padding: 10px 0px 10px 20px;
}

.chat-top-info span {
  display: block;
}

.chat-top-info span.chat-name {
  color: #555;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
}

.chat-top-info span.chat-state {
  color: #4f5862;
  font-size: 12px;
  opacity: 0.6;
}

.chat-more-nav {
  float: right;
  display: block;
  position: relative;
  width: 15px;
  height: 15px;
  margin: 13px 5px;
  text-align: center;
}

.chat-more-nav > a {
  display: block;
  position: relative;
  font-size: 18px;
  width: 100%;
  height: 100%;
}

.chat-start-date {
  width: 100%;
  color: #767676;
  font-size: 12px;
  text-align: center;
  padding: 10px 0;
}

.page-right-sidebar-inner {
  height: 100%;
}

.right-sidebar-content {
  height: calc(100% - 56px);
}

.right-sidebar-content .slimScrollDiv {
  height: calc(100% - 56px) !important;
  width: 100% !important;
}

.right-sidebar-chat {
  height: 100% !important;
  padding-bottom: 20px;
  display: block;
}

.chat-bubble.them .chat-bubble-img-container {
  float: left;
}

.chat-bubble .chat-bubble-text-container {
  max-width: 60%;
  display: block;
}

.chat-bubble.them .chat-bubble-text-container {
  float: left;
  clear: right;
}

.chat-bubble.me .chat-bubble-text-container {
  float: right;
  clear: right;
}

.chat-bubble {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
}

.chat-bubble img {
  width: 38px;
  height: 38px;
  border-radius: 100%;
}

.chat-bubble.them img {
  margin-left: 20px;
}

.chat-bubble span.chat-bubble-text {
  padding: 5px 10px;
  min-height: 28px;
  margin: 0 10px;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  float: left;
  clear: both;
  word-wrap: break-word;
  max-width: 100%;
}

.chat-bubble.them span.chat-bubble-text {
  margin-left: 10px;
  background: #0070e0;
  color: #fff;
  border-radius: 4px;
  border-top-left-radius: 0px;
}

.chat-bubble.me span.chat-bubble-text {
  margin-left: 10px;
  margin-right: 30px;
  background: #f1f1f1;
  float: right;
  border-radius: 4px;
  border-top-right-radius: 0px;
}

.chat-bubble span.chat-bubble-text {
  margin-top: 4px;
}

.chat-bubble span.chat-bubble-text:first-child {
  margin-top: 0;
}

.chat-bubble span.chat-bubble-text:last-child {
  margin-bottom: 5px;
}

.chat-bubble span.chat-bubble-text:first-child:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}

.chat-bubble.them span.chat-bubble-text:first-child:before {
  border-width: 0 10px 10px 0;
  border-color: transparent #0070e0 transparent transparent;
  position: absolute;
  top: 0;
  left: -9px;
}

.chat-bubble.me span.chat-bubble-text:first-child:before {
  border-width: 10px 10px 0 0;
  border-color: #f1f1f1 transparent transparent;
  position: absolute;
  top: 0;
  right: -9px;
}

.chat-write input {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-top: 1px solid #f1f1f1;
  height: 56px;
  border-radius: 0;
  padding: 0 20px;
}

.chat-write input:focus {
  box-shadow: none;
  border-color: #f1f1f1;
}

.right-sidebar-settings .settings-title {
  padding: 10px 25px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  display: block;
  margin: 5px 0 0 0;
  background: transparent;
  color: #4f5862;
  opacity: 0.6;
}

span.chat-title {
  padding: 10px 25px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  display: block;
  margin: 5px 0 0 0;
  background: transparent;
  color: #4f5862;
  opacity: 0.6;
}

.sidebar-setting-list li {
  padding: 12px 25px;
  font-size: 13px;
  color: #4f5862;
}

.sidebar-setting-list li:last-child {
  border-color: transparent;
}

.sidebar-setting-list li .switchery {
  float: right;
}

/* Page Sidebar */

.page-sidebar {
  width: 240px;
  background: var(--deep-color);
  /*background: #F5F5F5;*/
  min-height: 100%;
  float: left;
  z-index: 100;
  position: relative;
}

.page-sidebar-fixed .page-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 100;
  height: 100% !important;
}

.page-sidebar-fixed .page-sidebar .page-sidebar-inner {
  height: 100% !important;
  overflow: hidden;
  padding-top: 50px !important;
}

body:not(.page-sidebar-fixed) .page-sidebar .slimScrollDiv {
  height: auto !important;
}

.page-sidebar-fixed .page-sidebar,
.page-header-fixed .page-sidebar,
.page-sidebar-fixed.page-header-fixed .page-sidebar {
  padding-top: 58px;
  padding-bottom: 20px;
}

.logo-box {
  width: 240px;
  padding: 18px 30px 18px 30px;
  color: #fff !important;
  /*background: var(--primary-color);*/
  font-weight: 800;
  font-size: 18px;
  display: block;
  text-decoration: none;
  z-index: 9999;
  text-transform: uppercase;
  line-height: 30px;

  height: 58px;
}

.page-header-fixed .logo-box {
  position: fixed;
  top: 0;
}

.logo-box:hover,
.logo-box:active,
.logo-box:link,
.logo-box:focus {
  color: #fff;
  text-decoration: none;
}

.logo-box i {
  margin-left: 12px;
  float: right;
  height: 14px;
  margin-top: 9px;
  font-size: 13px;
}

.page-sidebar-fixed .logo-box {
  position: fixed;
  left: auto;
  border-bottom: none;
  z-index: 9999;
  top: 0;
}

.page-sidebar-fixed .logo-box {
  color: #fff;
}

.page-sidebar-menu {
  margin-top: 20px;
}

.page-sidebar-fixed .page-sidebar .accordion-menu {
  margin-top: 10px;
}

.page-sidebar-menu ul {
  padding: 0;
  margin: 0;
}

.page-sidebar-menu ul li {
  list-style-type: none;
  position: relative;
  margin-bottom: 15px;
}

.page-sidebar-menu ul li a {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--sidebar-link-color);
  line-height: 1.5 !important;
  -webkit-font-smoothing: antialiased;
  position: relative;
  padding: 5px 14px;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 6px;
}

.page-sidebar-menu ul li.active-page > a i {
  color: inherit !important;
}

.page-sidebar-menu ul li.active-page > a i.accordion-icon {
  color: var(--sidebar-active-color);
}

.page-sidebar-menu ul li.active-page > a {
  color: var(--sidebar-active-color);
}

.page-sidebar-menu ul li.active-page > a {
  position: relative;
  background: rgb(19, 87, 196);
  color: #fff;
  /*background: #D9E6FF;*/
  /*color: #508DDD;*/
}

.page-sidebar-menu ul li a:link {
  text-decoration: none;
}

.page-sidebar-menu > ul > li > a:hover {
  opacity: 0.8;
}

.page-sidebar-collapsed .page-sidebar-menu > ul > li > a:hover {
  opacity: 1;
}

.page-sidebar-menu > ul > li > a:hover,
.page-sidebar-menu > ul > li > a:hover i.accordion-icon {
  text-decoration: none;
}

.page-sidebar-menu ul li a i.menu-icon {
  margin-right: 10px;
  font-size: 17px;
  vertical-align: middle;
  line-height: 22px;

  color: inherit;
}

.page-sidebar-menu ul li a span {
  vertical-align: middle;
}

.page-sidebar-menu .menu-header {
  display: block;
  width: 100%;
  margin: 30px 0 15px;
  text-transform: uppercase;
  padding-left: 30px;
  padding-right: 25px;
  font-weight: 500;
  font-size: 12px;
}
.page-sidebar-menu .menu-header span {
  display: inline-block;
  background: #b9c0cc;
  color: #000;
  padding: 2px 4px 1px;
  opacity: 0.7;
}

.page-sidebar-menu ul li.menu-divider {
  display: block;
  /*width: 100%;*/
  height: 1px;
  background-color: #063d3f;
  margin: 20px 30px 20px;
}

.page-sidebar-menu ul li a i.accordion-icon {
  float: right;
  font-size: 15px;
  vertical-align: text-top;
  color: #596b8c;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  margin-top: 3px;
}

.page-sidebar-menu ul li a span.label {
  margin: 3px 0;
  float: right;
}

.page-sidebar-menu ul li.open a i.accordion-icon {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-3);
}

.page-sidebar-menu ul li .sub-menu a:hover {
  color: #fff;
}

.accordion-menu .sub-menu {
  display: none;
  padding-left: 22px;
  padding-bottom: 8px;
  background: var(--primary-color);
}

.page-sidebar-collapsed .accordion-menu .sub-menu {
  padding-bottom: 0px;
  padding-left: 0px;
}

.accordion-menu .sub-menu li:not(.animation) a {
  opacity: 0;
}

.accordion-menu .sub-menu li.animation a {
  opacity: 1;
}

.accordion-menu .sub-menu li a {
  border-top: 0;
  padding: 7px 20px 7px 45px;
  font-size: 13px;
  color: #f5f5f5;
}

.accordion-menu .sub-menu li a.active {
  color: var(--brand-color);
}

.accordion-menu .sub-menu li a.active:hover {
  color: var(--brand-color) !important;
}

/* Collapsed Sidebar */

.page-sidebar-collapsed .page-sidebar,
.page-sidebar-collapsed .logo-box {
  width: 60px;
}

.page-sidebar-collapsed.page-sidebar-fixed .page-sidebar {
  height: 100%;
}

.page-sidebar-collapsed .logo-box {
  padding: 40px 10px 11px 10px;
  text-align: center;
  height: 81px;
}

.page-sidebar-collapsed .logo-box span {
  display: none;
}

.page-sidebar-collapsed .logo-box i {
  margin: 9px auto;
  float: none;
}

.page-sidebar-collapsed:not(.page-sidebar-fixed) .page-sidebar .slimScrollDiv {
  overflow: visible !important;
  height: calc(100% - 83px) !important;
}

.page-sidebar-collapsed .page-sidebar .page-sidebar-inner {
  height: 100%;
  overflow-y: hidden !important;
  overflow-x: visible !important;
}

.page-sidebar .slimScrollBar {
  display: none !important;
}

.page-sidebar-collapsed .page-sidebar-menu > ul > li {
  width: 60px;
  position: relative;
}

.page-sidebar-collapsed .page-sidebar-menu > ul > li > a {
  width: 60px;
  padding: 14px 21.5px;
  position: relative;
}

.page-sidebar-collapsed .page-sidebar-menu > ul > li > a > i.menu-icon {
  margin-right: 20.5px;
}

.page-sidebar-collapsed .page-sidebar-menu ul li .sub-menu,
.page-sidebar-collapsed .page-sidebar-menu ul li.active-page .sub-menu,
.page-sidebar-collapsed .page-sidebar-menu ul li.open .sub-menu {
  display: none !important;
  width: 170px;
}

.page-sidebar-collapsed .page-sidebar-menu ul li a span:not(.label) {
  padding-left: 25px;
}

.page-sidebar-collapsed .page-sidebar-menu ul li a span,
.page-sidebar-collapsed .page-sidebar-menu ul li a i.accordion-icon {
  display: none;
}

.page-sidebar-collapsed .page-sidebar-menu ul li .sub-menu {
  position: absolute;
  left: 60px;
  z-index: 9999;
  padding-bottom: 14px;
}

.page-sidebar-collapsed .page-sidebar-menu ul li .sub-menu a {
  opacity: 1;
  padding: 8px 25px 8px 25px;
}

.page-sidebar-collapsed .page-sidebar-menu ul li a:hover + .sub-menu,
.page-sidebar-collapsed .page-sidebar-menu ul li .sub-menu:hover,
.page-sidebar-collapsed .page-sidebar-menu ul li:hover a span,
.page-sidebar-collapsed .page-sidebar-menu ul li a:hover span {
  display: inline !important;
}

.page-sidebar-collapsed .page-sidebar-menu > ul > li:hover > a {
  width: 230px;
  background: #f7f7f7;
}

.page-sidebar-collapsed .page-sidebar.fixed-sidebar-scroll .slimScrollDiv {
  width: 260px !important;
}

/* Search */

.search-form {
  left: 0;
  right: 0;
  position: absolute;
  background: #fff;
  height: 56px;
  z-index: 41;
  margin-top: -81px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  font-weight: 400;
  opacity: 0;
}

.search-form input {
  border: none;
  height: 56px;
  border-radius: 0;
  box-shadow: none;
  padding-left: 25px;
  padding-bottom: 7px;
  color: #3d464c !important;
}

.search-form #close-search {
  background-color: #fff;
  color: #637282;
  border: none;
  height: 44px;
  border-radius: 50%;
  box-shadow: none;
  margin: 0 40px 6px 0;
  padding: 0 12px;
}

.search-form #close-search i {
  font-size: 20px;
  vertical-align: text-top;
}

.search-form input:focus {
  border: none;
  box-shadow: none;
}

.search-form #close-search:hover,
.search-form #close-search:focus {
  background-color: #f1f1f1 !important;
  opacity: 1;
  border: none;
  outline: 0;
  box-shadow: none;
}

.search-content {
  position: absolute;
  background: #fff;
}

.search-open .search-form {
  margin-top: 0;
  opacity: 1;
}

.dataTables_wrapper .dataTables_filter input {
  box-shadow: none !important;
  border: 1px solid #c1c7cd;
  color: #646464;
  border-radius: 4px;
  padding: 5px 12px;
  height: 32px;
}

.dataTables_wrapper .dataTables_filter input:focus {
  outline: 0;
  outline-offset: 0;
}

/* Page Content */

.page-content {
  min-height: 56px;
  vertical-align: bottom;
  background: #fff;
  width: calc(100% - 240px);
  float: right;
}

.page-sidebar-collapsed .page-content {
  width: calc(100% - 60px);
}

.page-sidebar-fixed .page-content {
  margin-left: 240px;
}

.page-sidebar-fixed.page-sidebar-collapsed .page-content {
  margin-left: 60px;
}

_::-webkit-full-page-media,
_:future,
:root .page-content {
  vertical-align: top;
}

/* Page Inner */

.page-inner {
  position: relative;
  background: #fff;
  min-height: calc(100% - 58px);
  /*min-height: calc(100% - 81px);*/
  /*padding: 5px 40px 42px 30px;*/
}

.page-inner.no-page-title {
  padding-top: 30px;
}

.page-inner.full-page {
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

.page-inner.full-page.no-footer {
  padding-bottom: 0px;
}

.page-inner.full-page .page-footer {
  padding-left: 30px;
  padding-right: 30px;
}

_::-webkit-full-page-media,
_:future,
:root .page-inner {
  padding-bottom: 0px;
}

.page-header-fixed .page-inner {
  margin-top: 58px;
  /*padding-top: 20px;*/
}

.main-sub-header {
  display: inline-block;
  width: 100%;
  border-bottom: solid 1px var(--border-color);
  background: #fff;
}

.wrap {
  padding: 15px 40px 15px 30px;
}
.inner {
  padding: 15px;
}
.page-footer {
  position: absolute;
  bottom: 0;
}
.fixed-inner-cont {
  height: calc(100vh - 58px);
  overflow-y: scroll;
  position: relative;
}
.fixed-inner-cont--left {
  box-shadow: 1px 0 5px #eee;
  padding: 0px 15px 30px;
}
.fixed-inner-cont--right {
  padding-top: 0px;
  padding-right: 40px;
  padding-bottom: 30px;
}

.file-preview-modal {
  position: absolute;
  /*width: calc(100% - 40px);*/
  width: 100%;
  height: 518px;

  top: 0;
  left: 0;
  background: white;
  border: solid 1px #aaa;
  box-shadow: 0 -2px 5px #eee inset;
}
.close-icon {
  display: inline-block;
  background: #f5f5f5;
  width: 36px;
  height: 36px;
  font-size: 30px !important;
  line-height: 1;
  padding-top: 3px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.2s ease;
}
.close-icon:hover {
  opacity: 1;
}
.file-preview-modal__header {
  font-weight: 500;
  border-bottom: solid 1px #eee;
  padding-bottom: 5px;
  background: #eee;
  padding: 10px 15px 5px;
}

.skeleton {
  width: 300px;
}
.skeleton .line {
  width: 320px;
  height: 12px;
  margin-bottom: 12px;
  background-image: linear-gradient(
    90deg,
    #f4f4f4 0px,
    rgba(229, 229, 229, 0.8) 40px,
    #f4f4f4 80px
  );
  background-size: 580px;
  animation: shine-lines 1.5s infinite ease-out;
  /*animation: shine-lines 2s infinite ease-out;*/
}
.skeleton .line {
  margin-top: 11px;
  width: 100%;
}

.skeleton .line--2 {
  width: 80%;
  background-color: #ccc;
}
.skeleton .line--3 {
  width: 100px;
  height: 50px;
  background-color: #ccc;
}
.skeleton .line--4 {
  width: 80%;
  background-color: #ccc;
}
.skeleton .line--5 {
  width: 45%;
  background-color: #ccc;
}
.skeleton .line--6 {
  width: 50px;
  height: 30px;
  background-color: #ccc;
}
.skeleton .line--7 {
  width: 70px;
  height: 70px;
  background-color: #ccc;
  border-radius: 50%;
  margin-bottom: 20px;
}
.skeleton .line--8 {
  width: 30%;
  background-color: #ccc;
}
.skeleton .line--logo {
  width: 120px;
  height: 80px;
  background-color: #ccc;
}

@keyframes shine-lines {
  0% {
    background-position: 0px;
  }
  40%,
  100% {
    background-position: 320px;
  }
}

/*------------------------------------------------------------
 HELPERS
------------------------------------------------------------*/
.cursor-pointer {
  cursor: pointer;
}
.no-margin {
  margin: 0 !important;
}
.no-gutter > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.text-muted-extra {
  color: #999;
}
.btn .icon {
  margin-right: 7px;
  display: inline-block;
  float: left;
  font-size: 18px;
}
.btn .icon--right {
  margin-right: 0px;
  margin-left: 5px;
}
.text-bold {
  font-weight: 500 !important;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #999;
  border-radius: 50%;
}
.dot-success {
  background-color: var(--success);
}
.dot-info {
  background-color: var(--info);
}
.dot-warning {
  background-color: var(--warning);
}
.dot-danger {
  background-color: var(--danger);
}
.dot-primary {
  background-color: var(--primary);
}
.dot-primary-light {
  background-color: var(--primary-light);
}

.dots-more {
  background: #f5f5f5;
  width: 40px;
  height: 18px;
  text-align: center;
  vertical-align: top;
  padding-top: 8px;
  border-radius: 2px;
  cursor: pointer;
}
.dots-more:hover {
  background: #ddd;
}
.dots-more__dot {
  vertical-align: top;
  display: inline-block;
  background: #000;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  margin: 0 1px 0;
}

.custom-table {
  margin-top: 0px;
}
.custom-table {
  box-shadow: 0 0 1px #cad3d9;
}
.custom-table thead tr th {
  font-weight: 500;
  background: #ecf5fb;
  color: var(--primary-color);
  font-weight: 600;
  border-color: #d4dee4;
}
.custom-table tr th,
.custom-table tr td {
  padding: 10px 15px 8px !important;
  line-height: 1.6;
}
.custom-table tr td {
  color: #555;
  font-weight: 400 !important;
  border-color: #ecf5fb !important;
}
.custom-table.table-hover tr td {
}
.custom-table.table-hover tr:hover td {
  cursor: pointer !important;
  background: #f7fafc;
  opacity: 1;
}

.info-table tr th {
  background: #f5f5f5;
  vertical-align: middle !important;
  font-weight: 700;
  padding: 10px 15px !important;
}
.info-table tr.no-border td {
  border: none;
}
.info-table tr td {
  border-color: var(--border-color) !important;
  padding: 10px 15px !important;
}
.info-table tr td.data {
  color: var(--gray);
}
.info-table tr td.value {
}
.avatar {
  width: 100%;
  box-shadow: 0 0 5px #ddd inset;
  background: #f9f9f9;
}
.avatar-round {
  border-radius: 100%;
}
.avatar-100 {
  display: block;
  width: 100px !important;
  height: 100px !important;
}
.info-card {
}
.info-card .info-card__avatar {
  margin-bottom: 20px;
}
.info-card--left-padded {
  padding-left: 15px;
}

.panel-footer--custom {
  background: white;
  padding-top: 15px;
  padding-bottom: 15px;
  vertical-align: middle;
  border-color: #f3f3f3;
}

.tag {
  border-radius: 20px;
  background: #eee;
  display: inline-block;
  font-size: 12px;
  line-height: 1.6;
  padding: 0px 8px 0px;
  position: relative;
  text-decoration: none;
  -webkit-transition: color 0.2s;
}
.tag-success {
  background: #d2f0cd;
  color: #173615;
}
.tag-danger {
  background: #ffe0e0;
  color: #722727;
}
.tag-warning {
  background: #f9edc7;
  color: #46382c;
}
.tag-info {
  background: #bde0fa54;
  color: #7e99da;
}

.documents-list {
  background: white;
}
.documents-list > li {
  display: inline-block;
  width: 100%;
  border-bottom: solid 1px var(--border-color);
  padding: 15px 20px;
}
.documents-list > li:last-child {
  border-bottom: none;
}

.heading {
  margin-top: 0;
  line-height: 1.4;
}

.tab-cont {
  background: white;
  padding: 10px 15px;
}

.info-ul > li {
  border-bottom: solid #f5f5f5 1px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.info-ul > li:last-child {
  border-bottom: none;
}
.nav-tabs {
  background: default;
  opacity: 1;
  z-index: 10;
}
.nav-tabs--sticky {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
}

/*------------------------------------------------------------
[5. Plugins]
------------------------------------------------------------*/

/* jsTree */

.jstree-default .jstree-clicked {
  background: #f1f1f1;
  border-radius: 0;
  box-shadow: inset 0 0 1px #999;
}

.jstree-default li a:hover {
  background: #f1f1f1;
  border-radius: 0;
  box-shadow: inset 0 0 1px #999;
}

.jstree-icon.jstree-themeicon.fa {
  font-family: "FontAwesome" !important;
}

/* Image Crop */

.img-preview {
  height: 150px;
  width: 220px;
  overflow: hidden;
  margin-bottom: 10px;
}

/* Toastr */

#toast-container > div {
  box-shadow: none;
  border-radius: 4px;
  border: 1px solid transparent;
}

#toast-container > .toast-success {
  background-color: #e8f7ed;
  color: #30b661;
  border-color: #30b661;
}

#toast-container > .toast-info {
  background-color: #d9e7f9;
  color: #2f73c8;
  border-color: #2f73c8;
}

#toast-container > .toast-warning {
  background-color: #f9e69b;
  color: #94780a;
  border-color: #94780a;
}

#toast-container > .toast-error {
  background-color: #fbdbde;
  color: #d83945;
  border-color: #d83945;
}

#toast-container > div:hover {
  box-shadow: none;
}

/*------------------------------------------------------------
[6. Pages]
------------------------------------------------------------*/

/* Todo */

.todo-nav {
  margin-top: 10px;
}

.todo-list .todo-item {
  padding: 15px;
  margin: 5px 0;
  border-radius: 0;
  background: #f7f7f7;
}

.todo-list {
  margin: 10px 0;
}

.todo-list.only-active .todo-item.complete {
  display: none;
}

.todo-list.only-active .todo-item:not(.complete) {
  display: block;
}

.todo-list.only-complete .todo-item:not(.complete) {
  display: none;
}

.todo-list.only-complete .todo-item.complete {
  display: block;
}

.todo-list .todo-item.complete span {
  text-decoration: line-through;
}

.remove-todo-item {
  color: #ccc;
  visibility: hidden;
}

.remove-todo-item:hover {
  color: #5f5f5f;
}

.todo-item:hover .remove-todo-item {
  visibility: visible;
}

#uniform-all-complete {
  margin-left: 11px;
}

/* Error Pages */

body.error-page {
  background-color: #fff;
}

.page-error {
  height: 100%;
  width: 100%;
  display: table;
}

.page-error .page-content {
  width: 100%;
  height: 100%;
  display: table;
}

.page-error .page-inner {
  padding: 0px;
  display: table-cell;
  vertical-align: middle;
  background: var(--primary-color);
}

.page-error p.error-page-top-text {
  margin-bottom: 10px;
  font-size: 24px;
}

.page-error p.error-page-bottom-text {
  font-size: 14px;
  margin-bottom: 30px;
}

.page-error b {
  font-size: 30px;
  color: #2b2b2b;
}

.error-page-logo {
  font-size: 88px;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 20px;
}

/* Profile */

.user-profile-panel {
  text-align: center;
}

.user-profile-image {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.team .team-member {
  display: block;
  overflow: hidden;
  margin-bottom: 10px;
  float: left;
  position: relative;
}

.team .team-member .online {
  top: 5px;
  right: 5px;
}

.team .team-member img {
  width: 40px;
  float: left;
  border-radius: 50%;
  margin: 0 5px 0 5px;
}

.profile-timeline ul li .timeline-item-header {
  width: 100%;
  overflow: hidden;
}

.profile-timeline ul li .timeline-item-header img {
  width: 40px;
  height: 40px;
  float: left;
  margin-right: 10px;
  border-radius: 50%;
}

.profile-timeline ul li .timeline-item-header p {
  margin: 0;
  color: #000;
  font-weight: 500;
}

.profile-timeline ul li .timeline-item-header p span {
  margin: 0;
  color: #8e8e8e;
  font-weight: normal;
}

.profile-timeline ul li .timeline-item-header small {
  margin: 0;
  color: #8e8e8e;
}

.profile-timeline ul li .timeline-item-post {
  padding: 20px 0 0 0;
  position: relative;
}

.profile-timeline ul li .timeline-item-post > img {
  width: 100%;
}

.timeline-options {
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f1f1f1;
  padding: 10px 0 10px 0;
}

.timeline-options a {
  display: block;
  margin-right: 20px;
  float: left;
  color: #2b2b2b;
  text-decoration: none;
}

.timeline-options a i {
  margin-right: 3px;
}

.timeline-options a:hover {
  color: #0070e0;
}

.timeline-comment {
  overflow: hidden;
  margin-bottom: 10px;
  width: 100%;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 5px;
}

.timeline-comment .timeline-comment-header {
  overflow: hidden;
}

.timeline-comment .timeline-comment-header img {
  width: 30px;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
}

.timeline-comment .timeline-comment-header p {
  color: #000;
  float: left;
  margin: 0;
  font-weight: 500;
}

.timeline-comment .timeline-comment-header small {
  font-weight: normal;
  color: #8e8e8e;
}

.timeline-comment p.timeline-comment-text {
  display: block;
  color: #2b2b2b;
  font-size: 14px;
  padding-left: 40px;
}

.post-options {
  overflow: hidden;
  margin-top: 15px;
  margin-left: 15px;
}

.post-options a {
  display: block;
  margin-top: 5px;
  margin-right: 20px;
  float: left;
  color: #2b2b2b;
  text-decoration: none;
  font-size: 16px !important;
}

.post-options a:hover {
  color: #0070e0;
}

.online {
  position: absolute;
  top: 2px;
  right: 2px;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ccc;
}

.online.on {
  background: #2ec5d3;
}

.online.off {
  background: #ec5e69;
}

/* Timeline */

.cd-timeline-content {
  border-radius: 4px;
}

.cd-timeline-content h4 {
  color: #637282;
  font-weight: 500;
  padding: 0;
  font-size: 14px;
}

#cd-timeline::before {
  border: 0;
  background: #f1f1f1;
}

.cd-timeline-content p,
.cd-timeline-content .cd-read-more,
.cd-timeline-content .cd-date {
  font-size: 14px;
}

.cd-timeline-img.cd-success {
  background: #2ec5d3;
}

.cd-timeline-img.cd-danger {
  background: #ec5e69;
}

.cd-timeline-img.cd-info {
  background: #5893df;
}

.cd-timeline-img.cd-warning {
  background: #f1c205;
}

.cd-timeline-img.cd-primary {
  background: #9f7ce1;
}

/* Maps */

.page-inner.full-page {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

#map-canvas {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#vmap {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 1px;
  position: relative;
  overflow: hidden;
}

.jqvmap-zoomin,
.jqvmap-zoomout {
  border-radius: 4px;
  background: #f1f1f1;
  padding: 3px;
  color: #637282;
  width: 20px;
  height: 20px;
  line-height: 14px;
  left: 25px;
}

.jqvmap-zoomin:hover,
.jqvmap-zoomout:hover {
  background: #637282;
  color: #fff;
}

/* Authentication */

.login-page {
  width: 100%;
  height: 100%;
  background: url("http://via.placeholder.com/2880x1800?text=Background+Image")
    no-repeat center center fixed;
  background-size: cover;
  padding: 0px;
}

.login-box {
  width: 300px;
  height: 100vh;
  background: #fff;
  padding: 35px;
}

@media (max-width: 768px) {
  .login-box {
    width: 100%;
  }
}

.login-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 35px;
}

.login-title span {
  margin-left: 5px;
  font-size: 12px;
  opacity: 0.7;
}

.forgot-link {
  margin-top: 10px;
  display: inline-block;
}

.lock-screen img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-block;
}

.lock-screen p {
  margin-bottom: 20px;
  display: block;
}

.lock-screen p span {
  display: inline-block;
  margin-left: 10px;
  text-transform: uppercase;
  font-weight: bold;
}

/* Pricing Tables */

.pricing {
  text-align: center;
  border: 1px solid #e5e9ec;
  font-size: 14px;
  padding-left: 0;
}

.pricing li:first-child,
.pricing li:last-child {
  padding: 20px 13px;
}

.pricing li {
  list-style: none;
  padding: 12px 8px;
}

.pricing li + li {
  border-top: 1px solid #e5e9ec;
}

.pricing h1 {
  font-size: 24px;
  color: #2b2b2b;
}

.pricing h3 {
  margin-bottom: 0;
  font-size: 32px;
}

.pricing span {
  font-size: 12px;
  color: #999;
  font-weight: normal;
}

.pricing li:nth-last-child(2) {
  padding: 30px 13px;
}

/* Charts */

#nvd1,
#nvd2,
#nvd3,
#nvd4,
#nvd5,
#nvd6 {
  height: 400px;
}

#flot1,
#flot2 {
  height: 400px;
}

#flot3,
#flot4 {
  height: 300px;
}

/* Email */

.email-list {
  max-height: 590px;
  overflow-y: auto;
}

.email-list ul {
  margin-bottom: 0px;
}

.email-list-item .email-author img {
  width: 35px;
  border-radius: 100%;
}

.email-list-item .email-author span.author-name {
  margin-left: 7px;
  font-weight: bold;
  line-height: 25px;
}

.email-list-item .email-author span.email-date {
  float: right;
  opacity: 0.6;
  line-height: 25px;
  font-size: 12px;
}

.email-list-item .email-info {
  display: block;
  margin-top: 8px;
}

.email-list-item .email-info .email-subject {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

.email-list-item .email-info .email-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  opacity: 0.7;
}

.email-list li a:active,
.email-list li a:focus,
.email-menu li a:active,
.email-menu li a:focus {
  color: #2b2b2b;
}

.email-list li a {
  display: block;
  padding: 18px 12px;
  border-bottom: 1px solid #e0e0e0;
}

.email-list li a:hover {
  background: #f1f1f1;
}

.email-list li.active a {
  background: #eaf4ff;
}

.email-actions .compose {
  width: 100%;
}

.divider {
  height: 1px;
  display: block;
  width: 100%;
  margin: 10px 0;
  background: #e0e0e0;
}

.email-menu {
  margin-top: 20px;
}

.email-menu ul li a {
  display: block;
  padding: 5px 8px;
}

.email-menu ul li a:hover {
  color: #0070e0;
}

.email-menu ul li.active a {
  color: #0070e0;
}

.email-menu ul li a i {
  margin-right: 10px;
  width: 10px;
  font-size: 16px;
  vertical-align: middle;
  line-height: 30px;
}

.email-menu ul li a span {
  line-height: 30px;
  vertical-align: middle;
}

.email {
  margin-top: 20px;
}

.email .email-title {
  font-size: 15px;
  font-weight: bold;
}

.email .email-author img {
  width: 35px;
  border-radius: 100%;
}

.email .email-author span.author-name {
  margin-left: 7px;
  line-height: 25px;
}

.email .email-author span.email-date {
  float: right;
  opacity: 0.6;
  line-height: 25px;
  font-size: 12px;
}

.email .email-reply {
  margin-top: 20px;
  display: block;
}

/* Dashboard */
.stats-widget .stats-number {
  font-size: 25px;
  /*font-weight: 600;*/
}

.stats-widget .stats-info {
  margin: 0px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
}

.stats-widget .stats-icon {
  font-size: 38px;
}

.stats-widget .stats-icon.icon-arrow_upward {
  color: #63cb89;
}

.stats-widget .stats-icon.icon-arrow_downward {
  color: #ec5e69;
}

#chart1 {
  height: 250px;
}

#chart2 {
  height: 200px;
}

.server-load > .server-stat {
  display: inline-block;
  margin-bottom: 5px;
  padding-left: 0;
}

.server-load .server-stat span {
  font-size: 13px;
  margin-top: 3px;
  font-weight: 400;
  color: #aaa;
}

.server-load .server-stat p {
  font-weight: 600;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
}

.task-list .task-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 9px 5px 12px 5px;
}

.task-list .task-item:last-child {
  border-bottom: none;
}

.task-list .task-item .progress {
  margin-bottom: 0px;
}

.task-list .task-item .task-name {
  font-size: 13px;
  margin-bottom: 10px;
  color: #637282;
  display: block;
}

.task-list .task-item .task-name i {
  margin-left: 5px;
  color: #637282;
}

.invoice-table table {
  margin-bottom: 0px;
}

.browser-stats ul {
  margin: 0;
}

.browser-stats ul li {
  border-bottom: 1px solid #eee;
  padding: 11px 0;
}

.browser-stats ul li:last-child {
  border-bottom: 0;
}

.browser-stats ul li i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.browser-stats ul li div i {
  margin-left: 5px;
  margin-right: 0px;
}

.project-stats ul {
  margin: 0;
}

.project-stats ul li {
  border-bottom: 1px solid #eee;
  padding: 11px 0;
}

.project-stats ul li:last-child {
  border-bottom: 0;
}

.project-stats ul li i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.project-stats ul li div i {
  margin-left: 5px;
  margin-right: 0px;
}

/*------------------------------------------------------------
[7. Responsive]
------------------------------------------------------------*/

.logo-sm {
  display: none;
}

#sidebar-toggle-button-close {
  display: none;
}

@media (max-width: 991px) {
  .email-actions {
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .page-header-fixed .page-header {
    left: 0;
  }

  .page-sidebar {
    position: fixed !important;
    left: -240px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }

  .page-inner:not(.login-page) {
    padding: 5px 40px 42px 40px;
  }

  .page-content,
  .page-sidebar-collapsed .page-content {
    width: 100%;
  }

  .page-sidebar-fixed .page-content,
  .page-sidebar-fixed.page-sidebar-collapsed .page-content {
    margin-left: 0px;
  }

  .page-header,
  .page-header .navbar,
  .page-header .navbar-default .container-fluid,
  .page-header .navbar-default .navbar-collapse {
    height: auto !important;
  }

  .logo-sm {
    display: block;
  }

  .logo-sm #sidebar-toggle-button {
    float: left;
    margin-top: 8px;
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 8px;
    vertical-align: middle;
    padding: 7px 0;
    color: #637282 !important;
  }

  .logo-sm .logo-box {
    float: left;
    background: #fff;
    padding: 2px 0;
    margin-top: 8px;
    margin-right: 15px;
    margin-left: 8px;
    margin-bottom: 8px;
    width: auto;
  }

  .page-sidebar-collapsed .logo-sm .logo-box {
    height: auto;
    display: block;
    padding-left: 0px;
  }

  .page-sidebar-fixed .logo-sm .logo-box {
    position: relative;
    z-index: 40;
  }

  .page-sidebar-collapsed .logo-sm .logo-box {
    text-align: left;
  }

  .page-sidebar-collapsed .logo-sm .logo-box span {
    display: block;
  }

  .page-header {
    padding-left: 25px;
  }

  .navbar .dropdown:not(.open) .dropdown-menu {
    display: none;
  }

  .navbar li {
    display: inline-block;
  }

  .navbar-collapse {
    padding: 0px 25px !important;
  }

  .navbar-nav {
    float: right;
  }

  .navbar-nav.navbar-right {
    display: none;
  }

  .page-sidebar-visible .page-sidebar {
    left: 0;
  }

  #fixed-sidebar-toggle-button {
    display: none;
  }

  #sidebar-toggle-button-close {
    margin-left: 12px;
    float: right;
    height: 14px;
    font-size: 18px;
    margin-top: 6px;
    display: block;
  }

  .page-sidebar-collapsed #sidebar-toggle-button-close {
    margin: 0px auto;
    float: none;
  }

  .navbar-toggle {
    border-radius: 100%;
    width: 40px;
  }

  .page-header .navbar-nav > li > a {
    font-size: 14px;
  }

  .page-error .page-inner {
    vertical-align: top;
    padding: 40px;
  }

  .grid-gallery figcaption h3 {
    font-size: 13px;
    font-weight: bold;
  }
}

/*------------------------------------------------------------
[8. Documentation]
------------------------------------------------------------*/

.pln,
.pun {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace !important;
}

.color-pallete {
  positon: relative;
  margin-bottom: 10px;
}

.color-item {
  text-align: center;
  padding: 15px;
}

.color-item span {
  font-weight: bold;
  font-size: 12px;
}

.table > tbody > tr.white > td,
.table > tbody > tr.white > th,
.table > tbody > tr > td.white,
.table > tbody > tr > th.white,
.table > tfoot > tr.white > td,
.table > tfoot > tr.white > th,
.table > tfoot > tr > td.white,
.table > tfoot > tr > th.white,
.table > thead > tr.white > td,
.table > thead > tr.white > th,
.table > thead > tr > td.white,
.table > thead > tr > th.white {
  background-color: #fff;
}
