/*!
 *   dash v1.0.0
 *   Author: NetIQ
 *	 Website: www.netiq.com
 *   License: Open source - MIT
 *   Please visit http://opensource.org/licenses/MIT for more information
!*/
/*
 * 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: relative;
  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('../commons/images/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 {
  -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 {
  margin-left: 0;
}
@media (max-width: 767px) {
  .content-wrapper,
  .right-side {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .sidebar-collapse .content-wrapper,
  .sidebar-collapse .right-side {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .sidebar-open .content-wrapper,
  .sidebar-open .right-side {
    -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: #fff;
  z-index: 800;
}
/* 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-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: #337ab7;
}
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
  color: #23527c;
}
/* Page Header */
.page-header {
  margin: 10px 0 20px 0;
  font-size: 22px;
}
.page-header > small {
  color: #666;
  display: block;
  margin-top: 5px;
}
/*
 * Skin: Blue
 * ----------
 */
.skin-blue-light .main-header .navbar {
  background: linear-gradient(to right, 0, 0);
}
.skin-blue-light .main-header .navbar .nav > li > a {
  color: #fff;
}
.skin-blue-light .main-header .navbar .nav > li > a:hover,
.skin-blue-light .main-header .navbar .nav > li > a:active,
.skin-blue-light .main-header .navbar .nav > li > a:focus,
.skin-blue-light .main-header .navbar .nav .open > a,
.skin-blue-light .main-header .navbar .nav .open > a:hover,
.skin-blue-light .main-header .navbar .nav .open > a:focus,
.skin-blue-light .main-header .navbar .nav > .active > a {
  background: rgba(0, 0, 0, 0.1);
  color: #f6f6f6;
}
.skin-blue-light .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-blue-light .main-header .navbar .sidebar-toggle:hover {
  color: #f6f6f6;
  background: rgba(0, 0, 0, 0.1);
}
.skin-blue-light .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-blue-light .main-header .navbar .sidebar-toggle:hover {
  background-color: #367fa9;
}
@media (max-width: 767px) {
  .skin-blue-light .main-header .navbar .dropdown-menu li.divider {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .skin-blue-light .main-header .navbar .dropdown-menu li a {
    color: #777;
  }
  .skin-blue-light .main-header .navbar .dropdown-menu li a:hover {
    color: #fff;
    background: #367fa9;
  }
}
.skin-blue-light .main-header .logo {
  background-color: #3c8dbc;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-blue-light .main-header .logo:hover {
  background-color: #3b8ab8;
}
.skin-blue-light .main-header li.user-header {
  background-color: #3c8dbc;
}
.skin-blue-light .content-header {
  background: transparent;
}
.skin-blue-light .wrapper,
.skin-blue-light .main-sidebar,
.skin-blue-light .left-side {
  background-color: #f9fafc;
}
.skin-blue-light .content-wrapper {
  border-left: 1px solid #d2d6de;
}
.skin-blue-light .user-panel > .info,
.skin-blue-light .user-panel > .info > a {
  color: #444;
}
.skin-blue-light .sidebar-menu > li {
  -webkit-transition: border-left-color 0.3s ease;
  -o-transition: border-left-color 0.3s ease;
  transition: border-left-color 0.3s ease;
}
.skin-blue-light .sidebar-menu > li.header {
  color: #848484;
  background: #f9fafc;
}
.skin-blue-light .sidebar-menu > li > a {
  border-left: 3px solid transparent;
  font-weight: 600;
}
.skin-blue-light .sidebar-menu > li:hover > a,
.skin-blue-light .sidebar-menu > li.active > a {
  color: #000;
  background: #f4f4f5;
  border-left-color: #3C8DBC;
}
.skin-blue-light .sidebar-menu > li.active {
  border-left-color: #3c8dbc;
}
.skin-blue-light .sidebar-menu > li.active > a {
  font-weight: 600;
}
.skin-blue-light .sidebar-menu > li > .treeview-menu {
  background: #f4f4f5;
}
.skin-blue-light .sidebar-menu > li.cat-heading {
  background: #f4f4f5;
}
.skin-blue-light .sidebar-menu > li.cat-child {
  padding-left: 3px;
}
.skin-blue-light .sidebar-menu > li.divider {
  height: 1px;
  margin: 2px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.skin-blue-light .sidebar a {
  color: #444;
}
.skin-blue-light .sidebar a:hover {
  text-decoration: none;
}
.skin-blue-light .treeview-menu > li > a {
  color: #777;
}
.skin-blue-light .treeview-menu > li.active > a,
.skin-blue-light .treeview-menu > li > a:hover {
  color: #000;
}
.skin-blue-light .treeview-menu > li.active > a {
  font-weight: 600;
}
.skin-blue-light .sidebar-form {
  border-radius: 3px;
  border: 1px solid #d2d6de;
  margin: 10px 10px;
}
.skin-blue-light .sidebar-form input[type="text"],
.skin-blue-light .sidebar-form .btn {
  box-shadow: none;
  background-color: #fff;
  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-blue-light .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-blue-light .sidebar-form input[type="text"]:focus,
.skin-blue-light .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #fff;
  color: #666;
}
.skin-blue-light .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left-color: #fff;
}
.skin-blue-light .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;
}
@media (min-width: 768px) {
  .skin-blue-light.sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu {
    border-left: 1px solid #d2d6de;
  }
}
.skin-blue.layout-top-nav .main-header > .logo {
  background-color: #3c8dbc;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-blue.layout-top-nav .main-header > .logo:hover {
  background-color: #3b8ab8;
}
/*
 * Skin: Black
 * -----------
 */
/* skin-black navbar */
.skin-black .main-header {
  -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
}
.skin-black .main-header .navbar-toggle {
  color: #333;
}
.skin-black .main-header .navbar-brand {
  color: #333;
  border-right: 1px solid #eee;
}
.skin-black .main-header > .navbar {
  background: #fff;
}
.skin-black .main-header > .navbar .nav > li > a {
  color: #333;
}
.skin-black .main-header > .navbar .nav > li > a:hover,
.skin-black .main-header > .navbar .nav > li > a:active,
.skin-black .main-header > .navbar .nav > li > a:focus,
.skin-black .main-header > .navbar .nav .open > a,
.skin-black .main-header > .navbar .nav .open > a:hover,
.skin-black .main-header > .navbar .nav .open > a:focus,
.skin-black .main-header > .navbar .nav > .active > a {
  background: #fff;
  color: #999;
}
.skin-black .main-header > .navbar .sidebar-toggle {
  color: #333;
}
.skin-black .main-header > .navbar .sidebar-toggle:hover {
  color: #999;
  background: #fff;
}
.skin-black .main-header > .navbar > .sidebar-toggle {
  color: #333;
  border-right: 1px solid #eee;
}
.skin-black .main-header > .navbar .navbar-nav > li > a {
  border-right: 1px solid #eee;
}
.skin-black .main-header > .navbar .navbar-custom-menu .navbar-nav > li > a,
.skin-black .main-header > .navbar .navbar-right > li > a {
  border-left: 1px solid #eee;
  border-right-width: 0;
}
.skin-black .main-header > .logo {
  background-color: #fff;
  color: #333;
  border-bottom: 0 solid transparent;
  border-right: 1px solid #eee;
}
.skin-black .main-header > .logo:hover {
  background-color: #fcfcfc;
}
@media (max-width: 767px) {
  .skin-black .main-header > .logo {
    background-color: #222;
    color: #fff;
    border-bottom: 0 solid transparent;
    border-right: none;
  }
  .skin-black .main-header > .logo:hover {
    background-color: #1f1f1f;
  }
}
.skin-black .main-header li.user-header {
  background-color: #222;
}
.skin-black .content-header {
  background: transparent;
  box-shadow: none;
}
.skin-black .wrapper,
.skin-black .main-sidebar,
.skin-black .left-side {
  background-color: #222d32;
}
.skin-black .user-panel > .info,
.skin-black .user-panel > .info > a {
  color: #fff;
}
.skin-black .sidebar-menu > li.header {
  color: #4b646f;
  background: #1a2226;
}
.skin-black .sidebar-menu > li > a {
  border-left: 3px solid transparent;
}
.skin-black .sidebar-menu > li:hover > a,
.skin-black .sidebar-menu > li.active > a {
  color: #fff;
  background: #1e282c;
  border-left-color: #fff;
}
.skin-black .sidebar-menu > li > .treeview-menu {
  margin: 0 1px;
  background: #2c3b41;
}
.skin-black .sidebar-menu > li.cat-heading {
  background: #1a2226;
}
.skin-black .sidebar-menu > li.cat-child {
  padding-left: 3px;
}
.skin-black .sidebar-menu > li.divider {
  height: 1px;
  margin: 2px 0;
  overflow: hidden;
  background-color: #535353;
}
.skin-black .sidebar a {
  color: #b8c7ce;
}
.skin-black .sidebar a:hover {
  text-decoration: none;
}
.skin-black .treeview-menu > li > a {
  color: #8aa4af;
}
.skin-black .treeview-menu > li.active > a,
.skin-black .treeview-menu > li > a:hover {
  color: #fff;
}
.skin-black .sidebar-form {
  border-radius: 3px;
  border: 1px solid #374850;
  margin: 10px 10px;
}
.skin-black .sidebar-form input[type="text"],
.skin-black .sidebar-form .btn {
  box-shadow: none;
  background-color: #374850;
  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-black .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-black .sidebar-form input[type="text"]:focus,
.skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #fff;
  color: #666;
}
.skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left-color: #fff;
}
.skin-black .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-black .pace .pace-progress {
  background: #222;
}
.skin-black .pace .pace-activity {
  border-top-color: #222;
  border-left-color: #222;
}
/*
 * Skin: Blue
 * ----------
 */
.skin-blue .main-header .navbar {
  background: linear-gradient(to right, #01A9E7, #007CD0);
}
.skin-blue .main-header .navbar .nav > li > a {
  color: #fff;
}
.skin-blue .main-header .navbar .nav > li > a:hover,
.skin-blue .main-header .navbar .nav > li > a:active,
.skin-blue .main-header .navbar .nav > li > a:focus,
.skin-blue .main-header .navbar .nav .open > a,
.skin-blue .main-header .navbar .nav .open > a:hover,
.skin-blue .main-header .navbar .nav .open > a:focus,
.skin-blue .main-header .navbar .nav > .active > a {
  background: rgba(0, 0, 0, 0.1);
  color: #f6f6f6;
}
.skin-blue .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-blue .main-header .navbar .sidebar-toggle:hover {
  color: #f6f6f6;
  background: rgba(0, 0, 0, 0.1);
}
.skin-blue .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-blue .main-header .navbar .sidebar-toggle:hover {
  background-color: #367fa9;
}
@media (max-width: 767px) {
  .skin-blue .main-header .navbar .dropdown-menu li.divider {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .skin-blue .main-header .navbar .dropdown-menu li a {
    color: #777;
  }
  .skin-blue .main-header .navbar .dropdown-menu li a:hover {
    color: #fff;
    background: #367fa9;
  }
}
.skin-blue .main-header .logo {
  background-color: #367fa9;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-blue .main-header .logo:hover {
  background-color: #357ca5;
}
.skin-blue .main-header li.user-header {
  background-color: #3c8dbc;
}
.skin-blue .content-header {
  background: transparent;
}
.skin-blue .wrapper,
.skin-blue .main-sidebar,
.skin-blue .left-side {
  background-color: #222d32;
}
.skin-blue .user-panel > .info,
.skin-blue .user-panel > .info > a {
  color: #fff;
}
.skin-blue .sidebar-menu > li.header {
  color: #4b646f;
  background: #1a2226;
}
.skin-blue .sidebar-menu > li > a {
  border-left: 3px solid transparent;
}
.skin-blue .sidebar-menu > li:hover > a,
.skin-blue .sidebar-menu > li.active > a {
  color: #fff;
  background: #1e282c;
  border-left-color: #3c8dbc;
}
.skin-blue .sidebar-menu > li > .treeview-menu {
  margin: 0 1px;
  background: #2c3b41;
}
.skin-blue .sidebar-menu > li.cat-heading {
  background: #1a2226;
}
.skin-blue .sidebar-menu > li.cat-child {
  padding-left: 3px;
}
.skin-blue .sidebar-menu > li.divider {
  height: 1px;
  margin: 2px 0;
  overflow: hidden;
  background-color: #535353;
}
.skin-blue .sidebar a {
  color: #b8c7ce;
}
.skin-blue .sidebar a:hover {
  text-decoration: none;
}
.skin-blue .treeview-menu > li > a {
  color: #8aa4af;
}
.skin-blue .treeview-menu > li.active > a,
.skin-blue .treeview-menu > li > a:hover {
  color: #fff;
}
.skin-blue .sidebar-form {
  border-radius: 3px;
  border: 1px solid #374850;
  margin: 10px 10px;
}
.skin-blue .sidebar-form input[type="text"],
.skin-blue .sidebar-form .btn {
  box-shadow: none;
  background-color: #374850;
  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-blue .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-blue .sidebar-form input[type="text"]:focus,
.skin-blue .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #fff;
  color: #666;
}
.skin-blue .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left-color: #fff;
}
.skin-blue .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: #3c8dbc;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-blue.layout-top-nav .main-header > .logo:hover {
  background-color: #3b8ab8;
}
/*
 * Skin: Black
 * -----------
 */
/* skin-black navbar */
.skin-black .main-header {
  -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
}
.skin-black .main-header .navbar-toggle {
  color: #333;
}
.skin-black .main-header .navbar-brand {
  color: #333;
  border-right: 1px solid #eee;
}
.skin-black .main-header > .navbar {
  background: #fff;
}
.skin-black .main-header > .navbar .nav > li > a {
  color: #333;
}
.skin-black .main-header > .navbar .nav > li > a:hover,
.skin-black .main-header > .navbar .nav > li > a:active,
.skin-black .main-header > .navbar .nav > li > a:focus,
.skin-black .main-header > .navbar .nav .open > a,
.skin-black .main-header > .navbar .nav .open > a:hover,
.skin-black .main-header > .navbar .nav .open > a:focus,
.skin-black .main-header > .navbar .nav > .active > a {
  background: #fff;
  color: #999;
}
.skin-black .main-header > .navbar .sidebar-toggle {
  color: #333;
}
.skin-black .main-header > .navbar .sidebar-toggle:hover {
  color: #999;
  background: #fff;
}
.skin-black .main-header > .navbar > .sidebar-toggle {
  color: #333;
  border-right: 1px solid #eee;
}
.skin-black .main-header > .navbar .navbar-nav > li > a {
  border-right: 1px solid #eee;
}
.skin-black .main-header > .navbar .navbar-custom-menu .navbar-nav > li > a,
.skin-black .main-header > .navbar .navbar-right > li > a {
  border-left: 1px solid #eee;
  border-right-width: 0;
}
.skin-black .main-header > .logo {
  background-color: #fff;
  color: #333;
  border-bottom: 0 solid transparent;
  border-right: 1px solid #eee;
}
.skin-black .main-header > .logo:hover {
  background-color: #fcfcfc;
}
@media (max-width: 767px) {
  .skin-black .main-header > .logo {
    background-color: #dd4b39;
    color: #fff;
    border-bottom: 0 solid transparent;
    border-right: none;
  }
  .skin-black .main-header > .logo:hover {
    background-color: #dc4735;
  }
}
.skin-black .main-header li.user-header {
  background-color: #dd4b39;
}
.skin-black .content-header {
  background: transparent;
  box-shadow: none;
}
.skin-black .wrapper,
.skin-black .main-sidebar,
.skin-black .left-side {
  background-color: #222d32;
}
.skin-black .user-panel > .info,
.skin-black .user-panel > .info > a {
  color: #fff;
}
.skin-black .sidebar-menu > li.header {
  color: #4b646f;
  background: #1a2226;
}
.skin-black .sidebar-menu > li > a {
  border-left: 3px solid transparent;
}
.skin-black .sidebar-menu > li:hover > a,
.skin-black .sidebar-menu > li.active > a {
  color: #fff;
  background: #1e282c;
  border-left-color: #fff;
}
.skin-black .sidebar-menu > li > .treeview-menu {
  margin: 0 1px;
  background: #2c3b41;
}
.skin-black .sidebar-menu > li.cat-heading {
  background: #1a2226;
}
.skin-black .sidebar-menu > li.cat-child {
  padding-left: 3px;
}
.skin-black .sidebar-menu > li.divider {
  height: 1px;
  margin: 2px 0;
  overflow: hidden;
  background-color: #535353;
}
.skin-black .sidebar a {
  color: #b8c7ce;
}
.skin-black .sidebar a:hover {
  text-decoration: none;
}
.skin-black .treeview-menu > li > a {
  color: #8aa4af;
}
.skin-black .treeview-menu > li.active > a,
.skin-black .treeview-menu > li > a:hover {
  color: #fff;
}
.skin-black .sidebar-form {
  border-radius: 3px;
  border: 1px solid #374850;
  margin: 10px 10px;
}
.skin-black .sidebar-form input[type="text"],
.skin-black .sidebar-form .btn {
  box-shadow: none;
  background-color: #374850;
  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-black .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-black .sidebar-form input[type="text"]:focus,
.skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #fff;
  color: #666;
}
.skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left-color: #fff;
}
.skin-black .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-black .pace .pace-progress {
  background: #dd4b39;
}
.skin-black .pace .pace-activity {
  border-top-color: #dd4b39;
  border-left-color: #dd4b39;
}
/*
 * Skin: Blue
 * ----------
 */
.skin-dodgerblue .main-header .navbar {
  background: linear-gradient(to right, #01A9E7, #007CD0);
  background-color: white;
  background: #3c8dbc;
}
.skin-dodgerblue .main-header .navbar .nav > li > a {
  color: #fff;
}
.skin-dodgerblue .main-header .navbar .nav > li > a:hover,
.skin-dodgerblue .main-header .navbar .nav > li > a:active,
.skin-dodgerblue .main-header .navbar .nav > li > a:focus,
.skin-dodgerblue .main-header .navbar .nav .open > a,
.skin-dodgerblue .main-header .navbar .nav .open > a:hover,
.skin-dodgerblue .main-header .navbar .nav .open > a:focus,
.skin-dodgerblue .main-header .navbar .nav > .active > a {
  background: rgba(0, 0, 0, 0.1);
  color: #f6f6f6;
}
.skin-dodgerblue .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-dodgerblue .main-header .navbar .sidebar-toggle:hover {
  color: #f6f6f6;
  background: rgba(0, 0, 0, 0.1);
}
.skin-dodgerblue .main-header .navbar .sidebar-toggle {
  color: #fff;
}
.skin-dodgerblue .main-header .navbar .sidebar-toggle:hover {
  background: linear-gradient(to right, #01A9E7, #007CD0);
}
@media (max-width: 767px) {
  .skin-dodgerblue .main-header .navbar .dropdown-menu li.divider {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .skin-dodgerblue .main-header .navbar .dropdown-menu li a {
    color: #777;
  }
  .skin-dodgerblue .main-header .navbar .dropdown-menu li a:hover {
    color: #fff;
    background: #367fa9;
  }
}
.skin-dodgerblue .main-header .logo {
  background-color: #367fa9;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-dodgerblue .main-header .logo:hover {
  background-color: #357ca5;
}
.skin-dodgerblue .main-header li.user-header {
  background: linear-gradient(to right, #01a9e7, #007cd0) repeat scroll 0% 0% white;
}
.skin-dodgerblue .content-header {
  background: transparent;
}
.skin-dodgerblue .wrapper,
.skin-dodgerblue .main-sidebar,
.skin-dodgerblue .left-side {
  background-color: #222d32;
}
.skin-dodgerblue .user-panel > .info,
.skin-dodgerblue .user-panel > .info > a {
  color: #fff;
}
.skin-dodgerblue .sidebar-menu > li.header {
  color: #4b646f;
  background: #1a2226;
}
.skin-dodgerblue .sidebar-menu > li > a {
  border-left: 3px solid transparent;
}
.skin-dodgerblue .sidebar-menu > li:hover > a,
.skin-dodgerblue .sidebar-menu > li.active > a {
  color: #fff;
  background: #1e282c;
  border-left-color: #3c8dbc;
}
.skin-dodgerblue .sidebar-menu > li > .treeview-menu {
  margin: 0 1px;
  background: #2c3b41;
}
.skin-dodgerblue .sidebar-menu > li.cat-heading {
  background: #1a2226;
}
.skin-dodgerblue .sidebar-menu > li.cat-child {
  padding-left: 3px;
}
.skin-dodgerblue .sidebar-menu > li.divider {
  height: 1px;
  margin: 2px 0;
  overflow: hidden;
  background-color: #535353;
}
.skin-dodgerblue .sidebar a {
  color: #b8c7ce;
}
.skin-dodgerblue .sidebar a:hover {
  text-decoration: none;
}
.skin-dodgerblue .treeview-menu > li > a {
  color: #8aa4af;
}
.skin-dodgerblue .treeview-menu > li.active > a,
.skin-dodgerblue .treeview-menu > li > a:hover {
  color: #fff;
}
.skin-dodgerblue .sidebar-form {
  border-radius: 3px;
  border: 1px solid #374850;
  margin: 10px 10px;
}
.skin-dodgerblue .sidebar-form input[type="text"],
.skin-dodgerblue .sidebar-form .btn {
  box-shadow: none;
  background-color: #374850;
  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-dodgerblue .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-dodgerblue .sidebar-form input[type="text"]:focus,
.skin-dodgerblue .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #fff;
  color: #666;
}
.skin-dodgerblue .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left-color: #fff;
}
.skin-dodgerblue .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: #3c8dbc;
  color: #fff;
  border-bottom: 0 solid transparent;
}
.skin-blue.layout-top-nav .main-header > .logo:hover {
  background-color: #3b8ab8;
}
/*
 * 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;
  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: 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: 50px;
  }
}
@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-collapse .user-panel > .image > img {
  width: 35px;
  height: 35px;
  transition: all 0.5s ease;
}
.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 {
  transition: all 0.5s ease;
  width: 45px;
  height: 45px;
}
.user-panel > .info {
  padding: 15px 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;
}
.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 .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;
}
.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;
}
/*
 * Component: Sidebar Mini
 */
@media (min-width: 768px) {
  .sidebar-mini.sidebar-collapse .content-wrapper,
  .sidebar-mini.sidebar-collapse .right-side {
    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-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;
  right: 10px;
  top: 50%;
  margin-top: -7px;
}
/*
 * Component: Control sidebar. By default, this is the right sidebar.
 */
.control-sidebar-bg {
  position: fixed;
  z-index: 1000;
  bottom: 0;
}
.control-sidebar-bg,
.control-sidebar {
  top: 0;
  right: -230px;
  width: 230px;
  -webkit-transition: right 0.3s ease-in-out;
  -o-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
}
.control-sidebar {
  position: absolute;
  padding-top: 50px;
  z-index: 1010;
}
@media (max-width: 768px) {
  .control-sidebar {
    padding-top: 100px;
  }
}
.control-sidebar > .tab-content {
  padding: 10px 15px;
}
.control-sidebar.control-sidebar-open,
.control-sidebar.control-sidebar-open + .control-sidebar-bg {
  right: 0;
}
.control-sidebar-open .control-sidebar-bg,
.control-sidebar-open .control-sidebar {
  right: 0;
}
@media (min-width: 768px) {
  .control-sidebar-open .content-wrapper,
  .control-sidebar-open .right-side {
    margin-right: 230px;
  }
}
.nav-tabs.control-sidebar-tabs > li:first-of-type > a,
.nav-tabs.control-sidebar-tabs > li:first-of-type > a:hover,
.nav-tabs.control-sidebar-tabs > li:first-of-type > a:focus {
  border-left-width: 0;
}
.nav-tabs.control-sidebar-tabs > li > a {
  border-radius: 0;
}
.nav-tabs.control-sidebar-tabs > li > a,
.nav-tabs.control-sidebar-tabs > li > a:hover {
  border-top: none;
  border-right: none;
  border-left: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.nav-tabs.control-sidebar-tabs > li > a .icon {
  font-size: 16px;
}
.nav-tabs.control-sidebar-tabs > li.active > a,
.nav-tabs.control-sidebar-tabs > li.active > a:hover,
.nav-tabs.control-sidebar-tabs > li.active > a:focus,
.nav-tabs.control-sidebar-tabs > li.active > a:active {
  border-top: none;
  border-right: none;
  border-bottom: none;
}
@media (max-width: 768px) {
  .nav-tabs.control-sidebar-tabs {
    display: table;
  }
  .nav-tabs.control-sidebar-tabs > li {
    display: table-cell;
  }
}
.control-sidebar-heading {
  font-weight: 400;
  font-size: 16px;
  padding: 10px 0;
  margin-bottom: 10px;
}
.control-sidebar-subheading {
  display: block;
  font-weight: 400;
  font-size: 14px;
}
.control-sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0 -15px;
}
.control-sidebar-menu > li > a {
  display: block;
  padding: 10px 15px;
}
.control-sidebar-menu > li > a:before,
.control-sidebar-menu > li > a:after {
  content: " ";
  display: table;
}
.control-sidebar-menu > li > a:after {
  clear: both;
}
.control-sidebar-menu > li > a > .control-sidebar-subheading {
  margin-top: 0;
}
.control-sidebar-menu .menu-icon {
  float: left;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
}
.control-sidebar-menu .menu-info {
  margin-left: 45px;
  margin-top: 3px;
}
.control-sidebar-menu .menu-info > .control-sidebar-subheading {
  margin: 0;
}
.control-sidebar-menu .menu-info > p {
  margin: 0;
  font-size: 11px;
}
.control-sidebar-menu .progress {
  margin: 0;
}
.control-sidebar-dark {
  color: #b8c7ce;
}
.control-sidebar-dark,
.control-sidebar-dark + .control-sidebar-bg {
  background: #222d32;
}
.control-sidebar-dark .nav-tabs.control-sidebar-tabs {
  border-bottom: #1c2529;
}
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a {
  background: #181f23;
  color: #b8c7ce;
}
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus {
  border-left-color: #141a1d;
  border-bottom-color: #141a1d;
}
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:active {
  background: #1c2529;
}
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover {
  color: #fff;
}
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:hover,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:focus,
.control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:active {
  background: #222d32;
  color: #fff;
}
.control-sidebar-dark .control-sidebar-heading,
.control-sidebar-dark .control-sidebar-subheading {
  color: #fff;
}
.control-sidebar-dark .control-sidebar-menu > li > a:hover {
  background: #1e282c;
}
.control-sidebar-dark .control-sidebar-menu > li > a .menu-info > p {
  color: #b8c7ce;
}
.control-sidebar-light {
  color: #5e5e5e;
}
.control-sidebar-light,
.control-sidebar-light + .control-sidebar-bg {
  background: #f9fafc;
  border-left: 1px solid #d2d6de;
}
.control-sidebar-light .nav-tabs.control-sidebar-tabs {
  border-bottom: #d2d6de;
}
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a {
  background: #e8ecf4;
  color: #444;
}
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus {
  border-left-color: #d2d6de;
  border-bottom-color: #d2d6de;
}
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:active {
  background: #eff1f7;
}
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:hover,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:focus,
.control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:active {
  background: #f9fafc;
  color: #111;
}
.control-sidebar-light .control-sidebar-heading,
.control-sidebar-light .control-sidebar-subheading {
  color: #111;
}
.control-sidebar-light .control-sidebar-menu {
  margin-left: -14px;
}
.control-sidebar-light .control-sidebar-menu > li > a:hover {
  background: #f4f4f5;
}
.control-sidebar-light .control-sidebar-menu > li > a .menu-info > p {
  color: #5e5e5e;
}
.control-sidebar-light .skin-row {
  height: 50px;
  padding: 10px 0px;
  line-height: 30px;
  cursor: pointer;
}
.control-sidebar-light .skin-row:hover {
  background: #f4f4f5;
}
/*
 * Component: Dropdown menus
 * -------------------------
 */
/*Dropdowns in general*/
.dropdown-menu {
  box-shadow: none;
  border-color: #434c50;
  background: #434c50;
  padding: 8px !important;
}
.dropdown-menu > li > a {
  color: #f6f6f6;
}
.dropdown-menu > li > a > .glyphicon,
.dropdown-menu > li > a > .fa,
.dropdown-menu > li > a > .ion {
  margin-right: 10px;
}
.dropdown-menu > li > a:hover {
  background: #59656a;
  color: #f6f6f6;
  cursor: pointer;
  border-radius: 2px;
}
.dropdown-menu > .divider {
  background-color: #59656a;
}
.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;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a {
  color: #444444;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 10px;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon,
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa,
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion {
  width: 20px;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a {
  margin: 0;
  padding: 10px 10px;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > div > img {
  margin: auto 10px auto auto;
  width: 40px;
  height: 40px;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 {
  padding: 0;
  margin: 0 0 0 45px;
  color: #444444;
  font-size: 15px;
  position: relative;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 > small {
  color: #999999;
  font-size: 10px;
  position: absolute;
  top: 0;
  right: 0;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p {
  margin: 0 0 0 45px;
  font-size: 12px;
  color: #888888;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  content: " ";
  display: table;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  clear: both;
}
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  padding: 10px;
}
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > h3 {
  font-size: 14px;
  padding: 0;
  margin: 0 0 10px 0;
  color: #666666;
}
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > .progress {
  padding: 0;
  margin: 0;
}
.navbar-nav > .user-menu > .dropdown-menu {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  padding: 1px 0 0 0;
  border-top-width: 0;
  width: 280px;
}
.navbar-nav > .user-menu > .dropdown-menu,
.navbar-nav > .user-menu > .dropdown-menu > .user-body {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header {
  height: 175px;
  padding: 10px;
  text-align: center;
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
  z-index: 5;
  height: 90px;
  width: 90px;
  border: 3px solid;
  border-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
  z-index: 5;
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  margin-top: 10px;
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small {
  display: block;
  font-size: 12px;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-body {
  padding: 15px;
  border-bottom: 1px solid #f4f4f4;
  border-top: 1px solid #dddddd;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-body:before,
.navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
  content: " ";
  display: table;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
  clear: both;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-body a {
  color: #444 !important;
}
@media (max-width: 991px) {
  .navbar-nav > .user-menu > .dropdown-menu > .user-body a {
    background: #fff !important;
    color: #444 !important;
  }
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer {
  background-color: #f9f9f9;
  padding: 10px;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer:before,
.navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
  content: " ";
  display: table;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
  clear: both;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default {
  color: #666666;
}
@media (max-width: 991px) {
  .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default:hover {
    background-color: #f9f9f9;
  }
}
.navbar-nav > .user-menu .user-image {
  float: left;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: -2px;
}
@media (max-width: 767px) {
  .navbar-nav > .user-menu .user-image {
    float: none;
    margin-right: 0;
    margin-top: -8px;
    line-height: 10px;
  }
}
/* Add fade animation to dropdown menus by appending
 the class .animated-dropdown-menu to the .dropdown-menu ul (or ol)*/
.open:not(.dropup) > .animated-dropdown-menu {
  backface-visibility: visible !important;
  -webkit-animation: flipInX 0.7s both;
  -o-animation: flipInX 0.7s both;
  animation: flipInX 0.7s both;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transition-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
  }
}
/* 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: Info Box
 * -------------------
 */
.info-box {
  display: block;
  min-height: 90px;
  background: #fff;
  width: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  margin-bottom: 15px;
}
.info-box small {
  font-size: 14px;
}
.info-box .progress {
  background: rgba(0, 0, 0, 0.2);
  margin: 5px -10px 5px -10px;
  height: 2px;
}
.info-box .progress,
.info-box .progress .progress-bar {
  border-radius: 0;
}
.info-box .progress .progress-bar {
  background: #fff;
}
.info-box-icon {
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
  display: block;
  float: left;
  height: 90px;
  width: 90px;
  text-align: center;
  font-size: 45px;
  line-height: 90px;
  background: rgba(0, 0, 0, 0.2);
}
.info-box-icon > img {
  max-width: 100%;
}
.info-box-content {
  padding: 5px 10px;
  margin-left: 90px;
}
.info-box-text {
  display: block;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}
.progress-description,
.info-box-number {
  display: block;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.info-box-more {
  display: block;
}
.progress-description {
  margin: 0;
}
/*
 * 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: #f6f9f8;
  color: #434c50;
  border-color: #dae1e1;
}
.btn-default:hover,
.btn-default:active,
.btn-default.hover {
  background-color: #e7e7e7;
}
.btn-primary {
  background-color: #3c8dbc;
  border-color: #367fa9;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.hover {
  background-color: #367fa9;
}
.btn-success {
  background-color: #00a65a;
  border-color: #008d4c;
}
.btn-success:hover,
.btn-success:active,
.btn-success.hover {
  background-color: #008d4c;
}
.btn-info {
  background-color: #00c0ef;
  border-color: #00acd6;
}
.btn-info:hover,
.btn-info:active,
.btn-info.hover {
  background-color: #00acd6;
}
.btn-danger {
  background-color: #dd4b39;
  border-color: #d73925;
}
.btn-danger:hover,
.btn-danger:active,
.btn-danger.hover {
  background-color: #d73925;
}
.btn-warning {
  background-color: #f39c12;
  border-color: #e08e0b;
}
.btn-warning:hover,
.btn-warning:active,
.btn-warning.hover {
  background-color: #e08e0b;
}
.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);
}
.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 > .badge {
  position: absolute;
  top: -3px;
  right: -10px;
  font-size: 10px;
  font-weight: 400;
}
/*
 * 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: #3c8dbc;
}
.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: #3c8dbc;
}
.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: #3c8dbc;
}
.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;
}
.nav-tabs-custom.tab-primary > .nav-tabs > li.active {
  border-top-color: #3c8dbc;
}
.nav-tabs-custom.tab-info > .nav-tabs > li.active {
  border-top-color: #00c0ef;
}
.nav-tabs-custom.tab-danger > .nav-tabs > li.active {
  border-top-color: #dd4b39;
}
.nav-tabs-custom.tab-warning > .nav-tabs > li.active {
  border-top-color: #f39c12;
}
.nav-tabs-custom.tab-success > .nav-tabs > li.active {
  border-top-color: #00a65a;
}
.nav-tabs-custom.tab-default > .nav-tabs > li.active {
  border-top-color: #d2d6de;
}
/* PAGINATION */
.pagination > li > a {
  background: #fafafa;
  color: #666;
}
.pagination.pagination-flat > li > a {
  border-radius: 0 !important;
}
/*
 * Component: Timeline
 * -------------------
 */
.timeline {
  position: relative;
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}
.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ddd;
  left: 31px;
  margin: 0;
  border-radius: 2px;
}
.timeline > li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 15px;
}
.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}
.timeline > li:after {
  clear: both;
}
.timeline > li > .timeline-item {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  margin-top: 0;
  background: #fff;
  color: #444;
  margin-left: 60px;
  margin-right: 15px;
  padding: 0;
  position: relative;
}
.timeline > li > .timeline-item > .time {
  color: #999;
  float: right;
  padding: 10px;
  font-size: 12px;
}
.timeline > li > .timeline-item > .timeline-header {
  margin: 0;
  color: #555;
  border-bottom: 1px solid #f4f4f4;
  padding: 10px;
  font-size: 16px;
  line-height: 1.1;
}
.timeline > li > .timeline-item > .timeline-header > a {
  font-weight: 600;
}
.timeline > li > .timeline-item > .timeline-body,
.timeline > li > .timeline-item > .timeline-footer {
  padding: 10px;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
}
.timeline > li > .fa,
.timeline > li > .glyphicon,
.timeline > li > .ion {
  width: 30px;
  height: 30px;
  font-size: 15px;
  line-height: 30px;
  position: absolute;
  color: #666;
  background: #d2d6de;
  border-radius: 50%;
  text-align: center;
  left: 18px;
  top: 0;
}
.timeline > .time-label > span {
  font-weight: 600;
  padding: 5px;
  display: inline-block;
  background-color: #fff;
  border-radius: 4px;
}
.timeline-inverse > li > .timeline-item {
  background: #f0f0f0;
  border: 1px solid #ddd;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.timeline-inverse > li > .timeline-item > .timeline-header {
  border-bottom-color: #ddd;
}
.pager-items-margin-5 {
  margin: 5px 0px;
}
.pager-items-margin-2 {
  margin: 2px 0px;
}
.goPageSubmitButton {
  padding: 0px 10px;
  font-size: 14px;
  height: 30px;
}
.welcome-userName > div {
  display: inline-block;
}
.welcome-userName > .spinner-img {
  width: 100px;
  height: 14px;
  margin: auto auto auto 5px;
  background-image: url(../commons/images/loading.gif);
  background-size: contain;
  display: inline-block;
}
.user-panel > .info > .spinner-img {
  width: 100px;
  height: 14px;
  margin: auto auto auto 5px;
  background-image: url(../commons/images/loading.gif);
  background-size: contain;
  display: inherit;
}
.dropdown.user a.dropdown-toggle .spinner-img {
  width: 100px;
  height: 14px;
  margin: auto auto auto 5px;
  background-image: url(../commons/images/loading.gif);
  background-size: contain;
  display: inline-block;
}
.sidebar-menu > li > a > .fa.custom-icon {
  height: 14px;
  width: 14px;
  margin-right: 5px;
}
.sidebar-menu > li > a > .fa.custom-users-icon {
  background: url("../commons/images/user.png") no-repeat;
  background-size: 14px 14px;
}
.sidebar-menu > li > a > .fa.custom-groups-icon {
  background: url("../commons/images/group.png") no-repeat;
  background-size: 14px 14px;
}
.sidebar-menu > li > a > .fa.custom-roles-icon {
  background: url("../commons/images/icon_roles.png") no-repeat;
  background-size: 14px 14px;
}
.sidebar-menu > li > a > .fa.custom-teams-icon {
  background: url("../commons/images/icon_team.png") no-repeat;
  background-size: 14px 14px;
}
i.fa.custom-icon.custom-resources-icon {
  height: 12px;
  width: 12px;
  background: url("../commons/images/icon_resource.png") no-repeat;
  background-size: 12px 12px;
}
i.fa.custom-icon.custom-teams-icon {
  height: 14px;
  width: 14px;
  background: url("../commons/images/icon_team.png") no-repeat;
  background-size: 14px 14px;
}
.leftListHeader {
  background-color: #f7f7f7;
  text-align: center;
  padding: 8px;
}
.leftList {
  min-height: 50px;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  border: 1px solid #dbdbdb;
  margin-bottom: 14px;
  border-radius: 4px 4px;
  max-width: 400px;
}
.users-search-section {
  padding: 25px;
}
.users-manage-section {
  padding: 2px 25px;
}
.search-input-icon {
  position: absolute;
  top: 7px;
  left: 7px;
  color: #808080;
  font-size: 20px;
}
.search-input-group {
  position: relative;
  width: 350px;
  margin: 0px auto;
  background: #fff;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .search-input-group {
    width: 100%;
  }
}
.search-input-group.new {
  width: 350px;
}
@media (max-width: 991px) {
  .search-input-group.new {
    width: 100%;
  }
}
.users-list-section {
  padding: 10px 25px;
}
@media (max-width: 768px) {
  .users-list-section {
    padding: 10px 10px 0px 10px;
  }
}
.panel-top-blue-border {
  border-top: 3px solid #59B4D2;
  border-left: 1px solid #dae1e1;
  border-right: 1px solid #dae1e1;
  border-bottom: 1px solid #dae1e1;
}
.panel-blue-heading {
  background: #f9fafc;
  color: #0087cd;
  height: 40px;
}
.comments-section {
  padding: 0px 10px 10px 10px;
  background: #f9f9f9;
  max-height: 647px;
  overflow-y: auto;
}
.no-pad {
  padding: 0px;
}
table.table.user-details-table tr td:nth-of-type(1),
table.table.user-attributes-table tr td:nth-of-type(1) {
  text-align: right;
}
.badge.resource-date {
  position: absolute;
  top: 0px;
  right: 6px;
}
table.table.user-roles-table tbody > tr > td {
  padding: 5px;
  border: none;
}
table.table.user-roles-table tbody > tr > td.td-shorten {
  max-width: 10px;
  text-align: center;
}
.btn.btn-xs.btn-role-detail-expand {
  padding: 0px 3px;
  font-size: 11px;
  line-height: 1.4;
  margin-top: -3px;
}
.user-content-card-row {
  max-width: none;
  margin: 10px;
  padding: 3px;
  overflow-x: auto;
  overflow-y: hidden;
  width: auto;
  height: 150px;
  white-space: nowrap;
}
.user-content-card-row .user-card {
  position: relative;
  padding: 10px;
  height: 120px;
  width: 360px;
  border-bottom: 0 none;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.46);
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
  background: #eef2f2;
  border: 1px solid #eef2f2;
  border-radius: 5px;
}
.user-content-card-row .user-card:hover {
  background: #f6f9f8;
  border: 1px solid #28A9E1;
}
.user-content-card-row .user-card.active {
  background: #3C8DBC;
  color: #fff;
}
.user-content-card-row .user-card .user-card-image {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.user-content-card-row .user-card .user-details-col {
  position: absolute;
  top: 20px;
  left: 110px;
  width: 235px;
  overflow: hidden;
  height: 79px;
}
@media (max-width: 768px) {
  .user-content-card-row .user-card .user-details-col {
    width: 195px;
  }
}
@media (max-width: 768px) {
  .user-content-card-row .user-card {
    width: 320px;
  }
}
.no-users-found {
  text-align: left;
  color: #434c50;
}
.users-loading,
.content-loading {
  text-align: left;
}
.users-loading > .spinner-img,
.content-loading > .spinner-img {
  width: 25px;
  height: 25px;
  margin: 20px auto;
  background-image: url(../commons/images/loading.gif);
  background-size: contain;
  display: inherit;
}
.users-loading > .loader-img,
.content-loading > .loader-img {
  width: 32px;
  height: 32px;
  margin: 20px auto;
  background-image: url('../commons/images/indicator.gif');
  background-repeat: none;
  background-size: contain;
  display: inherit;
}
.users-loading > .loader-img.margin-zero-vertical,
.content-loading > .loader-img.margin-zero-vertical {
  margin: 0px auto;
}
.user-content-list-details-wrapper {
  margin: 0px 20px;
}
.users-grid-container-row {
  margin-left: 0px;
  margin-right: 0px;
}
.users-grid-container-row .users-grid-scroll-container {
  overflow-y: auto;
  max-height: 600px;
}
@media (max-width: 768px) {
  .users-grid-container-row .users-grid-scroll-container {
    max-height: 500px;
  }
}
.user-content-grid-row {
  padding: 10px;
  margin-left: 0px;
  margin-right: 0px;
}
.user-content-grid-row .user-card {
  height: 90px;
  overflow: hidden;
  padding: 10px;
  margin: 5px -10px;
  border-bottom: 0 none;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.46);
  cursor: pointer;
  background: #eef2f2;
  border: 1px solid #eef2f2;
  border-radius: 5px;
}
.user-content-grid-row .user-card:hover {
  background: #f6f9f8;
  border: 1px solid #28A9E1;
}
.user-content-grid-row .user-card.active {
  background: #3C8DBC;
  color: #fff;
}
.user-content-grid-row .user-card .user-card-image {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  max-width: 70px;
  max-height: 70px;
  height: auto;
  margin: 0px auto;
}
@media (max-width: 1100px) {
  .user-content-grid-row .user-card .user-card-image {
    max-width: 50px;
    margin-left: -15px;
  }
}
.UserQuickInfoDisabled {
  cursor: not-allowed;
}
.userImage {
  background: url("../commons/images/user.png") no-repeat scroll 0px 0px;
  background-size: 16px 16px;
  margin-left: 2px;
  height: 16px;
  width: 16px;
}
.role-item-wrapper {
  padding: 5px 0px;
}
.roles-search-section,
.resources-search-section {
  padding: 20px 10px 5px 10px;
}
.roles-list-section,
.resources-list-section {
  padding: 10px;
}
.role-list-panel,
.role-attributes-panel,
.resource-list-panel {
  border-top: 3px solid #d2d6de;
}
.role-list-panel > .panel-heading,
.role-attributes-panel > .panel-heading,
.resource-list-panel > .panel-heading {
  background: #f9fafc;
}
.role-list-panel > .panel-heading > .btn-sm,
.role-attributes-panel > .panel-heading > .btn-sm,
.resource-list-panel > .panel-heading > .btn-sm {
  position: absolute;
  top: 9px;
  padding: 3px 6px;
  font-size: 11px;
  line-height: 1.4;
}
.role-list-panel > .panel-heading > .btn-sm.btn-sorting,
.role-attributes-panel > .panel-heading > .btn-sm.btn-sorting,
.resource-list-panel > .panel-heading > .btn-sm.btn-sorting {
  right: 23px;
}
.role-list-panel > .panel-heading > .btn-sm.btn-refresh,
.role-attributes-panel > .panel-heading > .btn-sm.btn-refresh,
.resource-list-panel > .panel-heading > .btn-sm.btn-refresh {
  right: 23px;
}
.role-list-panel > .list-group > .list-group-item,
.resource-list-panel > .list-group > .list-group-item {
  overflow: hidden;
  cursor: pointer;
}
.role-list-panel > .list-group > .list-group-item:hover,
.resource-list-panel > .list-group > .list-group-item:hover {
  color: #333;
  background-color: #dae1e1;
}
.role-list-panel > .list-group > .list-group-item.active,
.resource-list-panel > .list-group > .list-group-item.active {
  color: #fff;
  background-color: #3C8DBC;
}
.role-list-panel > .list-group > .list-group-item .role-tags,
.resource-list-panel > .list-group > .list-group-item .role-tags,
.role-list-panel > .list-group > .list-group-item .resource-tags,
.resource-list-panel > .list-group > .list-group-item .resource-tags {
  overflow: hidden;
  height: 22px;
}
.role-list-panel > .list-group,
.resource-list-panel > .list-group {
  max-height: 700px;
  overflow-y: auto;
}
.role-list-panel > .panel-heading,
.resource-list-panel > .panel-heading {
  text-align: center;
}
.role-list-panel,
.role-attributes-panel,
.resource-list-panel {
  border-top: 3px solid #59B4D2;
}
@media (max-width: 768px) {
  .role-list-panel > .list-group,
  .role-attributes-panel > .list-group,
  .resource-list-panel > .list-group {
    max-height: 500px;
    overflow-y: auto;
  }
}
.role-details-panel > .panel-heading {
  text-align: left;
}
table.table.role-attributes-table tr td:nth-of-type(1) {
  text-align: right;
}
table.table.role-attributes-table tr td:nth-of-type(1).center-text {
  text-align: center;
}
.no-roles-found,
.no-resources-found {
  text-align: center;
  color: #000;
  font-weight: bold;
}
.roles-loading,
.resources-loading {
  text-align: center;
}
.roles-loading > .spinner-img,
.resources-loading > .spinner-img {
  width: 100px;
  height: 14px;
  margin: 20px auto;
  background-image: url(../commons/images/loading.gif);
  background-size: contain;
  display: inherit;
}
.role-content-list-details-wrapper {
  margin: 0px 20px;
}
i.fa.custom-roles-icon {
  background: url("../commons/images/icon_roles.png") no-repeat;
  background-size: 14px 14px;
  background-position: center;
  width: 14px;
  height: 14px;
}
i.fa.custom-resources-icon {
  background: url("../commons/images/icon_resource.png") no-repeat;
  background-size: 14px 14px;
  background-position: center;
  width: 14px;
  height: 14px;
}
.custom-modal-footer {
  padding: 15px;
  text-align: right;
}
.custom-modal-header {
  padding-right: 15px;
  padding-top: 3px;
}
.resourceImage {
  background: url("../commons/images/icon_resources_40.png") no-repeat scroll 0px 0px;
  background-size: 16px 16px;
  margin-left: 2px;
  height: 16px;
  width: 16px;
}
.teamImage {
  background: url("../commons/images/team_icon.jpg") no-repeat scroll 0px 0px;
  background-size: 16px 16px;
  margin-left: 2px;
  height: 16px;
  width: 16px;
}
.roleImage {
  background: url("../commons/images/icon_roles_40.png") no-repeat scroll 0px 0px;
  background-size: 16px 16px;
  margin-left: 2px;
  height: 16px;
  width: 16px;
}
.groupImage {
  background: url('../commons/images/icon_usergroup.png') no-repeat scroll 0px 0px;
  background-size: 16px 16px;
  margin-left: 2px;
  height: 16px;
  width: 16px;
}
.padding-left-5 {
  padding-left: 5px;
}
.padding-left-20 {
  padding-left: 20px;
}
.descTextoverflowEllipses {
  font-size: 12px;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.role-approval-process-table td {
  text-align: left;
}
/*
.tag-container {
  padding: 5px;
  border: 1px solid #dae1e1;
  margin: 0px;
  border-radius: 4px 4px 0 0;
  border-bottom: 0;
  max-height: 10em;
  overflow-y: auto;
}

.tag-item {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 1px solid #B5B5B5;
  display: inline-block;
  width: 100%;
  margin: 0px;
  padding: 3px 7px;
  background-color: #ccc;
  color: #363636;
  box-shadow: 0 0 5px rgba(187, 188, 194, .04);
}

.tag-item.active {
  background-color: #a6d5ee;
}
*/
.btn-select-approvers {
  display: block;
  color: #504848;
  line-height: 32px;
  border: 1px solid #dae1e1;
  margin: 0px;
  padding: 0px 5px;
  border-radius: 4px;
  background-position: right 6px top 8px;
  cursor: pointer;
}
.request {
  background-color: #fff;
}
.tag-container.limit-height-10 + .btn-select-approvers {
  margin: 0px;
  border-top: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.dropdown-parent > .dropdown {
  left: 0px;
  right: 0px;
  top: 5px;
  position: absolute;
  border-top: none;
}
.up-approver {
  padding: 3px;
  display: block;
  display: inline-block;
}
.down-approver {
  padding: 3px;
  display: block;
  margin: 5px 0px 0px 0px;
}
.approval-selection-col {
  max-width: 300px;
}
.rootDirectoryLabel {
  padding: 5px 5px 5px 20px;
}
data-tree ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  border: none;
  overflow: hidden;
}
data-tree li {
  position: relative;
  padding: 0 0 0 20px;
  line-height: 20px;
}
data-tree li .expanded {
  padding: 1px 10px;
  background-image: url("../commons/images/downwards-triangle.png");
  background-repeat: no-repeat;
  cursor: pointer;
}
data-tree li .collapsed {
  padding: 1px 10px;
  background-image: url("../commons/images/right-triangle.png");
  background-repeat: no-repeat;
  cursor: pointer;
}
data-tree li .normal {
  padding: 1px 10px;
  background-repeat: no-repeat;
}
data-tree li .text {
  margin: 9px 15px;
  white-space: nowrap;
  cursor: pointer;
}
data-tree li .text:hover {
  background-color: #f5f5f5;
  color: #555555;
  text-decoration: none;
  padding: 1px 0px;
  border-radius: 4px 4px 4px 4px;
}
.center-text {
  text-align: center;
}
.loading-indicator {
  background: rgba(255, 255, 255, 0.75) url('../commons/images/indicator.gif') no-repeat scroll 48% 66%;
}
.add-field {
  text-align: center;
}
.add-field select {
  margin-bottom: 0px;
}
.form-fields .accordion-group {
  border: 1px solid #AAAAAA;
}
.form-fields .accordion-heading {
  background-color: #E2E2E2;
}
.accordion-edit div,
.field div {
  line-height: 35px;
}
.form-properties .row {
  line-height: 35px;
}
.form-field-label {
  display: inline;
}
.required-error {
  color: red;
  font-size: smaller;
}
nav.navbar.analysis-menu-large-screen {
  min-height: auto;
  display: none;
}
@media (min-width: 768px) {
  nav.navbar.analysis-menu-large-screen {
    display: block;
  }
}
nav.navbar.analysis-menu-large-screen > div.container-fluid > ul > li {
  height: 40px;
}
nav.navbar.analysis-menu-large-screen > div.container-fluid > ul > li > a {
  padding: 8px;
  display: block;
  color: #000;
  font-size: 15px;
  letter-spacing: 0.1px;
  cursor: pointer;
}
nav.navbar.analysis-menu-large-screen > div.container-fluid > ul > li > a.active,
nav.navbar.analysis-menu-large-screen > div.container-fluid > ul > li > a:hover {
  border-bottom: 3px solid #006097;
  color: #fff;
  background: #3C8dbc;
  margin-top: -2px;
  transition: all 0.2s ease-out;
  height: 44px;
  line-height: 26px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  nav.navbar.analysis-menu-large-screen > div.container-fluid > ul > li > a.active,
  nav.navbar.analysis-menu-large-screen > div.container-fluid > ul > li > a:hover {
    color: #000;
    border-bottom: 3px solid #3C8dbc;
    background: #F8F8F8;
  }
}
.analysis-menu-small-screen {
  display: none;
}
@media (max-width: 768px) {
  .analysis-menu-small-screen {
    display: block;
  }
}
.analysis-menu-small-screen > div.analysis-menu-col {
  text-align: center;
  padding: 10px 0px;
}
.analysis-menu-small-screen > div.analysis-menu-col > select {
  padding: 5px;
  width: 90%;
  margin: 0px auto;
}
.analysis-menu-small-screen > div.analysis-menu-col > option:hover {
  background: #f6f6f6;
}
.charts {
  width: auto;
  height: 300px;
  max-width: 500px;
  margin: 0px auto;
}
.analysis-header {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
.analysis-first-row {
  margin-bottom: 20px;
}
.search-for-resource {
  width: 100%;
  margin: 0px auto;
  max-width: 500px;
}
.drpdwn {
  height: 130px;
  width: 300px;
  overflow: auto;
  display: block;
  border: 1px solid #ccc;
  background: white;
}
.drpdwn li {
  border-bottom: 1px solid #f1f1f1;
  padding: 4px;
}
.drpdwn li a {
  text-decoration: none;
  color: #000;
  display: block;
  width: 200px;
}
.drpdwn li a:hover {
  background: #f6f6f6;
}
.textbox {
  border-radius: 5px;
  border: 1px solid #cccccc;
  outline: 0;
  height: 25px;
  width: 300px;
  background: transparent url('../commons/images/icon_search.png') no-repeat right center;
}
.no_of_rec {
  float: right;
  font-size: 12px;
}
.analysis-attributes-panel > .panel-heading {
  background: #f9fafc;
}
.analysis-attributes-panel > .panel-heading > .btn-sm {
  position: absolute;
  top: 9px;
  padding: 3px 6px;
  font-size: 11px;
  line-height: 1.4;
}
.analysis-attributes-panel > .panel-heading > .btn-sm.btn-sorting {
  right: 23px;
}
.analysis-attributes-panel {
  border-top: 3px solid #59B4D2;
}
@media (max-width: 768px) {
  .analysis-attributes-panel > .list-group {
    max-height: 500px;
    overflow-y: auto;
    padding: 0px;
  }
}
.analysis-attributes-panel.blue {
  border-top: 3px solid #336699;
}
.analysis-attributes-panel.red {
  border-top: 3px solid #cc0033;
}
.panel-footer.analysis-panel-footer {
  padding: 7px 15px 4px 15px;
  text-align: right;
}
.analysis-panel-footer > .pagination {
  margin: 0px;
}
.analysis-panel {
  border-top: 3px solid #59B4D2;
}
.analysis-panel > .panel-heading {
  background: #f9fafc;
  font-size: 18px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.pagination.analysis-pagination {
  margin: 0px;
}
.no-assignments-roles-found,
.no-assignments-resources-found,
.no-comments-found {
  text-align: center;
  color: #000;
  font-weight: bold;
}
.assignments-loading {
  text-align: center;
}
.assignments-loading > .spinner-img {
  width: 100px;
  height: 14px;
  margin: 20px auto;
  background-image: url(../commons/images/loading.gif);
  background-size: contain;
  display: inherit;
}
.form-field-row {
  line-height: 35px;
  border-top: 1px solid #dae1e1;
}
.form-field-Label {
  width: 40%;
  display: inline-block;
  padding-right: 10px;
}
.text-color {
  color: #0087cd;
}
.text-active {
  color: #fff;
}
.text-center {
  text-align: center;
}
.search-bar-input {
  background-color: transparent;
  border-color: #dae1e1;
  border-radius: 2px !important;
  box-shadow: none !important;
}
.search-bar-input.new {
  background-color: transparent;
  padding-left: 32px;
}
.search-bar-input.newest {
  background-color: transparent;
  padding-left: 28px;
}
.content-not-found {
  text-align: center;
  color: #000;
  font-weight: bold;
}
.contents-loading-spinner {
  text-align: center;
}
.contents-loading-spinner > .spinner-img {
  width: 100px;
  height: 14px;
  margin: 20px auto;
  background-image: url(../commons/images/loading.gif);
  background-size: contain;
  display: inherit;
}
i.fa.custom-icon.custom-users-icon {
  background: url("../commons/images/user.png") no-repeat;
  background-size: 14px 14px;
  height: 14px;
  width: 14px;
}
i.fa.custom-icon.custom-groups-icon {
  background: url("../commons/images/group.png") no-repeat;
  background-size: 14px 14px;
  height: 14px;
  width: 14px;
}
.input-group-addon.comments-addon,
.input-group-btn.comments-addon {
  width: auto;
}
.navbar.navbar-dash-top-menu {
  margin: 0px;
  border-radius: 0px;
  border-left: 0;
  border-right: 0;
  min-height: 0px;
}
.navbar-default.navbar-dash-top-menu .navbar-form {
  border: none;
  padding: 0px 10px;
  margin-top: 3px;
  margin-bottom: 3px;
}
@media (max-width: 768px) {
  .navbar-default.navbar-dash-top-menu .navbar-form {
    margin-top: 6px;
  }
}
@media (min-width: 768px) {
  .sidebar-toggle.top-nav {
    display: none;
  }
}
.nav.nav-dash-top-menu > li > a {
  padding-top: 5px;
  padding-bottom: 5px;
}
.form-control.form-control-dash-top-menu {
  height: 28px;
  padding: 0px 12px;
}
@media (max-width: 768px) {
  .form-control.form-control-dash-top-menu {
    height: 32px;
  }
}
@media (min-width: 768px) {
  .navbar-collapse {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.screen-lg-branding {
  margin-left: 10px;
}
@media (max-width: 768px) {
  .screen-lg-branding {
    display: none;
  }
}
.screen-lg-branding > .navbar-nav > li > a.top-nav-branding,
.screen-sm-branding > .navbar-nav > li > a.top-nav-branding {
  padding-top: 6px;
  padding-bottom: 2px;
  padding-left: 5px;
  overflow: hidden;
}
.screen-lg-branding > .navbar-nav > li > a.top-nav-branding > span,
.screen-sm-branding > .navbar-nav > li > a.top-nav-branding > span {
  font-size: 18px;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
}
.screen-sm-branding {
  margin-left: 16px;
}
@media (min-width: 768px) {
  .screen-sm-branding {
    display: none;
  }
}
.screen-sm-branding > .navbar-nav > li > a.top-nav-branding {
  max-width: 160px;
  max-height: 33px;
}
.navbar-custom-left {
  float: left;
  width: auto;
}
.title {
  color: #ffffff;
  font-family: "Helvetica Neue Thin", "Helvetica Neue", Helvetica, Arial, san-serif !important;
  font-size: 22px !important;
  font-weight: 200 !important;
  letter-spacing: 1px !important;
}
.navbar-nav .title {
  padding-top: 6px !important;
}
.subtitle {
  color: #00547F;
  font-family: "Helvetica Neue Thin", "Helvetica Neue", Helvetica, Arial, san-serif;
  font-size: 11px !important;
  line-height: 14px !important;
}
.box.box-primary {
  border-top-color: #3c8dbc;
}
.box {
  position: relative;
  border-radius: 3px;
  background: #ffffff;
  border-top: 3px solid #d2d6de;
  margin-bottom: 20px;
  width: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.box-body {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 10px;
}
.profile-user-img {
  margin: 0 auto;
  width: 100px;
  padding: 3px;
  border: 3px solid #d2d6de;
}
.tile-nam,
.tile-idm {
  width: 220px;
  min-height: 340px;
}
.tile,
.tile-nam,
.tile-idm,
.tile-appmark,
.tile-app,
.tile-AR-ov,
.tile-AR-item,
.tile-PAM-ov {
  position: relative;
  float: left;
  background: #eef2f2;
  border: 1px solid #eef2f2;
  border-radius: 2px;
  margin-right: 5px;
  margin-bottom: 5px;
  text-align: center;
  padding: 10px;
  width: 140px;
  height: 170px;
  overflow: hidden;
  z-index: 600;
}
.circle-graph {
  position: relative;
  left: 48px;
  width: 120px;
}
.c100.p50 .slice {
  clip: rect(auto, auto, auto, auto);
}
.pie,
.c100 .bar {
  position: absolute;
  border: 0.08em solid #e50000;
  width: 0.84em;
  height: 0.84em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.c100.p50 .bar:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.c100 {
  position: relative;
  font-size: 120px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  margin: 0 0.1em 0.1em 0;
  background-color: #01A9E7;
}
.circle-labels {
  position: absolute;
  top: 35px;
  color: #434C50;
  text-align: center;
  width: 100%;
  line-height: 25px;
}
.circle-number {
  color: #434c50;
  font-size: 30px;
}
.circle-label1 {
  color: #abb5b7;
  font-size: 16px;
}
.circle-label2 {
  color: #e50000;
  font-size: 12px;
}
.circle-mask {
  position: absolute;
  top: 85px;
  width: 120px;
  height: 35px;
  background: #eef2f2;
}
.c100 *,
.c100 *:before,
.c100 *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.c100.center {
  float: none;
  margin: 0 auto;
}
.c100.big {
  font-size: 240px;
}
.c100.small {
  font-size: 80px;
}
.c100 > span {
  position: absolute;
  width: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  width: 5em;
  line-height: 5em;
  font-size: 0.2em;
  color: #434c50;
  display: block;
  text-align: center;
  white-space: nowrap;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.c100:after {
  position: absolute;
  top: 0.08em;
  left: 0.08em;
  display: block;
  content: " ";
  border-radius: 50%;
  background-color: #eef2f2;
  width: 0.84em;
  height: 0.84em;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}
.tile,
.tile-nam,
.tile-idm,
.tile-appmark,
.tile-app,
.tile-AR-ov,
.tile-AR-item,
.tile-PAM-ov {
  position: relative;
  float: left;
  background: #eef2f2;
  border: 1px solid #eef2f2;
  border-radius: 2px;
  margin-right: 5px;
  margin-bottom: 5px;
  text-align: center;
  padding: 10px;
  width: 140px;
  height: 170px;
  overflow: hidden;
  z-index: 600;
}
.tile,
.tile-nam,
.tile-idm,
.tile-appmark,
.tile-app,
.tile-AR-ov,
.tile-AR-item,
.tile-PAM-ov {
  position: relative;
  float: left;
  background: #eef2f2;
  border: 1px solid #eef2f2;
  border-radius: 2px;
  margin-right: 5px;
  margin-bottom: 5px;
  text-align: center;
  padding: 10px;
  width: 140px;
  height: 170px;
  overflow: hidden;
  z-index: 600;
}
.tile-separator {
  float: left;
  border-top: 1px solid #dae1e1;
}
.tile-app-edits {
  display: none;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #dae1e1;
}
.tile-app.edit {
  background: transparent;
  border: 1px dashed #dae1e1;
  float: none;
}
.tile-app-cat {
  background: #fff;
}
.tile-AR-ov {
  width: 260px;
  height: 180px;
  text-align: left;
  padding: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  background: #eef2f2;
}
.tile-AR-content {
  margin-top: 15px;
  font-size: 14px;
}
.tile-AR-ov a:hover {
  color: #007cd0;
  background-color: #fff;
  border-radius: 2px;
}
.tile-AR-ov .number {
  display: inline-block;
  min-width: 30px;
}
#AR-app-permission-list,
#AR-app-permission-list2 {
  width: 400px;
  float: left;
}
#AR-app-permission-list .search-elements,
#AR-app-permission-list2 .search-elements,
#AR-apps .search-elements {
  margin-bottom: 10px;
}
#AR-app-permission-list .search-elements input,
#AR-app-permission-list2 .search-elements input,
#AR-apps .search-elements input {
  width: 320px;
  padding-left: 25px;
  font-size: 14px;
}
#AR-app-permission-list .search-elements .icon_m_search,
#AR-app-permission-list2 .search-elements .icon_m_search,
#AR-apps .search-elements .icon_m_search {
  top: 9px;
}
/* gets full attribues from .search-element .icon_m_search */
#tile-div-ARrequests .description,
#tile-div-ARrequests2 .description {
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
}
.overdue {
  color: #e50000;
}
.tile-app {
  width: 360px;
  height: 50px;
}
#tile-div-idm-tasks .tile-app-info {
  float: left;
}
.tile-app.disabled .tile-image-app,
.tile-app.disabled .tile-image-idm,
.tile-app.disabled .tile-app-info {
  opacity: .25;
}
.tile-app.disabled {
  background: #f6f9f8;
}
.tile-app.disabled .icon_m_status-denied {
  position: absolute;
  top: 15px;
  left: 40px;
  color: #e50000;
  font-size: 40px;
  z-index: 10;
}
#disabled-section .icon_m_status-denied {
  color: #e50000;
  font-size: 40px;
  vertical-align: middle;
}
.tile-app .tile-content {
  text-align: left;
}
.tile-image-app {
  width: 100px;
  height: 50px;
  margin-right: 15px;
  margin-bottom: 5px;
  float: left;
  text-align: center;
}
.tile-image-app img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 2px;
}
.tile-image-idm {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  margin-bottom: 5px;
  float: left;
  text-align: center;
}
.tile-image-idm img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 25px;
}
.tile-image-host {
  width: 18px;
  height: 50px;
  margin-right: 10px;
  margin-bottom: 5px;
  float: left;
  text-align: center;
}
.tile-image-host img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 2px;
}
.tile-app-title,
.tile-AR-title,
#tile-div-ARrequests .permission,
#tile-div-ARrequests2 .permission {
  color: #434c50;
  padding-right: 16px;
  padding-bottom: 2px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.tileAC-image {
  width: 50px;
  height: auto;
  float: left;
  margin-right: 5px;
  margin-bottom: 0px;
}
.tileAC-image img {
  width: 100%;
  border-radius: 2px;
}
#IDM-dashboard .tile-idm .tiles {
  height: 303px;
  overflow-y: auto;
  overflow-x: hidden;
  border-top: 1px solid #dae1e1;
  border-bottom: 1px solid #dae1e1;
}
#IDM-dashboard .tile-image-idm {
  width: 25px;
  height: 25px;
  margin-right: 7px;
}
#IDM-dashboard .tile-app {
  width: 93%;
  height: 32px;
  padding: 5px;
  margin-bottom: 2px;
}
#idm-users-search-div1 input {
  width: 210px;
  margin-bottom: 10px;
}
#IDM-ham-menu {
  padding: 25px;
  left: 0;
}
.tile-nam,
.tile-idm {
  width: 250px;
  min-height: 380px;
}
.tile-appmark {
  width: 80px;
  height: 80px;
  padding: 10px 20px;
}
.list-view-select-box-wrapper {
  position: absolute;
}
.list-view-select-box {
  width: 14px;
  height: 14px;
}
.list-view-item-content {
  margin-left: 25px;
}
.btn-list-view-panel-heading-first-from-right {
  right: 23px;
  top: 11px;
}
.selectedItemBox {
  background: #f5f5f5;
  padding-left: 3px;
  margin: 3px 0px;
  border-radius: 3px;
  border: 1px solid #dae1e1;
}
.selectedItemBox > h4 {
  width: 100%;
  font-size: 14px;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.selectedItemsDisplayHeading {
  color: #0087cd;
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  margin: 0px;
  border-color: #dae1e1;
}
.bg-light-grey {
  background: #efefef;
}
.no-user-selection {
  user-select: none;
  /* CSS3 (little to no support) */
  -ms-user-select: none;
  /* IE 10+ */
  -moz-user-select: none;
  /* Gecko (Firefox) */
  -webkit-user-select: none;
  /* Webkit (Safari, Chrome) */
}
.remove-selected-item {
  position: absolute;
  right: 20px;
  cursor: pointer;
}
.remove-selected-item > .panel-title {
  font-size: 18px;
}
.panel-heading-history {
  background: #f9fafc;
  color: #0087cd;
  border-bottom: 1px solid #dae1e1;
}
.panel-heading-history.tableView {
  background: #3c8dbc;
  color: #fff;
  border-bottom: none;
}
.heading-comments {
  line-height: 38px;
  padding: 0px 10px;
  height: 38px;
  vertical-align: middle;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 10px;
  border-top: 1px solid #dae1e1;
}
.heading-comments > .heading-title {
  color: #333;
  font-weight: bold;
}
.no-bottom-margin {
  margin-bottom: 0px;
}
.no-border {
  border: none;
}
.btn.btn-icon.btn-history-remove {
  position: absolute;
  top: 6px;
  right: 5px;
}
table tr th.table-view-heading {
  padding: 15px 10px;
}
.pagination.tableView {
  margin: 5px 0px;
}
i.fa.historyIcon {
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 5px;
}
i.fa.historyIcon.small {
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
}
i.fa.historyIcon.canceled {
  background-image: url("../commons/images/icon_status_canceled.png");
}
i.fa.historyIcon.canceled_rob {
  background-image: url("../commons/images/icon_status_canceled_rob.png");
}
i.fa.historyIcon.completed {
  background-image: url("../commons/images/icon_status_completed.png");
}
i.fa.historyIcon.completed_rob {
  background-image: url("../commons/images/icon_status_completed_rob.png");
}
i.fa.historyIcon.completedapproved {
  background-image: url("../commons/images/icon_status_completedapproved.png");
}
i.fa.historyIcon.completedapproved_rob {
  background-image: url("../commons/images/icon_status_completedapproved_rob.png");
}
i.fa.historyIcon.denied {
  background-image: url("../commons/images/icon_status_denied.png");
}
i.fa.historyIcon.denied_rob {
  background-image: url("../commons/images/icon_status_denied_rob.png");
}
i.fa.historyIcon.error {
  background-image: url("../commons/images/icon_status_error.png");
}
i.fa.historyIcon.error_rob {
  background-image: url("../commons/images/icon_status_error_rob.png");
}
i.fa.historyIcon.pendingactivation {
  background-image: url("../commons/images/icon_status_pendingactivation.png");
}
i.fa.historyIcon.pendingactivation_rob {
  background-image: url("../commons/images/icon_status_pendingactivation_rob.png");
}
i.fa.historyIcon.pendingapproval {
  background-image: url("../commons/images/icon_status_pendingapproval.png");
}
i.fa.historyIcon.pendingapproval_rob {
  background-image: url("../commons/images/icon_status_pendingapproval_rob.png");
}
i.fa.historyIcon.running {
  background-image: url("../commons/images/icon_status_running.png");
}
i.fa.historyIcon.running_rob {
  background-image: url("../commons/images/icon_status_running_rob.png");
}
i.fa.historyIcon.runningprocessing {
  background-image: url("../commons/images/icon_status_runningprocessing.png");
}
i.fa.historyIcon.runningprocessing_rob {
  background-image: url("../commons/images/icon_status_runningprocessing_rob.png");
}
.timeline-comment-icon {
  width: 25px;
  height: 25px;
  line-height: 25px;
  background: #d2d6de;
  border-radius: 50%;
  text-align: center;
}
.alert.alert-history-section {
  margin: 0px;
  border-radius: 0px;
}
#status-buttons span {
  background: #080808;
  display: block;
  height: 30px;
  margin: 0 auto 10px;
  padding-top: 5px;
  width: 30px;
  border-radius: 50%;
}
#status-buttons a {
  color: #FFF;
  display: inline-block;
  font-size: 12px;
  margin-right: 10px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
}
#status-buttons a.active span {
  background: #00BC8C;
}
.custom-btn-align {
  text-align: right;
  padding-top: 20px;
}
.vertical-align-middle {
  vertical-align: middle;
}
.text-right {
  text-align: right;
}
.page-container {
  margin: 0px 25px;
}
@media (max-width: 991px) {
  .page-container {
    margin: 0px 10px;
  }
}
.page-header {
  position: relative;
  margin: 10px 0px 10px 0px;
  border: none;
  padding: 0px;
}
.page-header .icon_m_configure.apps {
  position: absolute;
  top: 0px;
  right: 10px;
}
.font-icon {
  font-size: 28px;
  color: #434c50;
  padding: 2px;
  border: 1px solid transparent;
  vertical-align: middle;
  margin-left: 8px;
}
.font-icon:hover {
  color: #007cd0;
  cursor: pointer;
  background: #f6f9f8;
  border: 1px solid #dae1e1;
  border-radius: 2px;
}
.page-content {
  margin-top: 20px;
}
.page-title {
  position: relative;
  color: #1f1f1f;
  margin: 0px;
  font-size: 24px;
  font-weight: normal;
  padding-right: 20px;
  padding-bottom: 10px;
}
.page-itemsCount {
  padding: 2px 6px !important;
  font-size: 14px;
  font-weight: normal;
  margin-left: 5px;
  background-color: #dae1e1;
  border-radius: 3px !important;
  color: #1f1f1f !important;
}
.page-header-buttons {
  margin: 10px 0px;
}
.page-header-buttons.page-header-refresh {
  background: #fff;
  color: #000;
  border: thin solid lightgray;
  border-radius: 6px;
  text-indent: 0;
}
.page-header-buttons.page-header-refresh:hover {
  background-color: #3c8dbc;
  border-color: #367fa9;
  color: #fff;
}
.page-title-footer {
  float: none;
  clear: both;
  margin: 0px;
  visibility: hidden;
}
.page-table-footer {
  background: #f2f2f2;
}
.text-underline {
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid #337ab7;
}
.text-underline:hover,
.text-underline:focus,
.text-underline:active {
  border-bottom: 1px solid #23527c;
}
.bg-white {
  background: #fff;
}
.fa-sort-asc.notActive,
.fa-sort-desc.notActive {
  color: #ccc;
}
.sorting-asc {
  margin-left: 5px;
}
.sorting-desc {
  margin-left: -10.7px;
}
.row.extra-padding {
  margin-bottom: 5px;
  margin-top: -40px;
  margin-right: 2px;
}
/**
CSS FOR THE LANDING PAGE
**/
.landingcard:hover {
  background: #f6f9f8;
  border: 1px solid #01a9e7;
}
.landingcard {
  border: 1px solid #eef2f2;
  border-radius: 3px;
  background: #eef2f2;
  padding: 10px;
  text-align: center;
  margin-right: 5px;
  margin-bottom: 5px;
  flex: none;
  width: 160px;
  height: 160px;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.landingname {
  font-size: 10px;
  font-weight: 600;
  color: #737373;
  text-align: center;
}
.landingcard_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.pic {
  width: 60px;
  height: 60px;
}
.landingtitle {
  margin-top: 5px;
  text-align: center;
  color: #1f1f1f;
  font-size: 15px;
  line-height: 17px;
  font-weight: 500;
}
.landingdesc {
  font-size: 12px;
  line-height: 13px;
  font-weight: normal;
  color: #555;
  text-align: center;
  margin-top: 4px;
}
.landinginput {
  color: #1f1f1f;
  box-shadow: none;
  border: 1px solid #dae1e1;
  border-radius: 5px;
  padding: 5px;
  width: 300px;
  margin-left: 30px;
}
.landingheading {
  color: #434c50;
  font-size: 16px;
  margin-top: 15px;
  font-weight: normal;
}
.editpic {
  margin-top: 15px;
  width: 25px;
  height: 25px;
}
.edittitle {
  margin-top: 5px;
  text-align: center;
  color: black;
  font-weight: 600;
  font-size: 12px;
}
[ng-drag] {
  border: 1px solid #3c8dbc;
  border-radius: 4px;
  background: #ffffff;
  text-align: center;
  flex: none;
  margin: 5px;
  width: 90px;
  height: 90px;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}
[ng-drop].drag-enter {
  border-style: dotted;
  border-radius: 5px;
  border-color: #00e600;
}
.editcard_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  min-height: 100px;
  min-width: 75%;
  border-style: dashed;
  border-radius: 5px;
  padding: 20px;
  border-color: #cccccc;
}
.editLandinginput {
  color: #1f1f1f;
  box-shadow: none;
  border: 1px solid #dae1e1;
  border-radius: 5px;
  padding: 4px;
  width: 550px;
  padding-left: 7px;
}
.uncatpic {
  display: inline-block;
  margin-right: 5px;
  width: 25px;
  height: 25px;
}
.uncatItem {
  display: inline-block;
  margin-right: 5px;
  margin-top: 2px;
  padding: 0px;
  text-align: left;
  color: black;
  font-weight: 600;
}
.pagesection {
  background: #f6f8f9;
  border: thin solid lightgray;
  border-radius: 6px;
  padding: 5px;
  height: auto;
  margin-top: 10px;
}
.pager li > a:hover,
.pager li a:focus {
  text-decoration: none;
  background-color: #367fa9;
  color: #fff;
  border-color: #204d74;
}
.panel-default {
  border-top: 3px solid #59B4D2;
}
.panel-default.custom-panel > .panel-heading {
  background: #f9fafc;
  color: #0087cd;
}
.panel-default.custom-panel > .panel-heading > .btn-sm {
  position: absolute;
  top: 9px;
  padding: 3px 6px;
  font-size: 11px;
  line-height: 1.4;
}
.panel-default.custom-panel > .panel-heading > .btn-sm.btn-sorting {
  right: 23px;
}
.panel-default.custom-panel > .panel-heading > .btn-sm.btn-refresh {
  right: 23px;
}
.panel-default.custom-panel > .list-group {
  max-height: 700px;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .panel-default.custom-panel > .list-group {
    max-height: 500px;
    overflow-y: auto;
  }
}
.list-group-item.custom-list-group-item {
  cursor: pointer;
  overflow: hidden;
  background: #eef2f2;
  border-style: dashed;
  margin: 2.5px 5px;
}
.list-group-item.custom-list-group-item:first-child {
  margin-top: 5px;
}
.list-group-item.custom-list-group-item:last-child {
  margin-bottom: 5px;
}
.list-group-item.custom-list-group-item.active {
  background: #337ab7;
}
.list-group-item.custom-list-group-item.active:hover,
.list-group-item.custom-list-group-item.active:focus {
  background: #337ab7;
}
.list-group-item.custom-list-group-item:hover {
  background: #f6f9f8;
  border: 1px solid #28A9E1;
}
.list-group-item > .role-tags {
  overflow: hidden;
  height: 22px;
}
.badge.custom-badge {
  font-weight: normal;
  color: #777;
  background: #f8f8f8;
  margin-top: -16px;
}
.badge.custom-badge.active {
  color: #888;
  background: rgba(255, 255, 255, 0.59);
  border: 1px solid #ffe466;
}
.anchor {
  text-decoration: underline;
  cursor: pointer;
}
p > ul.dropdown-menu {
  background-color: white;
}
td > button.btn-info {
  color: #fff;
  background-color: #5bc0de !important;
  border-color: #46b8da !important;
}
ul.ui-select-choices.ui-select-choices-content.ui-select-dropdown.dropdown-menu {
  background-color: white;
}
ul.dropdown-menu.custom-dropdown {
  background-color: white;
}
.margin-top-class {
  margin-top: 2px;
}
.scroll-vertical {
  max-height: 700px;
  overflow-x: hidden;
  overflow-y: auto;
}
.date > ul.dropdown-menu {
  background: #fff;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border-color: #dae1e1;
  padding: 5px;
}
.date > ul.dropdown-menu > li table {
  outline: none;
}
.permissions_widget {
  padding: 0px;
  position: relative;
}
.permissions_widget > .input-permission-query {
  position: relative;
}
.permissions_widget > .input-permission-query.inselection {
  -moz-box-shadow: inset 0 0 10px #e4e4e4;
  -webkit-box-shadow: inset 0 0 10px #e4e4e4;
  box-shadow: inset 0 0 10px #e4e4e4;
  padding: 0px 3px 3px 3px;
  border-left: 1px solid #dae1e1;
  background: #fff;
  border-right: 1px solid #dae1e1;
}
.permissions_widget > .permission_widget_options > a {
  cursor: pointer;
  padding: 3px;
}
.permissions_widget > .permissions-dropdown-container {
  position: absolute;
  width: 100%;
  z-index: 1001;
  border-left: 1px solid #0078EF;
  border-right: 1px solid #0078EF;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 2px 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 2px 8px rgba(102, 175, 233, 0.6);
}
.permissions_widget > .permissions-dropdown-container.inselection {
  border-bottom: 1px solid #0078EF;
}
.permissions_widget > .permissions-dropdown-container > .list-pagination {
  text-align: right;
  background: #fff;
}
.permissions_widget > .permissions-dropdown-container > .list-pagination a {
  cursor: pointer;
  padding: 5px 15px;
  display: block;
}
.permissions_widget > .permissions-dropdown-container > .list-group {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 0px;
  border-top: 1px solid #dae1e1;
}
.permissions_widget > .permissions-dropdown-container > .list-group > .list-group-item:hover {
  background-color: #e8f7ff;
  cursor: pointer;
}
.permissions_widget > .permissions-dropdown-container > .list-group > .list-group-item.disabled:hover {
  background-color: #eee;
  color: #777;
  cursor: not-allowed;
}
.permissions_widget > .permissions-dropdown-container > .list-group > .list-group-item:first-child,
.permissions_widget > .permissions-dropdown-container > .list-group > .list-group-item:last-child {
  border-radius: 0;
}
.permissions_widget > .selected_container {
  max-height: 200px;
  padding: 3px;
  overflow-y: auto;
  overflow-x: hidden;
  -moz-box-shadow: inset 0 0 10px #e4e4e4;
  -webkit-box-shadow: inset 0 0 10px #e4e4e4;
  box-shadow: inset 0 0 10px #e4e4e4;
  border-left: 1px solid #dae1e1;
  border-right: 1px solid #dae1e1;
  border-top: 1px solid #dae1e1;
  border-bottom: none;
  background: #fff;
}
.permissions_widget > .selected_container > .bs-callout {
  padding: 10px;
  border-left-width: 2px;
  border-radius: 0;
  margin-bottom: 3px;
  margin-top: 0px;
  position: relative;
  background-color: #e8f7ff;
}
.permissions_widget > .selected_container > .bs-callout.selectable:hover {
  cursor: pointer;
  border-top: 1px solid #428bca;
  border-bottom: 1px solid #428bca;
  border-right: 1px solid #428bca;
}
.permissions_widget > .selected_container > .bs-callout.selectable .media-heading > span:first-child {
  text-decoration: underline;
}
.permissions_widget > .selected_container > .bs-callout:last-child {
  margin-bottom: 0px;
}
.permissions_widget > .selected_container > .bs-callout > .btn.deselect-permission-button {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 0px 9px;
  height: 30px;
  border: none;
  background-color: #e8f7ff;
}
.permissions_widget > .selected_container > .bs-callout > .btn.deselect-permission-button:hover {
  background-color: #fff;
  color: #007fbf;
}
.bs-callout {
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #eee;
  border-left-width: 5px;
  border-radius: 3px;
  background: #fff;
}
.bs-callout h4,
.bs-callout h5 {
  margin-top: 0;
  margin-bottom: 5px;
}
.bs-callout p:last-child {
  margin-bottom: 0;
}
.bs-callout code {
  border-radius: 3px;
}
.bs-callout + .bs-callout {
  margin-top: -5px;
}
.bs-callout-default {
  border-left-color: #777;
}
.bs-callout-default h4,
.bs-callout-default h5 {
  color: #777;
}
.bs-callout-primary {
  border-left-color: #428bca;
}
.bs-callout-primary h4,
.bs-callout-primary h5 {
  color: #428bca;
}
.bs-callout-success {
  border-left-color: #5cb85c;
}
.bs-callout-success h4,
.bs-callout-success h5 {
  color: #5cb85c;
}
.bs-callout-danger {
  border-left-color: #d9534f;
}
.bs-callout-danger h4,
.bs-callout-danger h5 {
  color: #d9534f;
}
.bs-callout-warning {
  border-left-color: #f0ad4e;
}
.bs-callout-warning h4,
.bs-callout-warning h5 {
  color: #f0ad4e;
}
.bs-callout-info {
  border-left-color: #5bc0de;
}
.bs-callout-info h4,
.bs-callout-info h5 {
  color: #5bc0de;
}
.heading-icon-set {
  margin-left: 30px;
}
.heading-icon-set > i {
  cursor: pointer;
  font-size: 20px;
  color: #b2b2b2;
  margin-right: 0.5em;
}
.heading-icon-set > i:hover,
.heading-icon-set > i:focus {
  color: #007fbf;
}
.form-icon-set > i {
  cursor: pointer;
  font-size: 20px;
  color: #b2b2b2;
  margin-right: 0.5em;
}
.form-icon-set > i:hover,
.form-icon-set > i:focus {
  color: #007fbf;
}
.make-request-form {
  background: #e6e6e6;
  padding: 25px 15px 25px 15px;
  margin-bottom: 20px;
}
.search-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  font-size: 17px;
  color: #777;
}
.icon_m_down {
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
}
textarea.form-control.expandTextarea {
  overflow: hidden;
  margin: 0px 0px;
  padding: 5px;
  height: 34px;
  display: block;
  margin: 0px auto;
  resize: vertical;
}
i.fa.fa-plus-square.feedback-expand {
  font-size: 14px;
  color: #909090;
  padding: 5px;
}
i.fa.fa-minus-square-o.feedback-collapse {
  font-size: 14px;
  color: #909090;
  padding: 5px;
}
.landingTitleImage {
  height: 100px;
  width: auto;
  float: none;
  margin-right: 0px;
  margin-bottom: 5px;
}
span.taskClaimed:before {
  content: url('../commons/images/task_claimed.png');
}
span.taskDelegated:before {
  content: url('../commons/images/task_delegated.png');
}
span.taskReassigned:before {
  content: url('../commons/images/icon_tasks_sent_to_me.png');
}
.content-right-title,
.content-left-title {
  color: #1f1f1f;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 15px;
}
.cluster-select {
  padding: 2px;
  font-size: 14px;
  min-width: 250px;
  background: #fff;
}
.action-but {
  display: inline-block;
  color: #434c50;
  background: #f6f9f8;
  padding: 5px 10px;
  margin-bottom: 5px;
  margin-right: 5px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #dae1e1;
  border-radius: 3px;
  min-width: 40px;
}
#settings-div {
  width: 225px;
  float: left;
  min-height: 250px;
}
#settings-list .list-item {
  font-size: 15px;
  line-height: 16px;
  margin-top: 3px;
  white-space: normal;
  padding: 5px;
}
.description {
  color: #808080;
  font-size: 14px;
  max-width: 550px;
  white-space: normal !important;
  margin-bottom: 10px;
}
.content,
.subcontent {
  position: relative;
}
.btn-file {
  position: relative;
  overflow: hidden;
  margin-bottom: 5px;
}
.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}
.clientname {
  margin-bottom: 15px;
  padding-bottom: 5px;
  white-space: nowrap;
  border-bottom: 1px solid #eef2f2;
  color: black;
}
.navelements {
  color: black;
  background-color: white;
  border-left-color: white;
  background: transparent;
  color: #444;
  border-top: 0;
}
.last_sec {
  margin: 20px 0 10px 0;
  padding: 0 10px 10px 0;
  display: none;
}
.input-div {
  position: relative;
}
.titlediv {
  margin-top: 15px;
  margin-bottom: 15px;
}
.colcontent {
  padding-left: 0px;
}
.sidenavcustom {
  border-right: 1px solid #d4c7c7;
}
.clable {
  color: black;
}
.modal-dialog.modal-xl {
  width: 80%;
  max-width: 1500px;
}
@media (min-width: 768px) {
  .modal-dialog.modal-xl {
    width: 90%;
  }
}
.addresseetype_0 {
  width: 18px;
  height: 18px;
  background-image: url("../commons/images/icon_sentToMe.gif");
  background-size: contain;
}
.addresseetype_1 {
  width: 18px;
  height: 18px;
  background-image: url("../commons/images/icon_sentToGroup.gif");
  background-size: contain;
}
.addresseetype_2 {
  width: 18px;
  height: 18px;
  background-image: url("../commons/images/icon_sentToMyDelegate.gif");
}
.addresseetype_14 {
  width: 18px;
  height: 18px;
  background-image: url("../commons/images/Assign_Role_16.png");
}
.addresseetype_default {
  width: 18px;
  height: 18px;
  background-image: url("../commons/images/icon_quorum.gif");
}
h2.resource-form-heading {
  font-size: 23px;
  font-weight: 500;
  margin-top: 5px;
}
data-container-tree ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  border: none;
  overflow: hidden;
}
data-container-tree li {
  position: relative;
  padding: 0 0 0 20px;
  line-height: 20px;
}
data-container-tree li .expanded {
  padding: 1px 10px;
  background-image: url("../commons/images/downwards-triangle.png");
  background-repeat: no-repeat;
  cursor: pointer;
}
data-container-tree li .collapsed {
  padding: 1px 10px;
  background-image: url("../commons/images/right-triangle.png");
  background-repeat: no-repeat;
  cursor: pointer;
}
data-container-tree li .normal {
  padding: 1px 10px;
  background-repeat: no-repeat;
}
data-container-tree li .text {
  margin: 9px 15px;
  white-space: nowrap;
  cursor: pointer;
}
data-container-tree li .text:hover {
  background-color: #f5f5f5;
  color: #555555;
  text-decoration: none;
  padding: 1px 0px;
  border-radius: 4px 4px 4px 4px;
}
.navbar-uihead {
  top: 0;
  z-index: 10000000;
  position: fixed;
  width: 100%;
}
.navbar-uimenu {
  top: 51px;
  z-index: 10000000;
  position: fixed;
  width: 100%;
}
.fixedContainer {
  position: fixed;
  width: 100%;
  z-index: 10000000;
  top: 0%;
}
.fixedContainer2 {
  position: fixed;
  width: 100%;
  z-index: 10000000;
  top: 50px;
}
.barcolor {
  background-image: linear-gradient(to right, #5fb192, #0065ce);
  background: linear-gradient(to right, #5fb192, #0065ce);
}
.localecard {
  border: 1px solid #eef2f2;
  border-radius: 3px;
  background: #eef2f2;
  padding: 10px;
  text-align: center;
  margin-right: 5px;
  margin-bottom: 5px;
  flex: none;
  width: 186px;
  height: 100px;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.localecard:hover {
  background: #f6f9f8;
  border: 1px solid #01a9e7;
}
.localeTitle {
  text-align: left;
}
.localeHeader {
  font-size: 15px;
  padding-bottom: 9px;
  margin: 5px 0 20px;
}
ol.importExport li {
  background: none repeat scroll 0 0 #fbfbfb;
  border: thin solid lightgray;
  border-radius: 6px 6px 6px 6px;
  display: inline-block;
  width: 24%;
  margin: 4px 4px 10px 4px;
  padding: 12px 10px 9px;
}
ol.importExport li .localeUpload {
  float: right;
}
ol.importExport a {
  cursor: pointer;
  text-decoration: none;
}
input#focusser-0 {
  display: none;
}
input#focusser-1 {
  display: none;
}
.ui-select-choices.ui-select-dropdown.selectize-dropdown.single {
  width: 100%;
}
.pwd-sync-panel-body {
  max-height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
}
/*
 * 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;
}
.description-block {
  display: block;
  margin: 10px 0;
  text-align: center;
}
.description-block.margin-bottom {
  margin-bottom: 25px;
}
.description-block > .description-header {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 16px;
}
.description-block > .description-text {
  text-transform: uppercase;
}
.bg-red,
.bg-yellow,
.bg-aqua,
.bg-blue,
.bg-light-blue,
.bg-green,
.bg-navy,
.bg-teal,
.bg-olive,
.bg-lime,
.bg-orange,
.bg-fuchsia,
.bg-purple,
.bg-maroon,
.bg-black,
.bg-red-active,
.bg-yellow-active,
.bg-aqua-active,
.bg-blue-active,
.bg-light-blue-active,
.bg-green-active,
.bg-navy-active,
.bg-teal-active,
.bg-olive-active,
.bg-lime-active,
.bg-orange-active,
.bg-fuchsia-active,
.bg-purple-active,
.bg-maroon-active,
.bg-black-active {
  color: #fff !important;
}
.bg-gray {
  color: #000;
  background-color: #d2d6de !important;
}
.bg-gray-light {
  background-color: #f7f7f7;
}
.bg-black {
  background-color: #111 !important;
}
.bg-red {
  background-color: #dd4b39 !important;
}
.bg-yellow {
  background-color: #f39c12 !important;
}
.bg-aqua {
  background-color: #00c0ef !important;
}
.bg-blue {
  background-color: #0073b7 !important;
}
.bg-light-blue {
  background-color: #3c8dbc !important;
}
.bg-green {
  background-color: #00a65a !important;
}
.bg-navy {
  background-color: #001F3F !important;
}
.bg-teal {
  background-color: #39CCCC !important;
}
.bg-olive {
  background-color: #3D9970 !important;
}
.bg-lime {
  background-color: #01FF70 !important;
}
.bg-orange {
  background-color: #FF851B !important;
}
.bg-fuchsia {
  background-color: #F012BE !important;
}
.bg-purple {
  background-color: #605ca8 !important;
}
.bg-maroon {
  background-color: #D81B60 !important;
}
.bg-gray-active {
  color: #000;
  background-color: #b5bbc8 !important;
}
.bg-black-active {
  background-color: #000000 !important;
}
.bg-red-active {
  background-color: #d33724 !important;
}
.bg-yellow-active {
  background-color: #db8b0b !important;
}
.bg-aqua-active {
  background-color: #00a7d0 !important;
}
.bg-blue-active {
  background-color: #005384 !important;
}
.bg-light-blue-active {
  background-color: #357ca5 !important;
}
.bg-green-active {
  background-color: #008d4c !important;
}
.bg-navy-active {
  background-color: #001a35 !important;
}
.bg-teal-active {
  background-color: #30bbbb !important;
}
.bg-olive-active {
  background-color: #368763 !important;
}
.bg-lime-active {
  background-color: #00e765 !important;
}
.bg-orange-active {
  background-color: #ff7701 !important;
}
.bg-fuchsia-active {
  background-color: #db0ead !important;
}
.bg-purple-active {
  background-color: #555299 !important;
}
.bg-maroon-active {
  background-color: #ca195a !important;
}
[class^="bg-"].disabled {
  opacity: 0.65;
  filter: alpha(opacity=65);
}
.text-red {
  color: #dd4b39 !important;
}
.text-yellow {
  color: #f39c12 !important;
}
.text-aqua {
  color: #00c0ef !important;
}
.text-blue {
  color: #0073b7 !important;
}
.text-black {
  color: #111 !important;
}
.text-light-blue {
  color: #3c8dbc !important;
}
.text-green {
  color: #00a65a !important;
}
.text-gray {
  color: #d2d6de !important;
}
.text-navy {
  color: #001F3F !important;
}
.text-teal {
  color: #39CCCC !important;
}
.text-olive {
  color: #3D9970 !important;
}
.text-lime {
  color: #01FF70 !important;
}
.text-orange {
  color: #FF851B !important;
}
.text-fuchsia {
  color: #F012BE !important;
}
.text-purple {
  color: #605ca8 !important;
}
.text-maroon {
  color: #D81B60 !important;
}
.link-muted {
  color: #7a869d;
}
.link-muted:hover,
.link-muted:focus {
  color: #606c84;
}
.link-black {
  color: #666;
}
.link-black:hover,
.link-black:focus {
  color: #999;
}
.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;
}
.bg-teal-gradient {
  background: #39CCCC !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #39CCCC), color-stop(1, #7adddd)) !important;
  background: -ms-linear-gradient(bottom, #39CCCC, #7adddd) !important;
  background: -moz-linear-gradient(center bottom, #39CCCC 0%, #7adddd 100%) !important;
  background: -o-linear-gradient(#7adddd, #39CCCC) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7adddd', endColorstr='#39CCCC', GradientType=0) !important;
  color: #fff;
}
.bg-light-blue-gradient {
  background: #3c8dbc !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #3c8dbc), color-stop(1, #67a8ce)) !important;
  background: -ms-linear-gradient(bottom, #3c8dbc, #67a8ce) !important;
  background: -moz-linear-gradient(center bottom, #3c8dbc 0%, #67a8ce 100%) !important;
  background: -o-linear-gradient(#67a8ce, #3c8dbc) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#67a8ce', endColorstr='#3c8dbc', GradientType=0) !important;
  color: #fff;
}
.bg-blue-gradient {
  background: #0073b7 !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0073b7), color-stop(1, #0089db)) !important;
  background: -ms-linear-gradient(bottom, #0073b7, #0089db) !important;
  background: -moz-linear-gradient(center bottom, #0073b7 0%, #0089db 100%) !important;
  background: -o-linear-gradient(#0089db, #0073b7) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0089db', endColorstr='#0073b7', GradientType=0) !important;
  color: #fff;
}
.bg-aqua-gradient {
  background: #00c0ef !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00c0ef), color-stop(1, #14d1ff)) !important;
  background: -ms-linear-gradient(bottom, #00c0ef, #14d1ff) !important;
  background: -moz-linear-gradient(center bottom, #00c0ef 0%, #14d1ff 100%) !important;
  background: -o-linear-gradient(#14d1ff, #00c0ef) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#14d1ff', endColorstr='#00c0ef', GradientType=0) !important;
  color: #fff;
}
.bg-yellow-gradient {
  background: #f39c12 !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f39c12), color-stop(1, #f7bc60)) !important;
  background: -ms-linear-gradient(bottom, #f39c12, #f7bc60) !important;
  background: -moz-linear-gradient(center bottom, #f39c12 0%, #f7bc60 100%) !important;
  background: -o-linear-gradient(#f7bc60, #f39c12) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7bc60', endColorstr='#f39c12', GradientType=0) !important;
  color: #fff;
}
.bg-purple-gradient {
  background: #605ca8 !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #605ca8), color-stop(1, #9491c4)) !important;
  background: -ms-linear-gradient(bottom, #605ca8, #9491c4) !important;
  background: -moz-linear-gradient(center bottom, #605ca8 0%, #9491c4 100%) !important;
  background: -o-linear-gradient(#9491c4, #605ca8) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9491c4', endColorstr='#605ca8', GradientType=0) !important;
  color: #fff;
}
.bg-green-gradient {
  background: #00a65a !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00a65a), color-stop(1, #00ca6d)) !important;
  background: -ms-linear-gradient(bottom, #00a65a, #00ca6d) !important;
  background: -moz-linear-gradient(center bottom, #00a65a 0%, #00ca6d 100%) !important;
  background: -o-linear-gradient(#00ca6d, #00a65a) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ca6d', endColorstr='#00a65a', GradientType=0) !important;
  color: #fff;
}
.bg-red-gradient {
  background: #dd4b39 !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dd4b39), color-stop(1, #e47365)) !important;
  background: -ms-linear-gradient(bottom, #dd4b39, #e47365) !important;
  background: -moz-linear-gradient(center bottom, #dd4b39 0%, #e47365 100%) !important;
  background: -o-linear-gradient(#e47365, #dd4b39) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e47365', endColorstr='#dd4b39', GradientType=0) !important;
  color: #fff;
}
.bg-black-gradient {
  background: #111 !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #111), color-stop(1, #2b2b2b)) !important;
  background: -ms-linear-gradient(bottom, #111, #2b2b2b) !important;
  background: -moz-linear-gradient(center bottom, #111 0%, #2b2b2b 100%) !important;
  background: -o-linear-gradient(#2b2b2b, #111) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2b2b2b', endColorstr='#111', GradientType=0) !important;
  color: #fff;
}
.bg-maroon-gradient {
  background: #D81B60 !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #D81B60), color-stop(1, #e73f7c)) !important;
  background: -ms-linear-gradient(bottom, #D81B60, #e73f7c) !important;
  background: -moz-linear-gradient(center bottom, #D81B60 0%, #e73f7c 100%) !important;
  background: -o-linear-gradient(#e73f7c, #D81B60) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e73f7c', endColorstr='#D81B60', GradientType=0) !important;
  color: #fff;
}
.description-block .description-icon {
  font-size: 16px;
}
.no-pad-top {
  padding-top: 0;
}
.position-static {
  position: static !important;
}
.list-header {
  font-size: 15px;
  padding: 10px 4px;
  font-weight: bold;
  color: #666;
}
.list-seperator {
  height: 1px;
  background: #f4f4f4;
  margin: 15px 0 9px 0;
}
.list-link > a {
  padding: 4px;
  color: #777;
}
.list-link > a:hover {
  color: #222;
}
.font-light {
  font-weight: 300;
}
.user-block:before,
.user-block:after {
  content: " ";
  display: table;
}
.user-block:after {
  clear: both;
}
.user-block img {
  width: 40px;
  height: 40px;
  float: left;
}
.user-block .username,
.user-block .description,
.user-block .comment {
  display: block;
  margin-left: 50px;
}
.user-block .username {
  font-size: 16px;
  font-weight: 600;
}
.user-block .description {
  color: #999;
  font-size: 13px;
}
.user-block.user-block-sm .username,
.user-block.user-block-sm .description,
.user-block.user-block-sm .comment {
  margin-left: 40px;
}
.user-block.user-block-sm .username {
  font-size: 14px;
}
.img-sm,
.img-md,
.img-lg,
.user-block.user-block-sm img {
  float: left;
}
.img-sm,
.user-block.user-block-sm img {
  width: 30px !important;
  height: 30px !important;
}
.img-sm + .img-push {
  margin-left: 40px;
}
.img-md {
  width: 60px;
  height: 60px;
}
.img-md + .img-push {
  margin-left: 70px;
}
.img-lg {
  width: 100px;
  height: 100px;
}
.img-lg + .img-push {
  margin-left: 110px;
}
.img-bordered {
  border: 3px solid #d2d6de;
  padding: 3px;
}
.img-bordered-sm {
  border: 2px solid #d2d6de;
  padding: 2px;
}
.attachment-block {
  border: 1px solid #f4f4f4;
  padding: 5px;
  margin-bottom: 10px;
  background: #f7f7f7;
}
.attachment-block .attachment-img {
  max-width: 100px;
  max-height: 100px;
  height: auto;
  float: left;
}
.attachment-block .attachment-pushed {
  margin-left: 110px;
}
.attachment-block .attachment-heading {
  margin: 0;
}
.attachment-block .attachment-text {
  color: #555;
}
.connectedSortable {
  min-height: 100px;
}
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.sort-highlight {
  background: #f4f4f4;
  border: 1px dashed #dae1e1;
  margin-bottom: 10px;
}
.full-opacity-hover {
  opacity: 0.65;
  filter: alpha(opacity=65);
}
.full-opacity-hover:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.chart {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.chart svg,
.chart canvas {
  width: 100% !important;
}
html[dir='rtl'] .icon{
  margin-right: 0px;
}