/*
 * Component: alert
 * ----------------
 */
.alert {
  border-radius: 3px;
}
.alert h4 {
  font-weight: 600;
}
.alert .icon {
  margin-right: 10px;
}
.alert .close {
  color: #000;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.alert .close:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.alert a {
  color: #fff;
  text-decoration: underline;
}
.alert a:hover,
.alert a:active,
.alert a:focus {
  color: #fff;
  text-decoration: underline;
}
.alert-success {
  border-color: #4cb64c;
  background-color: #5ebd5e;
  color: #ffffff;
  color: #fff;
}
.alert-danger,
.alert-error {
  border-color: #e3503e;
  color: #a94442;
}
.alert-warning {
  border-color: #f3a537;
  background-color: #f4b04f;
  color: #fff;
}
.alert-info {
  border-color: #46b8da;
  background-color: #5bc0de;
  color: #fff;
}
/* You can use animations from animate.css directly by applying the classes 'animate' and the animation you want to apply, but you'll get the default speed and it's verbose */
/* This page allows you to define classes so that animations can be applied in a single class and the timing of the animation can be customized */
.fadeInDown {
  -webkit-animation: fadeInDown 0.4s;
  animation: fadeInDown 0.4s;
}
.fadeInRight {
  -webkit-animation: fadeInRight 0.4s;
  animation: fadeInRight 0.4s;
}
.fadeInLeft {
  -webkit-animation: fadeInLeft 0.4s;
  animation: fadeInLeft 0.4s;
}
.fadeIn {
  -webkit-animation: fadeIn 0.4s;
  animation: fadeIn 0.4s;
}
/* This prevents animations from being applied to items that are being hidden, i.e. they are hidden immediately. */
.ng-leave {
  -webkit-animation: none !important;
  animation: none !important;
  opacity: 0 !important;
  display: none !important;
}
.ng-hide {
  opacity: 0 !important;
  display: none !important;
}
/*
 * Component: Button
 * -----------------
 */
.btn {
  border-radius: 3px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid transparent;
}
.btn.uppercase {
  text-transform: uppercase;
}
.btn.btn-flat {
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-width: 1px;
}
.btn:active {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn:focus {
  outline: none;
}
.btn.btn-file {
  position: relative;
  overflow: hidden;
}
.btn.btn-file > input[type='file'] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  opacity: 0;
  filter: alpha(opacity=0);
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}
.btn-default {
  background-color: #f4f4f4;
  color: #444;
  border-color: #ddd;
}
.btn-default:hover,
.btn-default:active,
.btn-default.hover {
  background-color: #e7e7e7;
}
.btn-primary {
  background-color: #3498db;
  border-color: #258cd1;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.hover {
  background-color: #258cd1;
}
.btn-success {
  background-color: #5ebd5e;
  border-color: #4cb64c;
}
.btn-success:hover,
.btn-success:active,
.btn-success.hover {
  background-color: #4cb64c;
}
.btn-info {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:hover,
.btn-info:active,
.btn-info.hover {
  background-color: #46b8da;
}
.btn-danger {
  background-color: #e66454;
  border-color: #e3503e;
}
.btn-danger:hover,
.btn-danger:active,
.btn-danger.hover {
  background-color: #e3503e;
}
.btn-warning {
  background-color: #f4b04f;
  border-color: #f3a537;
}
.btn-warning:hover,
.btn-warning:active,
.btn-warning.hover {
  background-color: #f3a537;
}
.btn-purple {
  background-color: #a959bd;
  border-color: #9f48b5;
  color: #ffffff;
}
.btn-purple:hover,
.btn-purple:active,
.btn-purple.hover {
  background-color: #9f48b5;
  color: #f2f2f2;
}
.btn-teal {
  background-color: #12a199;
  border-color: #0f8a83;
  color: #ffffff;
}
.btn-teal:hover,
.btn-teal:active,
.btn-teal.hover {
  background-color: #0f8a83;
  color: #f2f2f2;
}
.btn-blue {
  background-color: #579be6;
  border-color: #418ee3;
  color: #ffffff;
}
.btn-blue:hover,
.btn-blue:active,
.btn-blue.hover {
  background-color: #418ee3;
  color: #f2f2f2;
}
.btn-outline {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn[class*='bg-']:hover {
  -webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}
/* Button positions */
.btn-right {
  float: right;
}
.btn-margin-right {
  margin-left: 15px;
  margin-top: 15px;
}
.btn-margin-left {
  margin-left: 15px;
  margin-top: 15px;
}
.btn-app {
  border-radius: 3px;
  position: relative;
  padding: 15px 5px;
  margin: 0 0 10px 10px;
  min-width: 80px;
  height: 60px;
  text-align: center;
  color: #666;
  border: 1px solid #ddd;
  background-color: #f4f4f4;
  font-size: 12px;
}
.btn-app > .fa,
.btn-app > .glyphicon,
.btn-app > .ion {
  font-size: 20px;
  display: block;
}
.btn-app:hover {
  background: #f4f4f4;
  color: #444;
  border-color: #aaa;
}
.btn-app:active,
.btn-app:focus {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-app .btn-sm {
  font-size: 12px;
  line-height: 15px;
  padding: 4px 9px;
}
/*
 * Component: Callout
 * ------------------
 */
.callout {
  border-radius: 3px;
  margin: 10px 0 10px 0;
  padding: 15px 30px 15px 15px;
  border-left: 5px solid #eee;
  box-shadow: 2px 2px 7px 0px rgba(196, 188, 196, 0.4);
}
.callout a {
  color: #fff;
  text-decoration: underline;
}
.callout a:hover {
  color: #eee;
}
.callout h4 {
  margin-top: 0;
  font-weight: 600;
}
.callout p:last-child {
  margin-bottom: 0;
}
.callout code,
.callout .highlight {
  background-color: #fff;
}
.callout.callout-danger {
  background-color: #fbf4f4;
  border-color: #df3c28;
  color: #333;
}
.callout.callout-danger.error-code {
  font-size: 10px;
}
.callout.callout-warning {
  border-color: #f19a1f;
}
.callout.callout-info {
  border-color: #31b0d5;
}
.callout.callout-success {
  border-color: #43a543;
}
/*
 * Core: General Layout Style
 * -------------------------
 */
html,
body {
  min-height: 100%;
}
.layout-boxed html,
.layout-boxed body {
  height: 100%;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  overflow-y: auto;
}
/* Layout */
.wrapper {
  min-height: 100%;
  position: static;
  overflow: hidden;
}
.wrapper:before,
.wrapper:after {
  content: " ";
  display: table;
}
.wrapper:after {
  clear: both;
}
.layout-boxed .wrapper {
  max-width: 1250px;
  margin: 0 auto;
  min-height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  position: relative;
}
.layout-boxed {
  background: url('../img/boxed-bg.jpg') repeat fixed;
}
/*
 * Content Wrapper - contains the main content
 * ```.right-side has been deprecated as of v2.0.0 in favor of .content-wrapper  ```
 */
.content-wrapper,
.right-side,
.main-footer {
  -webkit-transition: -webkit-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  -moz-transition: -moz-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  margin-left: 230px;
  z-index: 820;
}
.layout-top-nav .content-wrapper,
.layout-top-nav .right-side,
.layout-top-nav .main-footer {
  margin-left: 0;
}
@media (max-width: 767px) {
  .content-wrapper,
  .right-side,
  .main-footer {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .sidebar-collapse .content-wrapper,
  .sidebar-collapse .right-side,
  .sidebar-collapse .main-footer {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .sidebar-open .content-wrapper,
  .sidebar-open .right-side,
  .sidebar-open .main-footer {
    -webkit-transform: translate(230px, 0);
    -ms-transform: translate(230px, 0);
    -o-transform: translate(230px, 0);
    transform: translate(230px, 0);
  }
}
.content-wrapper,
.right-side {
  min-height: 100%;
  background-color: #ecf0f5;
  z-index: 800;
}
.main-footer {
  background: #fff;
  padding: 15px;
  color: #444;
  border-top: 1px solid #d2d6de;
}
/* Fixed layout */
.fixed .main-header,
.fixed .main-sidebar,
.fixed .left-side {
  position: fixed;
}
.fixed .main-header {
  top: 0;
  right: 0;
  left: 0;
}
.fixed .content-wrapper,
.fixed .right-side {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .fixed .content-wrapper,
  .fixed .right-side {
    padding-top: 100px;
  }
}
.fixed.layout-boxed .wrapper {
  max-width: 100%;
}
body.hold-transition .content-wrapper,
body.hold-transition .right-side,
body.hold-transition .main-footer,
body.hold-transition .main-sidebar,
body.hold-transition .left-side,
body.hold-transition .main-header > .navbar,
body.hold-transition .main-header .logo {
  /* Fix for IE */
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
/* Content */
.content {
  min-height: 250px;
  padding: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/* H1 - H6 font */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Source Sans Pro', sans-serif;
}
/* General Links */
a {
  color: #3498db;
}
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
  color: #75b9e7;
}
/* Page Header */
.page-header {
  margin: 10px 0 20px 0;
  font-size: 22px;
}
.page-header > small {
  color: #666;
  display: block;
  margin-top: 5px;
}
/* Datepicker */
.dp td {
  padding: 5px 4px 5px 4px !important;
}
.dp ul {
  padding: 10px;
}
.dp td button {
  border: none;
  background: white;
}
.dp .text-info,
.dp .text-info:hover,
.dp .text-info:active,
.dp .text-info:focus,
.dp .text-info a,
.dp .text-info a:focus {
  color: #0d0d0d;
}
.dp .text-muted {
  color: #d7d7d7;
}
.dp table:focus {
  outline: 0;
}
/*
 * Component: Dropdown menus
 * -------------------------
 */
/*Dropdowns in general*/
.dropdown-menu {
  box-shadow: none;
  border-color: #eee;
}
.dropdown-menu > li > a {
  color: #777;
}
.dropdown-menu > li > a > .glyphicon,
.dropdown-menu > li > a > .fa,
.dropdown-menu > li > a > .ion {
  margin-right: 10px;
}
.dropdown-menu > li > a:hover {
  background-color: #e1e3e9;
  color: #333;
}
.dropdown-menu > .divider {
  background-color: #eee;
}
.dropdown ul {
  border: 1px solid #d5d5d5;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
  border-top-width: 1px !important;
}
.selected-li {
  background-color: #eff5e9;
}
ul.dropdown-menu .dropdown-header {
  font-size: 11px;
  font-weight: 600;
  margin: 0 -2px;
  padding: 6px 18px 3px 18px;
  text-transform: uppercase;
}
.navbar-nav > .notifications-menu > .dropdown-menu,
.navbar-nav > .messages-menu > .dropdown-menu,
.navbar-nav > .tasks-menu > .dropdown-menu {
  width: 280px;
  padding: 0 0 0 0;
  margin: 0;
  top: 100%;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li,
.navbar-nav > .messages-menu > .dropdown-menu > li,
.navbar-nav > .tasks-menu > .dropdown-menu > li {
  position: relative;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li.header,
.navbar-nav > .messages-menu > .dropdown-menu > li.header,
.navbar-nav > .tasks-menu > .dropdown-menu > li.header {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #ffffff;
  padding: 7px 10px;
  border-bottom: 1px solid #f4f4f4;
  color: #444444;
  font-size: 14px;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
.navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
.navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 12px;
  background-color: #fff;
  padding: 7px 10px;
  border-bottom: 1px solid #eeeeee;
  color: #444!important;
  text-align: center;
}
@media (max-width: 991px) {
  .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
  .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
  .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
    background: #fff!important;
    color: #444!important;
  }
}
.navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover,
.navbar-nav > .messages-menu > .dropdown-menu > li.footer > a:hover,
.navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a:hover {
  text-decoration: none;
  font-weight: normal;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu,
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu {
  max-height: 200px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: hidden;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a,
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  display: block;
  white-space: nowrap;
  /* Prevent text from breaking */
  border-bottom: 1px solid #f4f4f4;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a:hover,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:hover,
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a:hover {
  background: #f4f4f4;
  text-decoration: none;
}
/* Fix dropdown menu in navbars */
.navbar-custom-menu > .navbar-nav > li {
  position: relative;
}
.navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  position: absolute;
  right: 0;
  left: auto;
}
@media (max-width: 991px) {
  .navbar-custom-menu > .navbar-nav {
    float: right;
  }
  .navbar-custom-menu > .navbar-nav > li {
    position: static;
  }
  .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
    position: absolute;
    right: 5%;
    left: auto;
    border: 1px solid #ddd;
    background: #fff;
  }
}
/*
 * Component: Form
 * ---------------
 */
.form-control {
  border-radius: 0;
  box-shadow: none;
  border-color: #d2d6de;
}
.form-control:focus {
  border-color: #3498db;
  box-shadow: none;
}
.form-control::-moz-placeholder,
.form-control:-ms-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: #bbb;
  opacity: 1;
}
.form-control:not(select) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-group.has-success label {
  color: #5ebd5e;
}
.form-group.has-success .form-control {
  border-color: #5ebd5e;
  box-shadow: none;
}
.form-group.has-warning label {
  color: #f4b04f;
}
.form-group.has-warning .form-control {
  border-color: #f4b04f;
  box-shadow: none;
}
.form-group.has-error label {
  color: #e66454;
}
.form-group.has-error .form-control {
  border-color: #e66454;
  box-shadow: none;
}
/* Input group */
.input-group .input-group-addon {
  border-color: #d2d6de;
  background-color: #fff;
  border-radius: 0;
}
.input-group {
  width: 100%;
}
/* button groups */
.btn-group-vertical .btn.btn-flat:first-of-type,
.btn-group-vertical .btn.btn-flat:last-of-type {
  border-radius: 0;
}
.icheck > label {
  padding-left: 0;
}
/* support Font Awesome icons in form-control */
.form-control-feedback.fa {
  line-height: 42px;
}
.form-control-feedback {
  z-index: 2;
}
/* Form groups */
.form-group {
  margin-bottom: 30px;
}
/* Don't apply to radio and checkbox labels as the required is applied to the group label */
.form-group .required:not(.radio-label):not(.checkbox-label):after {
  color: #e32;
  content: " *";
}
/* Labels */
label {
  font-size: 14px;
}
label.clear {
  clear: both;
  display: block;
}
/* Large label */
.label-lg {
  display: inline-block;
  font-size: 12px;
  padding: 7px 10px 7px 10px;
  min-width: 75px;
  margin: 10px 4px 4px 0;
}
.highlight-value {
  color: #3498db;
  font-size: 22px;
  line-height: 2;
}
/* Change the color of the icon */
.form-control-feedback {
  color: #969494;
}
.input-lg + .form-control-feedback.fa,
.input-group-lg + .form-control-feedback.fa,
.form-group-lg .form-control + .form-control-feedback.fa {
  line-height: 46px;
}
.input-sm + .form-control-feedback.fa,
.input-group-sm + .form-control-feedback.fa,
.form-group-sm .form-control + .form-control-feedback.fa {
  line-height: 30px;
}
textarea.form-control {
  height: 100px;
}
/* Large text areas */
textarea.big {
  height: 300px;
}
input.form-control {
  height: 42px;
  font-size: 16px;
}
select.form-control {
  height: 42px;
  font-size: 16px;
}
select.form-control-small {
  height: 30px;
  font-size: 12px;
}
.maxlength-message {
  margin: -30px 0 20px 0;
  font-size: 12px;
  text-align: right;
}
/* Checkbx and radio styles */
.radio-group-label,
.checkbox-group-label {
  clear: both;
  margin-bottom: 10px;
}
.checkbox,
.radio {
  opacity: 0;
  position: absolute;
  vertical-align: middle;
  cursor: pointer;
}
.radio-group label,
.checkbox-group label {
  margin-right: 15px;
  cursor: pointer;
  display: block;
  font-weight: normal;
}
.radio-group.inline label,
.checkbox-group.inline label {
  display: inline;
}
/* Remove inline display on small screens */
@media (max-width: 480px) {
  .radio-group.inline label,
  .checkbox-group.inline label {
    display: block;
  }
}
.checkbox-label.inline,
.radio-label.inline {
  position: relative;
  display: inline;
}
.checkbox + .checkbox-label:before,
.radio + .radio-label:before {
  content: '';
  background: #fff;
  border: 2px solid #b9b8b8;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  padding: 2px;
  margin-right: 5px;
  text-align: center;
}
.checkbox[disabled] + .checkbox-label:before,
.radio[disabled] + .radio-label:before {
  border: 2px solid #f1f0f0;
  cursor: not-allowed;
}
.checkbox:checked + .checkbox-label:before {
  background: #3498db;
  box-shadow: inset 0px 0px 0px 4px #fff;
}
.radio + label:before {
  border-radius: 50%;
}
.radio:checked + label:before {
  background: #3498db;
  box-shadow: inset 0px 0px 0px 4px #fff;
}
.radio-group-label,
.checkbox-group-label {
  clear: both;
  display: block;
}
.checkbox:focus + .checkbox-label,
.radio:focus + label {
  outline: none;
  /* focus style */
}
/* Switch */
.switch {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 68px;
  height: 24px;
  padding: 3px;
  background-color: white;
  border-radius: 18px;
  box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  background-image: -webkit-linear-gradient(top, #eeeeee, white 25px);
  background-image: -moz-linear-gradient(top, #eeeeee, white 25px);
  background-image: -o-linear-gradient(top, #eeeeee, white 25px);
  background-image: linear-gradient(to bottom, #eeeeee, white 25px);
}
.switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 10px;
  text-transform: uppercase;
  background: #eceeef;
  border-radius: inherit;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  -webkit-transition-property: opacity background;
  -moz-transition-property: opacity background;
  -o-transition-property: opacity background;
  transition-property: opacity background;
}
.switch-label:before,
.switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
.switch-label:before {
  content: attr(data-off);
  right: 11px;
  color: #aaa;
  text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.switch-label:after {
  content: attr(data-on);
  left: 11px;
  color: white;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  opacity: 0;
}
.switch-input:checked ~ .switch-label {
  background: #47a8d8;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input:checked ~ .switch-label:before {
  opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
  opacity: 1;
}
.switch-handle {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 21px;
  height: 21px;
  background: white;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  background-image: -webkit-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -moz-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -o-linear-gradient(top, white 40%, #f0f0f0);
  background-image: linear-gradient(to bottom, white 40%, #f0f0f0);
  -webkit-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  -o-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}
.switch-handle:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  background: #f9f9f9;
  border-radius: 6px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
  background-image: -webkit-linear-gradient(top, #eeeeee, white);
  background-image: -moz-linear-gradient(top, #eeeeee, white);
  background-image: -o-linear-gradient(top, #eeeeee, white);
  background-image: linear-gradient(to bottom, #eeeeee, white);
}
.switch-input:checked ~ .switch-handle {
  left: 43px;
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-test > .switch-input ~ .switch-label {
  background: #4fb845;
}
.switch-test > .switch-input ~ .switch-label:before {
  color: white;
}
.switch-test > .switch-input:checked ~ .switch-label {
  background: #f6c175;
}
.switch-test {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
}
.form-horizontal .control-label.text-left {
  text-align: left;
}
/*
 * Component: Main Header
 * ----------------------
 */
.main-header {
  position: relative;
  max-height: 100px;
  z-index: 1030;
}
.main-header > .navbar {
  -webkit-transition: margin-left 0.3s ease-in-out;
  -o-transition: margin-left 0.3s ease-in-out;
  transition: margin-left 0.3s ease-in-out;
  margin-bottom: 0;
  margin-left: 230px;
  border: none;
  min-height: 50px;
  border-radius: 0;
}
.layout-top-nav .main-header > .navbar {
  margin-left: 0;
}
.main-header #navbar-search-input.form-control {
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
}
.main-header #navbar-search-input.form-control:focus,
.main-header #navbar-search-input.form-control:active {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
}
.main-header #navbar-search-input.form-control::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
.main-header #navbar-search-input.form-control:-ms-input-placeholder {
  color: #ccc;
}
.main-header #navbar-search-input.form-control::-webkit-input-placeholder {
  color: #ccc;
}
.main-header .navbar-custom-menu,
.main-header .navbar-right {
  float: right;
}
@media (max-width: 991px) {
  .main-header .navbar-custom-menu a,
  .main-header .navbar-right a {
    color: inherit;
    background: transparent;
  }
}
@media (max-width: 767px) {
  .main-header .navbar-right {
    float: none;
  }
  .navbar-collapse .main-header .navbar-right {
    margin: 7.5px -15px;
  }
  .main-header .navbar-right > li {
    color: inherit;
    border: 0;
  }
}
.main-header .sidebar-toggle {
  float: left;
  background-color: transparent;
  background-image: none;
  padding: 15px 15px;
  font-family: fontAwesome;
}
.main-header .sidebar-toggle:before {
  content: "\f0c9";
}
.main-header .sidebar-toggle:hover {
  color: #fff;
}
.main-header .sidebar-toggle:focus,
.main-header .sidebar-toggle:active {
  background: transparent;
}
.main-header .sidebar-toggle .icon-bar {
  display: none;
}
.main-header .navbar .nav > li.user > a > .fa,
.main-header .navbar .nav > li.user > a > .glyphicon,
.main-header .navbar .nav > li.user > a > .ion {
  margin-right: 5px;
}
.main-header .navbar .nav > li > a > .label {
  position: absolute;
  top: 9px;
  right: 7px;
  text-align: center;
  font-size: 9px;
  padding: 2px 3px;
  line-height: .9;
}
.main-header .logo {
  -webkit-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  display: block;
  float: left;
  height: 50px;
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  width: 230px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 0 15px;
  font-weight: 300;
  overflow: hidden;
}
.main-header .logo .logo-lg {
  display: block;
}
.main-header .logo .logo-mini {
  display: none;
}
.main-header .navbar-brand {
  color: #fff;
}
.content-header {
  position: relative;
  padding: 15px 15px 0 15px;
}
.content-header > h1 {
  margin: 0;
  font-size: 24px;
}
.content-header > h1 > small {
  font-size: 15px;
  display: inline-block;
  padding-left: 4px;
  font-weight: 300;
}
.content-header > .breadcrumb {
  float: right;
  background: transparent;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  padding: 7px 5px;
  position: absolute;
  top: 15px;
  right: 10px;
  border-radius: 2px;
}
.content-header > .breadcrumb > li > a {
  color: #444;
  text-decoration: none;
  display: inline-block;
}
.content-header > .breadcrumb > li > a > .fa,
.content-header > .breadcrumb > li > a > .glyphicon,
.content-header > .breadcrumb > li > a > .ion {
  margin-right: 5px;
}
.content-header > .breadcrumb > li + li:before {
  content: '>\00a0';
}
@media (max-width: 991px) {
  .content-header > .breadcrumb {
    position: relative;
    margin-top: 5px;
    top: 0;
    right: 0;
    float: none;
    background: #d2d6de;
    padding-left: 10px;
  }
  .content-header > .breadcrumb li:before {
    color: #97a0b3;
  }
}
.navbar-toggle {
  color: #fff;
  border: 0;
  margin: 0;
  padding: 15px 15px;
}
@media (max-width: 991px) {
  .navbar-custom-menu .navbar-nav > li {
    float: left;
  }
  .navbar-custom-menu .navbar-nav {
    margin: 0;
    float: left;
  }
  .navbar-custom-menu .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .main-header {
    position: relative;
  }
  .main-header .logo,
  .main-header .navbar {
    width: 100%;
    float: none;
  }
  .main-header .navbar {
    margin: 0;
  }
  .main-header .navbar-custom-menu {
    float: right;
  }
}
@media (max-width: 991px) {
  .navbar-collapse.pull-left {
    float: none!important;
  }
  .navbar-collapse.pull-left + .navbar-custom-menu {
    display: block;
    position: absolute;
    top: 0;
    right: 40px;
  }
}
/*
 * Component: Label
 * ----------------
 */
.label-default {
  background-color: #d2d6de;
  color: #444;
}
/*
 * General: Miscellaneous
 * ----------------------
 */
.pad {
  padding: 10px;
}
.margin {
  margin: 10px;
}
.margin-bottom {
  margin-bottom: 20px;
}
.margin-bottom-none {
  margin-bottom: 0;
}
.margin-r-5 {
  margin-right: 5px;
}
.inline {
  display: inline;
}
[class^="bg-"].disabled {
  opacity: 0.65;
  filter: alpha(opacity=65);
}
.hide {
  display: none !important;
}
.no-border {
  border: 0 !important;
}
.no-padding {
  padding: 0 !important;
}
.no-margin {
  margin: 0 !important;
}
.no-shadow {
  box-shadow: none!important;
}
.list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-group-unbordered > .list-group-item {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.flat {
  border-radius: 0 !important;
}
.text-bold,
.text-bold.table td,
.text-bold.table th {
  font-weight: 700;
}
.text-sm {
  font-size: 12px;
}
.jqstooltip {
  padding: 5px!important;
  width: auto!important;
  height: auto!important;
}
.chart {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.chart svg,
.chart canvas {
  width: 100%!important;
}
.text-fade {
  color: #DEDEDE;
}
.overflow-auto {
  overflow: auto;
}
.credit-card-image img {
  max-height: 20px;
}
.modal-dialog {
  -webkit-animation-duration: 0.8s;
  -moz-animation-duration: 0.8s;
  -ms-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.modal-content {
  border: none;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.modal-content:before,
.modal-content:after {
  content: " ";
  display: table;
}
.modal-content:after {
  clear: both;
}
.modal-header {
  background: #f8f8f8;
  padding: 12px 20px;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.modal-dialog .close {
  color: #504f4f;
  font-size: 20px;
  margin-top: 3px;
}
.modal-dialog .close.fa-times {
  font-size: 15px;
  margin-top: 2px;
}
.modal-footer {
  padding: 12px 20px;
  margin-top: 15px;
  background: #fff;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
@media (min-width: 480px) {
  .modal-alert .modal-dialog {
    width: 350px;
  }
}
.modal-alert .modal-header,
.modal-alert .modal-title,
.modal-alert .modal-body,
.modal-alert .modal-footer {
  background: none;
  border: none;
  margin: 0;
  padding: 0 20px;
  text-align: center !important;
}
.modal-alert .modal-header {
  color: #fff;
  margin-bottom: 20px;
  padding: 25px 0 18px 0;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  border-bottom: 4px solid rgba(0, 0, 0, 0.08);
}
.modal-alert .modal-header .fa {
  font-size: 90px;
}
.modal-alert .modal-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}
.modal-alert .modal-body {
  color: #888;
}
.modal-alert .modal-footer {
  margin: 25px 0 20px 0;
}
.modal-alert.modal-info .modal-header {
  background: #d2d6de;
}
.modal-alert.modal-danger .modal-header {
  background: #e66454;
  color: #ffffff;
}
.modal-alert.modal-warning .modal-header {
  background: #f4b04f;
  color: #ffffff;
}
.modal-alert.modal-success .modal-header {
  background: #5ebd5e;
  color: #ffffff;
}
/*
 * Component: Nav
 * --------------
 */
.nav > li > a:hover,
.nav > li > a:active,
.nav > li > a:focus {
  color: #444;
  background: #f7f7f7;
}
/* NAV PILLS */
.nav-pills > li > a {
  border-radius: 0;
  border-top: 3px solid transparent;
  color: #444;
}
.nav-pills > li > a > .fa,
.nav-pills > li > a > .glyphicon,
.nav-pills > li > a > .ion {
  margin-right: 5px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  border-top-color: #3498db;
}
.nav-pills > li.active > a {
  font-weight: 600;
}
/* NAV STACKED */
.nav-stacked > li > a {
  border-radius: 0;
  border-top: 0;
  border-left: 3px solid transparent;
  color: #444;
}
.nav-stacked > li.active > a,
.nav-stacked > li.active > a:hover {
  background: transparent;
  color: #444;
  border-top: 0;
  border-left-color: #3498db;
}
.nav-stacked > li.header {
  border-bottom: 1px solid #ddd;
  color: #777;
  margin-bottom: 10px;
  padding: 5px 10px;
  text-transform: uppercase;
}
/* NAV TABS */
.nav-tabs-custom {
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.nav-tabs-custom > .nav-tabs {
  margin: 0;
  border-bottom-color: #f4f4f4;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.nav-tabs-custom > .nav-tabs > li {
  border-top: 3px solid transparent;
  margin-bottom: -2px;
  margin-right: 5px;
}
.nav-tabs-custom > .nav-tabs > li > a {
  color: #444;
  border-radius: 0;
}
.nav-tabs-custom > .nav-tabs > li > a.text-muted {
  color: #999;
}
.nav-tabs-custom > .nav-tabs > li > a,
.nav-tabs-custom > .nav-tabs > li > a:hover {
  background: transparent;
  margin: 0;
}
.nav-tabs-custom > .nav-tabs > li > a:hover {
  color: #999;
}
.nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover,
.nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus,
.nav-tabs-custom > .nav-tabs > li:not(.active) > a:active {
  border-color: transparent;
}
.nav-tabs-custom > .nav-tabs > li.active {
  border-top-color: #3498db;
}
.nav-tabs-custom > .nav-tabs > li.active > a,
.nav-tabs-custom > .nav-tabs > li.active:hover > a {
  background-color: #fff;
  color: #444;
}
.nav-tabs-custom > .nav-tabs > li.active > a {
  border-top-color: transparent;
  border-left-color: #f4f4f4;
  border-right-color: #f4f4f4;
}
.nav-tabs-custom > .nav-tabs > li:first-of-type {
  margin-left: 0;
}
.nav-tabs-custom > .nav-tabs > li:first-of-type.active > a {
  border-left-color: transparent;
}
.nav-tabs-custom > .nav-tabs.pull-right {
  float: none!important;
}
.nav-tabs-custom > .nav-tabs.pull-right > li {
  float: right;
}
.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type {
  margin-right: 0;
}
.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type > a {
  border-left-width: 1px;
}
.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a {
  border-left-color: #f4f4f4;
  border-right-color: transparent;
}
.nav-tabs-custom > .nav-tabs > li.header {
  line-height: 35px;
  padding: 0 10px;
  font-size: 20px;
  color: #444;
}
.nav-tabs-custom > .nav-tabs > li.header > .fa,
.nav-tabs-custom > .nav-tabs > li.header > .glyphicon,
.nav-tabs-custom > .nav-tabs > li.header > .ion {
  margin-right: 5px;
}
.nav-tabs-custom > .tab-content {
  background: #fff;
  padding: 10px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.nav-tabs-custom .dropdown.open > a:active,
.nav-tabs-custom .dropdown.open > a:focus {
  background: transparent;
  color: #999;
}
/* PAGINATION */
.pagination > li > a {
  background: #fafafa;
  color: #666;
}
.pagination.pagination-flat > li > a {
  border-radius: 0 !important;
}
.panel,
.panel-default {
  border-color: #e4e4e4;
  margin-bottom: 22px;
  position: relative;
  box-shadow: none;
  border-radius: 4px 4px 0 0;
}
.panel .alert-page,
.panel-default .alert-page {
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 2px;
  font-size: 12px;
  margin: -2px -1px 0 -1px !important;
  padding: 8px 15px;
  position: relative;
}
.panel.no-heading {
  border-radius: 0;
}
.panel-heading {
  background: #fafafa;
  border-bottom: 2px solid #ececec;
  padding-bottom: 9px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 11px;
  position: relative;
}
.panel-heading .nav-tabs {
  border-bottom-color: transparent;
  bottom: -2px;
  position: absolute;
  right: 9px;
}
.panel-heading .nav-tabs > li > a {
  border-bottom-color: transparent;
}
.panel.light-shadow {
  box-shadow: 2px 2px 6px 0px rgba(196, 188, 196, 0.4);
}
.submenu {
  padding-top: 20px;
}
.panel-body {
  background: #fff;
  padding: 20px;
}
.panel-body > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.panel-footer {
  background: #fff;
  border-top: 1px solid #ececec;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 20px;
}
.panel-title {
  color: #504f4f;
  font-size: 14px;
  line-height: 20px;
}
.panel-title-icon {
  display: inline-block;
  font-size: 14px;
  margin-right: 7px;
}
.panel-heading-controls {
  margin-top: -1px;
  margin-bottom: -200px;
  float: right;
}
.panel-heading-controls > * {
  display: block;
  float: left;
}
.panel-heading-controls > * + * {
  margin-left: 4px;
}
.panel-heading-controls > .btn,
.panel-heading-controls > .btn-group {
  margin-top: -4px;
}
.panel-heading-controls > .btn.btn-sm,
.panel-heading-controls > .btn-group.btn-group-sm {
  margin-top: -4px;
}
.panel-heading-controls > .btn.btn-xs,
.panel-heading-controls > .btn-group.btn-group-xs {
  margin-top: 0;
}
.panel-heading-controls > .progress {
  height: 6px;
  margin-top: 8px;
}
.panel-heading-controls > .label,
.panel-heading-controls .badge {
  margin-bottom: -10px;
  margin-top: 1px;
}
.panel-heading-controls > .pagination {
  margin: -5px 0 0 0;
}
.panel-heading-controls > .pagination.pagination-sm {
  margin-top: -3px;
}
.panel-heading-controls > .pagination.pagination-xs {
  margin-top: -1px;
}
.panel-heading-controls > .pager {
  margin: -4px 0 0 0;
}
.panel-heading-controls > .pager.pager-xs {
  margin: -1px 0 0 0;
}
.panel-heading-controls > .form-control,
.panel-heading-controls .input-group {
  margin-top: -2px;
}
.panel-heading-controls > .form-control,
.panel-heading-controls .input-group .form-control,
.panel-heading-controls .input-group .btn {
  height: 26px;
  padding: 3px 8px;
}
.panel-heading-controls > .panel-heading-icon {
  font-size: 14px;
  margin-top: 1px;
}
.panel-heading-controls > .switcher {
  margin-top: 1px;
}
.panel-heading-text {
  display: inline-block;
  line-height: 20px;
  font-size: 12px;
  margin-top: 1px;
}
.panel-dark .panel-heading-controls .btn {
  border-color: transparent;
}
.panel-dark .panel-heading-controls .btn.btn-outline {
  border-width: 1px;
  border-color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}
.panel-dark .panel-heading-controls .btn.btn-outline:hover {
  border-color: transparent !important;
}
.panel-dark .panel-heading-controls > .form-control {
  border-color: transparent !important;
}
.panel-dark .panel-heading-controls > .pagination li a,
.panel-dark .panel-heading-controls > .pager li a,
.panel-dark .panel-heading-controls > .pagination li span,
.panel-dark .panel-heading-controls > .pager li span {
  border-color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
}
.panel-dark .panel-heading-controls > .pagination li a:hover,
.panel-dark .panel-heading-controls > .pager li a:hover {
  color: #fff;
  border-color: #fff;
}
.panel-dark .panel-heading-controls > .pagination li.active a,
.panel-dark .panel-heading-controls > .pager li.active a,
.panel-dark .panel-heading-controls > .pagination li.active a:hover,
.panel-dark .panel-heading-controls > .pager li.active a:hover,
.panel-dark .panel-heading-controls > .pagination li.active span,
.panel-dark .panel-heading-controls > .pager li.active span {
  background: #fff;
  border-color: #fff;
}
.panel-dark .panel-heading-controls > .pagination li.disabled a,
.panel-dark .panel-heading-controls > .pager li.disabled a,
.panel-dark .panel-heading-controls > .pagination li.disabled span,
.panel-dark .panel-heading-controls > .pager li.disabled span {
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.3) !important;
}
.panel-dark .panel-heading-controls .input-group .form-control {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: #d5d5d5;
}
.panel-dark .panel-heading .nav-tabs > li > a {
  background: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
}
.panel-dark .panel-heading .nav-tabs > li > a:hover {
  color: #fff;
}
.panel-dark .panel-heading .nav-tabs > li.active > a,
.panel-dark .panel-heading .nav-tabs > li.active > a:hover,
.panel-dark .panel-heading .nav-tabs > li.active > a:focus {
  background: #fff;
  border-bottom-color: #fff;
  color: #504f4f;
}
.panel-profile {
  text-align: center;
  border-radius: 6px;
  color: #ffffff;
}
.panel-profile,
.panel-profile a {
  color: #ffffff;
}
.panel-profile .panel-heading {
  padding: 30px 15px 15px 15px;
  font-size: 18px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.panel-profile .panel-body {
  padding: 20px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.panel-profile.panel-success .panel-heading,
.panel-profile.panel-success .panel-body {
  background-color: #5ebd5e;
}
.panel-profile.panel-success .panel-heading {
  border-bottom: 2px solid #82cc82;
}
.panel-profile.panel-success a {
  color: #ddf1dd;
}
.panel-profile.panel-info .panel-heading,
.panel-profile.panel-info .panel-body {
  background-color: #5bc0de;
}
.panel-profile.panel-info .panel-heading {
  border-bottom: 2px solid #85d0e7;
}
.panel-profile.panel-info a {
  color: #f0f9fc;
}
.panel-profile.panel-warning .panel-heading,
.panel-profile.panel-warning .panel-body {
  background-color: #f4b04f;
}
.panel-profile.panel-warning .panel-heading {
  border-bottom: 2px solid #f7c67f;
}
.panel-profile.panel-warning a {
  color: #fefbf7;
}
.panel-profile.panel-danger .panel-heading,
.panel-profile.panel-danger .panel-body {
  background-color: #e66454;
}
.panel-profile.panel-danger .panel-heading {
  border-bottom: 2px solid #ed8c80;
}
.panel-profile.panel-danger a {
  color: #fdf1f0;
}
.panel-profile.panel-purple .panel-heading,
.panel-profile.panel-purple .panel-body {
  background-color: #857198;
}
.panel-profile.panel-purple .panel-heading {
  border-bottom: 2px solid #9e8fad;
}
.panel-profile.panel-purple a {
  color: #ded8e3;
}
.panel-profile.panel-black .panel-heading,
.panel-profile.panel-black .panel-body {
  background-color: #39393d;
}
.panel-profile.panel-black .panel-heading {
  border-bottom: 2px solid #525257;
}
.panel-profile.panel-black a {
  color: #d3d3d5;
}
.panel-profile:hover a {
  color: #ffffff;
}
/* Stat panels */
.stat-panel {
  background: #fff;
  border-radius: 2px;
  display: table;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  table-layout: fixed !important;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  box-shadow: 2px 2px 7px 0px rgba(196, 188, 196, 0.4);
  border-radius: 4px;
}
.stat-panel:after {
  clear: both;
}
.stat-rows {
  display: table;
  height: 100%;
  table-layout: fixed !important;
  width: 100%;
}
.stat-cell,
.stat-row {
  float: none !important;
}
.stat-row {
  display: table-row !important;
  float: none;
  width: 100%;
}
.stat-cell {
  display: table-cell !important;
  overflow: hidden;
  padding: 20px;
  position: relative;
}
.stat-cell > * {
  position: relative;
}
.stat-cell .fa {
  line-height: 1.42857143;
}
.stat-cell .bg-icon {
  bottom: 0;
  color: rgba(0, 0, 0, 0.05);
  font-size: 100px;
  line-height: 100px;
  height: 100px;
  position: absolute;
  right: 0;
  text-align: center;
  width: 120px;
}
.stat-cell .bg-icon.bg-icon-left {
  left: 0;
  right: auto;
}
a.stat-cell:hover {
  text-decoration: none;
}
.stats-sparklines {
  display: inline-block;
  margin-bottom: -2px;
  position: relative;
  width: 100%;
}
.stat-counters {
  border-bottom: 1px solid #e4e4e4;
  border-top: 1px solid #e4e4e4;
  display: table;
  overflow: hidden;
  table-layout: fixed;
  width: 100%;
}
.stat-counters > .stat-cell {
  display: table-cell;
  float: none;
}
.stat-counters > .stat-cell + .stat-cell {
  border-left: 1px solid #e4e4e4;
}
.stat-counters[class*='bg-'] {
  border-color: #fff;
  border-color: rgba(0, 0, 0, 0.2);
}
.stat-counters[class*='bg-'] .stat-cell {
  border-color: #fff;
  border-color: rgba(0, 0, 0, 0.2);
}
/* Tight panels for small spaces */
.panel-tight {
  padding-left: 5px;
  padding-right: 5px;
}
.panel-tight-section {
  padding-left: 2px;
  padding-right: 2px;
}
.panel-tight-row {
  margin-bottom: 15px;
}
.panel-tight-row.buttons {
  margin-bottom: 0;
  margin-top: 10px;
}
.panel-tight label {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}
.panel-tight .ledger {
  border-bottom: 1px solid #f3f3f3;
}
.panel-tight .ledger.last {
  border-bottom: 3px solid #f3f3f3;
}
/* For panels that embed other panels */
.panel-embed {
  padding: 15px 5px 0 5px;
}
/*
 * Component: Progress Bar
 * -----------------------
 */
.progress,
.progress > .progress-bar {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.progress,
.progress > .progress-bar,
.progress .progress-bar,
.progress > .progress-bar .progress-bar {
  border-radius: 1px;
}
/* size variation */
.progress.sm,
.progress-sm {
  height: 10px;
}
.progress.sm,
.progress-sm,
.progress.sm .progress-bar,
.progress-sm .progress-bar {
  border-radius: 1px;
}
.progress.xs,
.progress-xs {
  height: 7px;
}
.progress.xs,
.progress-xs,
.progress.xs .progress-bar,
.progress-xs .progress-bar {
  border-radius: 1px;
}
.progress.xxs,
.progress-xxs {
  height: 3px;
}
.progress.xxs,
.progress-xxs,
.progress.xxs .progress-bar,
.progress-xxs .progress-bar {
  border-radius: 1px;
}
/* Vertical bars */
.progress.vertical {
  position: relative;
  width: 30px;
  height: 200px;
  display: inline-block;
  margin-right: 10px;
}
.progress.vertical > .progress-bar {
  width: 100%;
  position: absolute;
  bottom: 0;
}
.progress.vertical.sm,
.progress.vertical.progress-sm {
  width: 20px;
}
.progress.vertical.xs,
.progress.vertical.progress-xs {
  width: 10px;
}
.progress.vertical.xxs,
.progress.vertical.progress-xxs {
  width: 3px;
}
.progress-group .progress-text {
  font-weight: 600;
}
.progress-group .progress-number {
  float: right;
}
/* Remove margins from progress bars when put in a table */
.table tr > td .progress {
  margin: 0;
}
.progress-bar-light-blue,
.progress-bar-primary {
  background-color: #3498db;
}
.progress-striped .progress-bar-light-blue,
.progress-striped .progress-bar-primary {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-green,
.progress-bar-success {
  background-color: #5ebd5e;
}
.progress-striped .progress-bar-green,
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-aqua,
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-aqua,
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-yellow,
.progress-bar-warning {
  background-color: #f4b04f;
}
.progress-striped .progress-bar-yellow,
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-red,
.progress-bar-danger {
  background-color: #e66454;
}
.progress-striped .progress-bar-red,
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
/*
 * Component: Sidebar Mini
 */
@media (min-width: 768px) {
  .sidebar-mini.sidebar-collapse .content-wrapper,
  .sidebar-mini.sidebar-collapse .right-side,
  .sidebar-mini.sidebar-collapse .main-footer {
    margin-left: 50px!important;
    z-index: 840;
  }
  .sidebar-mini.sidebar-collapse .main-sidebar {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    width: 50px!important;
    z-index: 850;
  }
  .sidebar-mini.sidebar-collapse .sidebar-menu > li {
    position: relative;
  }
  .sidebar-mini.sidebar-collapse .sidebar-menu > li > a {
    margin-right: 0;
  }
  .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span {
    border-top-right-radius: 4px;
  }
  .sidebar-mini.sidebar-collapse .sidebar-menu > li:not(.treeview) > a > span {
    border-bottom-right-radius: 4px;
  }
  .sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu {
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom-right-radius: 4px;
  }
  .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > span:not(.pull-right),
  .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
    display: block!important;
    position: absolute;
    width: 180px;
    left: 50px;
  }
  .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > span {
    top: 0;
    margin-left: -3px;
    padding: 12px 5px 12px 20px;
    background-color: inherit;
  }
  .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
    top: 44px;
    margin-left: 0;
  }
  .sidebar-mini.sidebar-collapse .main-sidebar .user-panel > .info,
  .sidebar-mini.sidebar-collapse .sidebar-form,
  .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span,
  .sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu,
  .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > .pull-right,
  .sidebar-mini.sidebar-collapse .sidebar-menu li.header {
    display: none!important;
    -webkit-transform: translateZ(0);
  }
  .sidebar-mini.sidebar-collapse .main-header .logo {
    width: 50px;
  }
  .sidebar-mini.sidebar-collapse .main-header .logo > .logo-mini {
    display: block;
    margin-left: -15px;
    margin-right: -15px;
    font-size: 18px;
  }
  .sidebar-mini.sidebar-collapse .main-header .logo > .logo-lg {
    display: none;
  }
  .sidebar-mini.sidebar-collapse .main-header .navbar {
    margin-left: 50px;
  }
}
.sidebar-menu,
.main-sidebar .user-panel,
.sidebar-menu > li.header {
  white-space: nowrap;
  overflow: hidden;
}
.sidebar-menu:hover {
  overflow: visible;
}
.sidebar-form,
.sidebar-menu > li.header {
  overflow: hidden;
  text-overflow: clip;
}
.sidebar-menu li > a {
  position: relative;
}
.sidebar-menu li > a > .pull-right {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -7px;
}
/*
 * Component: Sidebar
 * ------------------
 */
.main-sidebar,
.left-side {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 50px;
  min-height: 100%;
  width: 230px;
  z-index: 810;
  -webkit-transition: -webkit-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  -moz-transition: -moz-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .main-sidebar,
  .left-side {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .main-sidebar,
  .left-side {
    -webkit-transform: translate(-230px, 0);
    -ms-transform: translate(-230px, 0);
    -o-transform: translate(-230px, 0);
    transform: translate(-230px, 0);
  }
}
@media (min-width: 768px) {
  .sidebar-collapse .main-sidebar,
  .sidebar-collapse .left-side {
    -webkit-transform: translate(-230px, 0);
    -ms-transform: translate(-230px, 0);
    -o-transform: translate(-230px, 0);
    transform: translate(-230px, 0);
  }
}
@media (max-width: 767px) {
  .sidebar-open .main-sidebar,
  .sidebar-open .left-side {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.sidebar {
  padding-bottom: 10px;
}
.sidebar-form input:focus {
  border-color: transparent;
}
.user-panel {
  position: relative;
  width: 100%;
  padding: 10px;
  overflow: hidden;
}
.user-panel:before,
.user-panel:after {
  content: " ";
  display: table;
}
.user-panel:after {
  clear: both;
}
.user-panel > .image > img {
  width: 100%;
  max-width: 45px;
  height: auto;
}
.user-panel > .info {
  padding: 5px 5px 5px 15px;
  line-height: 1;
  position: absolute;
  left: 55px;
}
.user-panel > .info > p {
  font-weight: 600;
  margin-bottom: 9px;
}
.user-panel > .info > a {
  text-decoration: none;
  padding-right: 5px;
  margin-top: 3px;
  font-size: 11px;
}
.user-panel > .info > a > .fa,
.user-panel > .info > a > .ion,
.user-panel > .info > a > .glyphicon {
  margin-right: 3px;
}
.sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-menu > li {
  position: relative;
  margin: 0;
  padding: 0;
}
.sidebar-menu > li > a {
  padding: 12px 5px 12px 15px;
  display: block;
  cursor: pointer;
}
.sidebar-menu > li > a > .fa,
.sidebar-menu > li > a > .glyphicon,
.sidebar-menu > li > a > .ion {
  width: 20px;
}
.sidebar-menu > li .label,
.sidebar-menu > li .badge {
  margin-top: 3px;
  margin-right: 5px;
}
.sidebar-menu li.header {
  padding: 10px 25px 10px 15px;
  font-size: 12px;
}
.sidebar-menu li > a > .fa-angle-left {
  width: auto;
  height: auto;
  padding: 0;
  margin-right: 10px;
  margin-top: 3px;
}
.sidebar-menu li.active > a > .fa-angle-left {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.sidebar-menu li.active > .treeview-menu {
  display: block;
}
.sidebar-menu li.highlight {
  background-color: #4fb845;
}
.sidebar-menu li.highlight > a {
  color: white;
}
.sidebar-menu .treeview-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 5px;
}
.sidebar-menu .treeview-menu .treeview-menu {
  padding-left: 20px;
}
.sidebar-menu .treeview-menu > li {
  margin: 0;
  padding: 5px 0 5px 25px;
}
.sidebar-menu .treeview-menu > li > a {
  padding: 5px 5px 5px 15px;
  display: block;
  font-size: 14px;
}
.sidebar-menu .treeview-menu > li > a > .fa,
.sidebar-menu .treeview-menu > li > a > .glyphicon,
.sidebar-menu .treeview-menu > li > a > .ion {
  width: 20px;
}
.sidebar-menu .treeview-menu > li > a > .fa-angle-left,
.sidebar-menu .treeview-menu > li > a > .fa-angle-down {
  width: auto;
}
.mm-text {
  padding-left: 7px;
}
.skin-comecero .main-header .navbar {
  background-color: #ffffff;
}
.skin-comecero .main-header .navbar .nav > li > a {
  color: #8b8a8a;
}
.skin-comecero .main-header .navbar .nav > li > a:hover,
.skin-comecero .main-header .navbar .nav > li > a:active,
.skin-comecero .main-header .navbar .nav > li > a:focus,
.skin-comecero .main-header .navbar .nav .open > a,
.skin-comecero .main-header .navbar .nav .open > a:hover,
.skin-comecero .main-header .navbar .nav .open > a:focus,
.skin-comecero .main-header .navbar .nav > .active > a {
  background: #f7f6f6;
  color: #686868;
}
.skin-comecero .main-header .navbar .sidebar-toggle {
  color: #8b8a8a;
}
.skin-comecero .main-header .navbar .sidebar-toggle:hover {
  color: #686868;
  background: #f7f6f6;
}
.skin-comecero .main-header .navbar .sidebar-toggle {
  color: #8b8a8a;
}
.skin-comecero .main-header .navbar .sidebar-toggle:hover {
  background-color: #f2f2f2;
  color: #8b8a8a;
}
@media (max-width: 767px) {
  .skin-comecero .main-header .navbar .dropdown-menu li.divider {
    background-color: #f4f4f4;
  }
  .skin-comecero .main-header .navbar .dropdown-menu li a:hover {
    background: #f2f2f2;
  }
}
.skin-comecero .main-header .logo {
  background-color: #ffffff;
  color: #fff;
  border-bottom: 0 solid transparent;
  color: #2c3e50;
  text-align: left;
}
.skin-comecero .main-header .logo:hover {
  background-color: #fcfcfc;
}
.skin-comecero .main-header li.user-header {
  background-color: #ffffff;
}
.skin-comecero .content-header {
  background: transparent;
}
.skin-comecero .wrapper,
.skin-comecero .main-sidebar,
.skin-comecero .left-side {
  background-color: #2c3e50;
}
.skin-comecero .user-panel > .info,
.skin-comecero .user-panel > .info > a {
  color: #fff;
}
.skin-comecero .sidebar-menu > li.header {
  color: #507192;
  background: #253443;
}
.skin-comecero .sidebar-menu > li > a {
  border-left: 3px solid transparent;
}
.skin-comecero .sidebar-menu > li:hover > a,
.skin-comecero .sidebar-menu > li.active > a {
  color: #ffffff;
  background: #233140;
  border-left-color: #ecf0f1;
}
.skin-comecero .sidebar-menu > li > .treeview-menu {
  margin: 0 1px;
  background: #354b60;
}
.skin-comecero .sidebar a {
  color: #a8bccf;
}
.skin-comecero .sidebar a:hover {
  text-decoration: none;
}
.skin-comecero .treeview-menu > li > a {
  color: #a8bccf;
}
.skin-comecero .treeview-menu > li.active > a,
.skin-comecero .treeview-menu > li > a:hover {
  color: #ffffff;
}
.skin-comecero .sidebar-form {
  border-radius: 3px;
  border: 1px solid #3e5771;
  margin: 10px 10px;
}
.skin-comecero .sidebar-form input[type="text"],
.skin-comecero .sidebar-form .btn {
  box-shadow: none;
  background-color: #ffffff;
  border: 1px solid transparent;
  height: 35px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.skin-comecero .sidebar-form input[type="text"] {
  color: #666;
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
}
.skin-comecero .sidebar-form input[type="text"]:focus,
.skin-comecero .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #fff;
  color: #666;
}
.skin-comecero .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left-color: #fff;
}
.skin-comecero .sidebar-form .btn {
  color: #999;
  border-top-left-radius: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 0;
}
.skin-blue.layout-top-nav .main-header > .logo {
  background-color: #2c3e50;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-blue.layout-top-nav .main-header > .logo:hover {
  background-color: #2a3b4d;
}
/* Colors */
.text-success {
  color: #5ebd5e;
}
.text-danger {
  color: #e66454;
}
.text-warning {
  color: #f4b04f;
}
/* Text sizes */
.text-bg {
  font-size: 17px;
}
.text-xs {
  font-size: 11px;
}
.text-info,
.text-info:hover,
.text-info:active,
.text-info:focus,
.text-info a,
.text-info a:focus {
  color: #5bc0de;
}
/* Text manipulations */
.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-capitalize-first:first-letter {
  text-transform: capitalize;
}
.text-normal {
  text-transform: none;
}
.text-italics {
  font-style: italic;
}
.text-strike {
  text-decoration: line-through;
}
/* Growls */
.growls {
  position: fixed;
  right: 5px;
  bottom: -10px;
  z-index: 9998;
  max-width: 500px;
}
.growl {
  padding: 25px;
  box-shadow: -8px -8px 35px -12px #9c9a9c;
}
.growl .close {
  position: absolute;
  top: 3px;
  right: 8px;
}
/* Wells */
.well {
  margin: 25px 15px 15px 15px;
}
body {
  color: #504f4f;
}
.content-wrapper {
  background-color: #f6f6f6;
}
/* Help text, used below form inputs */
p.help-text {
  font-size: 13px;
  font-style: italic;
  margin-top: 5px;
  color: #898888;
}
/* Main font */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* Logo font */
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url(/fonts/montserrat/Montserrat-SemiBold.otf) format("opentype");
}
.brand-light {
  font-weight: 600;
  letter-spacing: .75px;
  color: #494949;
  font-family: "Montserrat-SemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
.brand-dark {
  font-weight: 600;
  letter-spacing: .75px;
  color: #fff;
  font-family: "Montserrat-SemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* Main header */
.main-header {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
}
.main-header li {
  border-left: 1px solid #f4f4f4;
}
/* Footer style */
.main-footer {
  background: #fff;
  padding: 13px;
  color: #8b8a8a;
  font-size: 12px;
  border-top: 1px solid #d2d6de;
  box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
}
/* Page header */
.page-header {
  position: relative;
  padding: 0;
  border-bottom: none;
}
.page-header:after {
  clear: both;
}
.page-header:before,
.page-header:after {
  content: " ";
  display: table;
}
.page-header h1 {
  margin: 0;
  font-size: 24px;
  float: left;
  padding-top: 4px;
}
/* Modal Content */
.modal-content {
  box-shadow: none;
}
/* Define the width of the content area, primarily to minimize on wide screens and maximize on small screens */
@media (min-width: 768px) {
  .container {
    width: 95%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 95%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 960px;
  }
}
/* List items */
li a {
  cursor: pointer;
}
/* Text for deletions */
.delete {
  color: #d60404;
  cursor: pointer;
}
/* Required for Angular Bootstrap UI */
.nav,
.pagination,
.carousel,
.panel-title a {
  cursor: pointer;
}
/* This fixes an issue where bootstrap causes the page to shift when a modal is open. https://github.com/twbs/bootstrap/issues/9855 look for the solution posted by yshing on May 1. */
.modal {
  overflow-y: auto;
}
.modal-open {
  overflow: auto;
  overflow-x: hidden;
}
/* End modal shift bug fix */
/* Lists where no data is available */
p.no-info {
  color: #bab9b9;
  font-size: 18px;
  text-align: center;
  margin: 30px 0 30px 0;
}
/* Classes to give sizes to icons */
.fa-2 {
  font-size: 2em !important;
}
.fa-3 {
  font-size: 4em !important;
}
.fa-4 {
  font-size: 7em !important;
}
.fa-5 {
  font-size: 12em !important;
}
.fa-6 {
  font-size: 20em !important;
}
/* Custom CSS for dropzone - we don't use their default styling */
.dz-default {
  text-align: center;
  cursor: pointer;
}
/* Make things look clickable */
.pointer {
  cursor: pointer;
}
/* Backgrounds */
.bg-success {
  background-color: #5ebd5e;
  color: #ffffff;
}
.bg-warning {
  background-color: #f4b04f;
  color: #ffffff;
}
.bg-danger {
  background-color: #e66454;
  color: #ffffff;
}
.bg-info {
  background-color: #5bc0de;
  color: #ffffff;
}
.bg-purple {
  background-color: #857198;
  color: #ffffff;
}
.bg-black {
  background-color: #39393d;
  color: #ffffff;
}
/* Tabs */
.tab-content {
  padding-top: 15px;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  background: #3498db;
  border-bottom: 2px solid #1a7ab9;
  color: #fff;
}
.nav-tabs > li > a {
  background-color: #f3f3f3;
  background-color: rgba(0, 0, 0, 0.05);
  border: 0;
  border-bottom: 2px solid #e4e4e4;
  color: #777;
  margin: 0 6px -1px 0;
  padding: 8px 20px;
}
/* Small padding */
.padding-sm {
  padding: 10px 15px !important;
}
/* Used in permissions block */
.border-b {
  border-bottom: 1px solid #f4f4f4;
}
/* Fields section headers */
.section-header {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #258cd1 !important;
  padding: 10px 18px 0 8px;
  margin-bottom: 15px;
  margin-top: 0;
}
/* Form error text */
.help-block {
  font-style: italic;
  font-size: 90%;
  margin-bottom: 0;
  z-index: 3;
}
.has-error .help-block {
  background: #f2dede;
  border-color: #ebccd1;
  color: #b94a48;
  background-size: 20px 20px;
}
.has-error .help-block {
  display: block;
  border: 1px solid;
  padding: 5px 10px;
  border-radius: 2px;
  margin-top: 2px;
  position: relative;
}
.has-error .help-block:before,
.has-error .help-block:after {
  content: "";
  position: absolute;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}
.has-error .help-block:before {
  border-bottom: solid;
  border-width: 7px;
  left: 16px;
  top: -7px;
}
.has-error .help-block:after {
  border-bottom: 6px solid;
  left: 17px;
  top: -6px;
}
.has-error .help-block {
  background: #f2dede;
  border-color: #ebccd1;
  color: #b94a48;
  background-size: 20px 20px;
}
.has-error .help-block:before {
  border-bottom-color: #dda7b0;
}
.has-error .help-block:after {
  border-bottom-color: #f3e2e2;
}
.strikethrough {
  text-decoration: line-through;
}
/* Badges */
.badge {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  padding: 0 8px;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.badge.pull-right {
  margin: 0;
}
.badge {
  background: #b0b0b0;
  border: 1px solid #b0b0b0;
}
.badge[href]:hover,
.badge[href]:focus {
  background-color: #979797;
  border-color: #979797;
}
.badge.badge-success {
  background: #5ebd5e;
  border: 1px solid #5ebd5e;
}
.badge.badge-success[href]:hover,
.badge.badge-success[href]:focus {
  background-color: #43a543;
  border-color: #43a543;
}
.badge.badge-warning {
  background: #f4b04f;
  border: 1px solid #f4b04f;
}
.badge.badge-warning[href]:hover,
.badge.badge-warning[href]:focus {
  background-color: #f19a1f;
  border-color: #f19a1f;
}
.badge.badge-danger {
  background: #e66454;
  border: 1px solid #e66454;
}
.badge.badge-danger[href]:hover,
.badge.badge-danger[href]:focus {
  background-color: #df3c28;
  border-color: #df3c28;
}
.badge.badge-info {
  background: #5bc0de;
  border: 1px solid #5bc0de;
}
.badge.badge-info[href]:hover,
.badge.badge-info[href]:focus {
  background-color: #31b0d5;
  border-color: #31b0d5;
}
.badge.badge-primary {
  background: #337ab7;
  border: 1px solid #337ab7;
}
.badge.badge-primary[href]:hover,
.badge.badge-primary[href]:focus {
  background-color: #1b6db5;
  border-color: #1b6db5;
}
/* Error codes in error messages */
.error-code {
  font-size: 11px;
}
/* A custom "grid table" that turns tabular data into content blocks for small devices */
.gridtable:after,
.gridtable:before,
.gridtable-header:after,
.gridtable-header:before,
.gridtable-row:after,
.gridtable-row:before {
  content: " ";
  display: table;
  clear: both;
}
.gridtable label {
  margin-bottom: 0;
}
.gridtable-header {
  border-bottom: 2px solid #e2e2e2;
  padding-bottom: 5px;
}
.gridtable-header > div {
  padding-top: 10px;
}
.gridtable-header .button {
  padding-top: 1px;
}
.gridtable-row:not(.no-hover):hover {
  background-color: #f5f5f5;
}
.gridtable-row {
  border-bottom: 1px solid #f4f4f4;
}
.gridtable-row > div {
  padding: 20px 0 20px 0;
}
.gridtable-row .form-group {
  margin-bottom: 0;
}
.gridtable-row .tight {
  padding: 10px 0 10px 0;
}
.gridtable-row .value {
  overflow: hidden;
}
.gridtable-header > .btn-header {
  padding-top: 5px;
}
.gridtable-header > .btn-header button {
  font-weight: bold;
}
@media (max-width: 991px) {
  .gridtable-row:not(.wide-md) {
    border: 1px solid #f4f4f4;
    border-radius: 2px;
    padding: 15px 5px 15px 5px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .gridtable-row > div:not(.wide-md) {
    padding: 5px 0 5px 0;
  }
}
@media (max-width: 768px) {
  .gridtable-row {
    border: 1px solid #f4f4f4;
    border-radius: 2px;
    padding: 15px 5px 15px 5px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .gridtable-row > div {
    padding: 5px 0 5px 0;
  }
}
@media (max-width: 767px) {
  .text-right-xs {
    text-align: right !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .text-right-sm {
    text-align: right !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .text-right-md {
    text-align: right !important;
  }
}
@media (min-width: 1200px) {
  .text-right-lg {
    text-align: right !important;
  }
}
@media (max-width: 767px) {
  .text-center-xs {
    text-align: center !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .text-center-sm {
    text-align: center !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .text-center-md {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-center-lg {
    text-align: center !important;
  }
}
/* Spacers */
.spacer-t5 {
  margin-top: 5px;
}
.spacer-b5 {
  margin-bottom: 5px;
}
.spacer-r5 {
  margin-right: 5px;
}
.spacer-l5 {
  margin-left: 5px;
}
.spacer-5 {
  margin: 5px;
}
.spacer-t10 {
  margin-top: 10px;
}
.spacer-b10 {
  margin-bottom: 10px;
}
.spacer-r10 {
  margin-right: 10px;
}
.spacer-l10 {
  margin-left: 10px;
}
.spacer-10 {
  margin: 10px;
}
.spacer-b15 {
  margin-bottom: 15px;
}
.spacer-r15 {
  margin-right: 15px;
}
.spacer-l15 {
  margin-left: 15px;
}
.spacer-15 {
  margin: 15px;
}
.spacer-t20 {
  margin-top: 20px;
}
.spacer-b20 {
  margin-bottom: 20px;
}
.spacer-r20 {
  margin-right: 20px;
}
.spacer-l20 {
  margin-left: 20px;
}
.spacer-20 {
  margin: 20px;
}
.spacer-t30 {
  margin-top: 30px;
}
.spacer-b30 {
  margin-bottom: 30px;
}
.spacer-r30 {
  margin-right: 30px;
}
.spacer-l30 {
  margin-left: 30px;
}
.spacer-30 {
  margin: 30px;
}
.spacer-t40 {
  margin-top: 40px;
}
.spacer-b40 {
  margin-bottom: 40px;
}
.spacer-r40 {
  margin-right: 40px;
}
.spacer-l40 {
  margin-left: 40px;
}
.spacer-40 {
  margin: 40px;
}
.spacer-t100 {
  margin-top: 100px;
}
.spacer-b100 {
  margin-bottom: 100px;
}
.spacer-r100 {
  margin-right: 100px;
}
.spacer-l100 {
  margin-left: 100px;
}
.spacer-100 {
  margin: 100px;
}
.padding-l0 {
  padding-left: 0 !important;
}
.padding-r0 {
  padding-right: 0 !important;
}
.padding-l5 {
  padding-left: 5px !important;
}
.padding-r5 {
  padding-right: 5px !important;
}
.padding-l7 {
  padding-left: 7px !important;
}
.padding-r7 {
  padding-right: 7px !important;
}
.padding-l15 {
  padding-left: 15px !important;
}
.padding-r15 {
  padding-right: 15px !important;
}
.padding-l20 {
  padding-left: 20px !important;
}
.padding-r20 {
  padding-right: 20px !important;
}
textarea.no-wrap {
  white-space: pre;
  word-wrap: normal;
  overflow-x: scroll;
}
/* Notification preview iFrame */
.notification-preview {
  width: 100%;
  height: 800px;
  border: 0;
}
/* Table */
table.data td,
table.data th {
  border: 1px solid #f4f4f4;
  padding: 10px 5px 10px 5px;
  font-size: 12px;
  min-width: 90px;
}
table.data th {
  font-weight: bold;
}
