  /*
  *  Document   : main.css
  *  Author     : pixelcave
  *  Description: The main stylesheet of the template
  *
  *  Structure (with shortcodes):
  *      (#m01mls) MAIN LAYOUT
  *      (#m02hds) HEADER
  *      (#m03sns) SIDEBAR/NAVIGATION
  *      (#m04mcs) MAIN CONTENT
  *      (#m05pgs) PAGES
  *      (#m06bos) BOOTSTRAP OVERWRITE/EXTEND STYLES
  *      (#m07hes) HELPERS
  *      (#m08ths) THEMES
  *      (#m09res) RESPONSIVE
  *      (#m10prs) PRINT
  */

  /*
  =================================================================
  (#m01mls) MAIN LAYOUT
  =================================================================
  */

  /* Include Lato font from Google Web Fonts */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600&display=swap');

  /* Preloader */
  #page-wrapper.page-loading {
  overflow: hidden;
  }

  #page-wrapper.page-loading .preloader {
  display: block;
  }

  #page-wrapper.page-loading #page-container {
  opacity: 0;
  }

  .preloader {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 99999;
  }

  .preloader .inner {
  position: fixed;
  top: 20%;
  left: 50%;
  margin: 0 0 0 -50px;
  width: 100px;
  height: 100px;
  text-align: center;
  }

  .preloader-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background-color: #cccccc;
  -webkit-animation: rotateplane .8s infinite ease-in-out;
  animation: rotateplane .8s infinite ease-in-out;
  }

  @-webkit-keyframes rotateplane {
  0% {
  -webkit-transform: perspective(120px);
  }
  50% {
  -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
  -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
  }

  @keyframes rotateplane {
  0% {
  transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  } 50% {
  transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  } 100% {
  transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
  }

  /* Main Structure */
  body {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #454e59;
  background-color: #454e59;
  }

  /*#login-container {
  position: absolute;
  width: 300px;
  top: 30px;
  left: 50%;
  margin-left: -150px;
  z-index: 1000;
  }*/

  #page-container,
  #main-container {
  min-width: 320px;
  }

  #page-container {
  opacity: 1;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-transition: background-color .2s ease-out, opacity .3s ease-out;
  transition: background-color .2s ease-out, opacity .3s ease-out;
  }

  #page-content {
  padding: 10px 5px 1px;
  background-color: #ebeef2;
  }

  #page-content-sidebar {
  padding: 10px;
  margin: -10px -5px 10px;
  background-color: #ffffff;
  border-bottom: 2px solid #dae0e8;
  }

  #page-container,
  #sidebar {
  background-color: #2f353a;
  }

  #sidebar,
  #sidebar-alt,
  #sidebar-alt-close,
  #main-container,
  header.navbar.navbar-fixed-top,
  header.navbar.navbar-fixed-bottom {
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  }

  #sidebar,
  #sidebar-alt,
  #sidebar-alt-close {
  z-index: 1029;
  }

  /* Alternative Sidebar */
  #sidebar-alt,
  #sidebar-alt-close {
  background: rgba(69, 78, 89, .9);
  }

  #sidebar-alt {
  position: fixed;
  top: 50px;
  right: -220px;
  bottom: 0;
  width: 220px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  }

  #page-container.header-fixed-bottom #sidebar-alt {
  top: 0;
  bottom: 50px;
  }

  #sidebar-alt-close {
  display: inline-block;
  position: fixed;
  right: -30px;
  top: 50px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  opacity: 0;
  }

  #page-container.header-fixed-top #sidebar-alt-close,
  #page-container.header-fixed-bottom #sidebar-alt-close {
  display: none !important;
  }

  #page-container.sidebar-alt-visible-xs #sidebar-alt {
  -webkit-transform: translateX(-220px);
  transform: translateX(-220px);
  }

  #page-container.sidebar-alt-visible-xs #sidebar-alt-close {
  -webkit-transform: translateX(-250px);
  transform: translateX(-250px);
  opacity: 1;
  }

  /* Sidebar + Static Layout */
  #sidebar {
  position: absolute;
  overflow: hidden;
  width: 220px;
  left: -220px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  }

  #page-container.sidebar-visible-xs #sidebar,
  #page-container.sidebar-visible-xs #main-container {
  -webkit-transform: translateX(220px);
  transform: translateX(220px);
  }

  /* Sidebar + Fixed Layout */
  #page-container.header-fixed-top #page-content {
  padding-top: 80px;
  }

  #page-container.header-fixed-bottom #page-content {
  padding-bottom: 80px;
  }

  #page-container.header-fixed-top #sidebar {
  position: fixed;
  top: 70px;
  bottom: 0px;
  }

  #page-container.header-fixed-bottom #sidebar {
  position: fixed;
  top: 0;
  bottom: 0px;
  }

  #page-container.header-fixed-top.sidebar-visible-xs #main-container,
  #page-container.header-fixed-bottom.sidebar-visible-xs #main-container {
  -webkit-transform: none;
  transform: none;
  }

  #page-container.header-fixed-top #sidebar-extra-info,
  #page-container.header-fixed-bottom #sidebar-extra-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  }

  #page-container.header-fixed-top #sidebar-brand,
  #page-container.header-fixed-bottom #sidebar-brand {
  display: none;
  }

  /* Fixed Width Layout */
  #page-container.fixed-width {
  position: relative;
  max-width: 1280px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  }

  #page-container.fixed-width #sidebar-alt,
  #page-container.fixed-width #sidebar-alt-close {
  background: rgba(25, 25, 25, .8) !important;
  }

  /*
  =================================================================
  (#m02hds) HEADER
  =================================================================
  */

  header.navbar-default,
  header.navbar-inverse {
  padding: 0;
  margin: 0;
  min-width: 320px;
  border: none;
  }

  /* Header Nav */
  .navbar-default .navbar-nav > li > a {
  color: #d76258;
  }

  .navbar-inverse .navbar-nav > li > a {
  color: #ffffff;
  }

  .navbar-default .navbar-nav > li > a:hover,
  .navbar-default .navbar-nav > li > a:focus,
  .navbar-default .navbar-nav > .active > a,
  .navbar-default .navbar-nav > .active > a:hover,
  .navbar-default .navbar-nav > .active > a:focus,
  .navbar-default .navbar-nav > .open > a,
  .navbar-default .navbar-nav > .open > a:hover,
  .navbar-default .navbar-nav > .open > a:focus,
  .navbar-inverse .navbar-nav > li > a:hover,
  .navbar-inverse .navbar-nav > li > a:focus,
  .navbar-inverse .navbar-nav > .active > a,
  .navbar-inverse .navbar-nav > .active > a:hover,
  .navbar-inverse .navbar-nav > .active > a:focus,
  .navbar-inverse .navbar-nav > .open > a,
  .navbar-inverse .navbar-nav > .open > a:hover,
  .navbar-inverse .navbar-nav > .open > a:focus {
  color: #ffffff;
  background-color: #d76258;
  }

  .navbar-inverse .collapse.in .navbar-nav .open .dropdown-menu > li > a {
  color: #dddddd;
  }

  .nav.navbar-nav-custom {
  float: left;
  margin: 0;
  }

  .nav.navbar-nav-custom > li {
  min-height: 50px;
  float: left;
  }

  .nav.navbar-nav-custom > li > a {
  min-width: 50px;
  padding: 5px 7px;
  line-height: 40px;
  text-align: center;
  color: #d76258;
  position: relative;
  }

  .nav.navbar-nav-custom > li > a .gi,
  .nav.navbar-nav-custom > li > a .hi,
  .nav.navbar-nav-custom > li > a .si,
  .nav.navbar-nav-custom > li > a .fi {
  margin-top: -3px;
  }

  .nav.navbar-nav-custom > li > a .label-indicator {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  font-weight: 600;
  border-radius: 10px;
  }

  .navbar-inverse .nav.navbar-nav-custom > li > a {
  color: #73818F;
  }

  .nav.navbar-nav-custom > li.open > a,
  .nav.navbar-nav-custom > li > a:hover,
  .nav.navbar-nav-custom > li > a:focus {
  background-color: #d76258;
  color: #ffffff;
  }

  .navbar-inverse .nav.navbar-nav-custom > li.open > a,
  .navbar-inverse .nav.navbar-nav-custom > li > a:hover,
  .navbar-inverse .nav.navbar-nav-custom > li > a:focus {
  background: rgb(17 24 39 / 6%);
  color: #ffffff;
  }

  .nav.navbar-nav-custom > li > a > img {
  width: 40px;
  height: 40px;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(255, 255, 255, .75);
  border-radius: 20px;
  vertical-align: top;
  }

  .nav.navbar-nav-custom .dropdown-menu {
  margin-top: 0;
  }

  /* Header Search */
  .navbar-form {
  margin: 7px 0;
  }

  .collapsing .navbar-form,
  .collapse.in .navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  }

  .collapsing .navbar-form .form-group,
  .collapse.in .navbar-form .form-group {
  margin-bottom: 0;
  }

  .navbar-form-custom {
  margin: 0;
  padding: 5px 8px;
  width: 140px;
  }

  .navbar-form-custom .form-control {
  margin: 0;
  padding-left: 20px;
  padding-right: 20px;
  height: 40px;
  border: none;
  background: #ffffff;
  border-radius: 20px;
  opacity: .5;
  }

  .navbar-default .navbar-form-custom .form-control {
  background: #eeeeee;
  }

  .navbar-form-custom .form-control:hover,
  .navbar-form-custom .form-control:focus {
  opacity: 1;
  }

  /*
  =================================================================
  (#m03sns) SIDEBAR/NAVIGATION
  =================================================================
  */

  /* Sidebar Content */
  ./*sidebar-content {
  width: 220px;
  color: #acb5bf;
  }*/

  .sidebar-section {
  padding: 10px 15px;
  }

  #sidebar-extra-info {
  padding: 7px 15px 10px;
  }

  /* Sidebar Title */
  .sidebar-title {
  height: 50px;
  line-height: 50px;
  padding: 0 10px;
  margin: 0;
  font-weight: 300;
  font-size: 18px;
  display: block;
  /*color: #ffffff;*/
  /* background-color: #454e59;*/
  -webkit-transition: background .2s ease-out;
  transition: background .2s ease-out;
  }

  a.sidebar-title:hover,
  a.sidebar-title:focus {
  background: rgb(17 24 39 / 6%);
  color: #ffffff;
  text-decoration: none;
  }

  .sidebar-title i {
  width: 18px;
  margin-right: 8px;
  opacity: .75;
  }

  /* Sidebar Navigation */
  .sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 10px 0 0;
  }

  .sidebar-box{
  display: flex;
  align-items: center;
  }

  .sidebar-separator {
  padding: 5px 0;
  color: #ffffff;
  text-align: center;
  }

  .sidebar-separator i {
  opacity: .1;
  }

  #sidebar-toggle-mini {
  display: none;
  }

  .sidebar-nav-ripple {
  display: block;
  position: absolute;
  background: rgba(92, 205, 222, .3);
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  }

  .sidebar-nav-ripple.animate {
  -webkit-animation: ripple 1s ease-out;
  animation: ripple 1s ease-out;
  }

  @-webkit-keyframes ripple {
  100% {
  opacity: 0;
  -webkit-transform: scale(3);
  }
  }

  @keyframes ripple {
  100% {
  opacity: 0;
  -webkit-transform: scale(3);
  transform: scale(3);
  }
  }

  .sidebar-nav a {
  display: block;
  color: #acb5bf;
  padding: 0 10px;
  min-height: 40px;
  line-height: 40px;
  overflow: hidden;
  position: relative;
  }

  .sidebar-nav a:hover,
  .sidebar-nav a:focus,
  .sidebar-nav a.active,
  .sidebar-nav a.open,
  .sidebar-nav li.active > a {
  color: #ffffff;
  text-decoration: none;
  }

  .sidebar-nav a.open,
  .sidebar-nav li.active > a {
  background: rgba(0, 0, 0, .2);
  }

  .sidebar-nav a.active {
  background: #ffffff;
  color: #d76258;
  border-right: 4px solid #d76258;
  }

  .sidebar-nav a > .sidebar-nav-icon {
  margin-right: 10px;
  }

  .sidebar-nav a > .sidebar-nav-icon,
  .sidebar-nav a > .sidebar-nav-indicator {
  display: inline-block;
  opacity: .5;
  width: 18px;
  font-size: 14px;
  text-align: center;
  }

  .sidebar-nav a > .sidebar-nav-indicator {
  float: right;
  line-height: inherit;
  margin-left: 4px;
  font-size: 10px;
  -webkit-transition: -webkit-transform .15s ease-out;
  transition: transform .15s ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  }

  .sidebar-nav a:hover,
  .sidebar-nav a:hover > .sidebar-nav-icon,
  .sidebar-nav a:hover > .sidebar-nav-indicator,
  .sidebar-nav a.active,
  .sidebar-nav a.active > .sidebar-nav-icon,
  .sidebar-nav a.active > .sidebar-nav-indicator,
  .sidebar-nav a.open,
  .sidebar-nav a.open > .sidebar-nav-icon,
  .sidebar-nav a.open > .sidebar-nav-indicator,
  .sidebar-nav li.active > a,
  .sidebar-nav li.active > a > .sidebar-nav-icon,
  .sidebar-nav li.active > a > .sidebar-nav-indicator {
  opacity: 1;
  }

  .sidebar-nav a.active > .sidebar-nav-indicator,
  .sidebar-nav a.open > .sidebar-nav-indicator,
  .sidebar-nav li.active > a > .sidebar-nav-indicator {
  -webkit-transform: rotate(-90deg) rotateZ(0deg);
  transform: rotate(-90deg) rotateZ(0deg);
  }

  .sidebar-nav ul {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
  -webkit-transition: background .25s ease-out;
  transition: background .25s ease-out;
  }

  .sidebar-nav .active > ul,
  .sidebar-nav .open + ul {
  display: block;
  background: rgba(255, 255, 255, .1);
  }

  .sidebar-nav ul a {
  margin: 0 0 0 19px;
  padding-left: 19px;
  border-left: 1px solid #d76258;
  min-height: 34px;
  line-height: 34px;
  font-weight: normal;
  }

  .sidebar-nav ul a.open,
  .sidebar-nav ul li.active > a {
  background: none;
  }

  .sidebar-nav ul ul {
  margin: 0 0 0 19px;
  }

  .sidebar-nav ul ul a {
  margin: 0;
  padding-left: 19px;
  font-size: 13px;
  min-height: 32px;
  line-height: 32px;
  }

  .sidebar-nav ul .active > ul,
  .sidebar-nav ul .open + ul {
  background-color: #d76258;
  }

  /* Sidebar Light Mode */
  #page-container.sidebar-light {
  background-color: #ffffff;
  }

  #page-container.sidebar-light .content-header {
  background: rgba(255, 255, 255, .75);
  }

  #page-container.sidebar-light #page-content-sidebar {
  padding-left: 9px;
  }

  #page-container.sidebar-light .sidebar-themes li.active a {
  border: 2px solid #333333;
  }

  #page-container.sidebar-light #sidebar {
  background-color: #ffffff;
  }

  #page-container.sidebar-light #sidebar .sidebar-content {
  color: #999999;
  }

  #page-container.sidebar-light #sidebar .sidebar-separator {
  color: #000000;
  }

  #page-container.sidebar-light #sidebar .sidebar-nav a {
  color: #7b7b7b;
  }

  #page-container.sidebar-light #sidebar .sidebar-nav a:hover,
  #page-container.sidebar-light #sidebar .sidebar-nav a:focus,
  #page-container.sidebar-light #sidebar .sidebar-nav a.active,
  #page-container.sidebar-light #sidebar .sidebar-nav a.open,
  #page-container.sidebar-light #sidebar .sidebar-nav li.active > a {
  color: #4b4b4b;
  }

  #page-container.sidebar-light #sidebar .sidebar-nav a.open,
  #page-container.sidebar-light #sidebar .sidebar-nav li.active > a {
  background: rgba(0, 0, 0, .1);
  }

  #page-container.sidebar-light #sidebar .sidebar-nav a.active {
  background-color: #f9f9f9;
  }

  #page-container.sidebar-light #sidebar .sidebar-nav .active > ul,
  #page-container.sidebar-light #sidebar .sidebar-nav .open + ul {
  background: rgba(0, 0, 0, .04);
  }

  #page-container.sidebar-light #sidebar .sidebar-nav ul a {
  border-left-color: #cbcbcb;
  }

  /* Sidebar Color Themes */
  .sidebar-themes {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  opacity: .35;
  transition: opacity .15s ease-out;
  }

  .sidebar-themes:hover {
  opacity: 1;
  }

  .sidebar-themes li {
  float: left;
  margin: 0 6px 10px 0;
  }

  .sidebar-themes li a {
  position: relative;
  display: block;
  width: 21px;
  height: 21px;
  overflow: hidden;
  }

  .sidebar-themes li a:hover {
  border: 2px solid rgba(255, 255, 255, .66);
  }

  .sidebar-themes li.active a {
  border: 2px solid #ffffff;
  }

  .sidebar-themes .section-header,
  .sidebar-themes .section-side,
  .sidebar-themes .section-content {
  position: absolute;
  display: block;
  }

  .sidebar-themes .section-side {
  top: 8px;
  right: 8px;
  bottom: 0;
  left: 0;
  background-color: #f9f9f9;
  }

  .sidebar-themes .section-header {
  top: 0;
  right: 0;
  bottom: 9px;
  left: 9px;
  background-color: #ffffff;
  }

  .sidebar-themes .section-content {
  top: 8px;
  right: 0;
  bottom: 0;
  left: 9px;
  background-color: #dddddd;
  }

  /* Toggle Menu */
  .toggle-menu,
  .toggle-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  }

  .toggle-menu a {
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  padding: 5px 10px;
  color: #d76258;
  border-radius: 3px;
  }

  .toggle-menu a:hover,
  .toggle-menu a:focus,
  .toggle-menu a.active {
  text-decoration: none;
  color: #d76258;
  }

  .toggle-menu > li > a {
  font-weight: bold;
  }

  .toggle-menu a.submenu > i {
  margin-right: 7px;
  -webkit-transition: -webkit-transform .1s ease-out;
  transition: transform .1s ease-out;
  }

  .toggle-menu ul {
  display: none;
  }

  .toggle-menu ul a {
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: 15px;
  font-size: 13px;
  font-weight: 400;
  }

  .toggle-menu ul ul a {
  padding-top: 3px;
  padding-bottom: 3px;
  margin-left: 30px;
  }

  .toggle-menu .open > a.submenu > i {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
  }

  .toggle-menu .open > ul {
  display: block;
  }

  /*
  =================================================================
  (#m04mcs) MAIN CONTENT
  =================================================================
  */

  /* Content Header */
  .content-header {
  background-color: #ffffff;
  border-bottom: 2px solid #dae0e8;
  margin: -10px -5px 10px;
  padding: 0 15px;
  }

  .content-header h1,
  .content-header h2 {
  margin: 5px 0;
  line-height: 28px;
  }

  .content-header h1 {
  font-weight: 500;
  font-size: 18px;
  }

  .content-header h2 {
  font-size: 18px;
  }

  .content-header small {
  font-size: 14px;
  font-weight: 400;
  }

  .header-section {
  padding: 0px 0;
  }

  .content-header-media {
  position: relative;
  height: 260px;
  overflow: hidden;
  }

  .content-header-media .header-section {
  z-index: 10;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-left: 15px;
  padding-right: 15px;
  color: #ffffff;
  background: rgba(0, 0, 0, .55);
  }

  .content-header-media > img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2560px;
  height: 260px;
  margin-left: -1280px;
  }

  .content-header-media small {
  color: #cccccc;
  }

  /* Blocks */


  .block .block {
  border: 1px solid #dae0e8;
  -webkit-box-shadow: none;
  box-shadow: none;
  }

  .block.full {
  padding: 20px 15px;
  }

  .block .block-content-full {
  margin: -20px -15px -1px;
  }

  .block .block-content-mini-padding {
  padding: 8px;
  }

  .block.full .block-content-full {
  margin: -20px -15px;
  }

  .block-title {
  margin: -20px -15px 20px;
  border-bottom: 1px solid #dae0e8;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  /*background: rgba(218, 224, 232, .15);*/
  }

  /*.block-title h1,
  .block-title h2,
  .block-title h3,
  .block-title h4,
  .block-title h5,
  .block-title h6 {
  display: inline-block;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 10px 15px 9px;
  font-weight: 600;
  text-transform: none;
  }

  .block-title h1 small,
  .block-title h2 small,
  .block-title h3 small,
  .block-title h4 small,
  .block-title h5 small,
  .block-title h6 small {
  font-size: 14px;
  font-weight: 600;
  }*/

  .block-title .nav-tabs {
  padding: 0;
  margin: 0;
  border-bottom: none;
  }

  .block-title .nav-tabs > li > a {
  border: none;
  min-height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  border-radius: 0;
  }

  .block-title .nav-tabs > li > a:hover {
  background-color: #ffffff;
  }

  .block-title .nav-tabs > li.active > a,
  .block-title .nav-tabs > li.active > a:hover,
  .block-title .nav-tabs > li.active > a:focus {
  border: none;
  background-color: #dae0e8;
  }

  .block-options {
  padding: 2px 3px;
  height: 38px;
  }

  .block-options .label {
  display: inline-block;
  padding: 6px;
  vertical-align: middle;
  font-size: 14px;
  margin-top: 4px;
  }

  .block-options .dropdown-menu {
  margin-top: 3px;
  }

  .block-options .btn {
  padding-right: 8px;
  padding-left: 8px;
  min-width: 34px;
  text-align: center;

  }

  .block-options .btn:hover,
  .block-options .btn:active,
  .block-options .btn.active,
  .block-options .btn:focus {
  opacity: 1;
  }

  .block-options .btn i {
  font-size: 14px;
  }

  .block-section {
  margin-bottom: 20px;
  }

  /* Widgets */
  .widget {
  background-color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  border-radius: 2px;
  }

  .widget > .widget-content:first-child,
  .widget > .widget-image:first-child {
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
  }

  .widget > .widget-content:last-child {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  }

  a.widget,
  a.widget-content {
  display: block;
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out;
  }

  a.widget:hover,
  a.widget:focus,
  a.widget-content:hover,
  a.widget-content:focus {
  text-decoration: none;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .05);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .05);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  }

  a.widget:active,
  a.widget-content:active {
  text-decoration: none;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .02);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .02);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  }

  .widget-image {
  height: 310px;
  overflow: hidden;
  position: relative;
  }

  .widget-image > img {
  min-width: 787px;
  }

  .widget-image.widget-image-bottom img {
  position: absolute;
  left: 0;
  bottom: 0;
  }

  .widget-image.widget-image-sm {
  height: 270px;
  }

  .widget-image.widget-image-xs {
  height: 175px;
  }

  .widget-image > i {
  position: absolute;
  right: 30px;
  bottom: 30px;
  color: #ffffff;
  font-size: 70px;
  opacity: .5;
  }

  .widget-image-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px 25px;
  background: rgba(0, 0, 0, .65);
  }

  .widget-content {
  padding: 15px;
  }

  .widget-content.widget-content-mini {
  padding-top: 7px;
  padding-bottom: 7px;
  }

  .widget-content.widget-content-full {
  padding: 0;
  }

  .widget-content.widget-content-full-top-bottom {
  padding-top: 0;
  padding-bottom: 0;
  }

  .widget-content .pull-left {
  margin-right: 20px;
  }

  .widget-content .pull-right {
  margin-left: 20px;
  }

  a.widget-content {
  display: block;
  }

  a.widget-content {
  display: block;
  }

  .widget-heading {
  margin: 10px 0;
  }

  .widget-icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 60px;
  margin: 5px;
  font-size: 28px;
  text-align: center;
  border-radius: 50%;
  background: 0 0 0 10px #c4d8e9
  }

  .widget-icon.pull-left {
  margin: 5px 5px 5px 0;
  }

  .widget-icon.pull-right {
  margin: 5px 0 5px 5px;
  }

  .widget-icon .gi,
  .widget-icon .hi,
  .widget-icon .si,
  .widget-icon .fi {
  margin-top: -3px;
  }

  /* Full Background Image */
  img.full-bg {
  min-height: 100%;
  min-width: 1280px;
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  }

  img.full-bg.full-bg-bottom {
  top: auto;
  bottom: 0;
  }

  @media screen and (max-width: 1280px) {
  img.full-bg {
  left: 50%;
  margin-left: -640px;
  }
  }

  /* Content which contains floats */
  .content-float .pull-left {
  margin: 0 20px 20px 0;
  }

  .content-float .pull-right {
  margin: 0 0 20px 20px;
  }

  .content-float-hor .pull-left {
  margin-right: 20px;
  }

  .content-float-hor .pull-right {
  margin-left: 20px;
  }

  /*
  =================================================================
  (#m05pgs) PAGES
  =================================================================
  */

  /* Calendar */
  .calendar-events {
  list-style: none;
  margin: 0;
  padding: 0;
  }

  .calendar-events li {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 6px;
  padding: 10px 12px;
  border-radius: 3px;
  background-color: #555555;
  opacity: .8;
  -webkit-box-shadow: inset 2px 0 rgba(0, 0, 0, .15);
  box-shadow: inset 2px 0 rgba(0, 0, 0, .15);
  }

  .calendar-events li i {
  margin-right: 10px;
  }

  .calendar-events li:hover {
  cursor: move;
  opacity: 1;
  }

  /* Gallery */
  .gallery img, a[data-toggle="lightbox-image"] img {
  max-width: 100%;
  }

  a[data-toggle="lightbox-image"],
  a.gallery-link {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
  }

  a[data-toggle="lightbox-image"]:hover img {
  opacity: .75;
  }

  .gallery-image-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  }

  .gallery-image-options {
  padding: 30px 0;
  text-align: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background: rgba(0, 0, 0, .5);
  -webkit-transform: scale(.75);
  transform: scale(.75);
  -webkit-transition: all .25s ease-out;
  transition: all .25s ease-out;
  }

  .gallery-image-options:hover,
  .gallery-image-options:focus {
  text-decoration: none;
  }

  .gallery-image-container:hover .gallery-image-options {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  }

  /* Media Items */
  .media-items {
  position: relative;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  background: rgba(255, 255, 255, .5);
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out;
  }

  .media-items:hover {
  background: rgba(255, 255, 255, 1);
  /*-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .1);*/
  }

  .media-items:hover .media-items-options {
  display: block;
  }

  .media-items .media-items-options {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 10px;
  display: block;
  }

  .media-items .media-items-content {
  padding: 10px 0;
  }

  /* Charts */
  .pie-chart .pie-avatar {
  position: absolute;
  top: 8px;
  left: 8px;
  }

  .chart-tooltip,
  .mini-chart-tooltip {
  position: absolute;
  display: none;
  color: #ffffff;
  background: rgba(0, 0, 0, .75);
  padding: 4px 8px;
  }

  .chart-pie-label {
  font-size: 13px;
  text-align: center;
  padding: 4px 8px;
  color: #ffffff;
  }

  .mini-chart-tooltip {
  left: 0;
  top: 0;
  visibility: hidden;
  }

  .legend table td {
  padding: 3px 5px;
  font-size: 15px;
  }

  /* Error */
  #error-container {
  padding: 30px;
  position: relative;
  }

  #error-container h1 {
  font-size: 72px;
  margin-bottom: 30px;
  }

  #error-container h2 {
  margin-bottom: 50px;
  }

  /* Timeline */
  .timeline {
  position: relative;
  }

  .timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  }

  .timeline-list li {
  position: relative;
  margin: 0;
  padding: 0 0 20px;
  }

  .timeline-icon {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
  background-color: #eeeeee;
  border-radius: 3px;
  z-index: 500;
  }

  .timeline-time {
  padding: 0 80px 0 20px;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  border-bottom: 2px solid #eeeeee;
  margin-bottom: 15px;
  background-color: #f9f9f9;
  }

  .timeline-content {
  padding-left: 20px;
  }

  .block-content-full .timeline-content,
  .widget-content-full .timeline-content {
  padding-right: 20px;
  }

  /* Chat UI */
  .chatui.chatui-window.widget {
  position: fixed;
  bottom: 0;
  right: 50%;
  width: 300px;
  margin-right: -150px;
  margin-bottom: 0;
  z-index: 1028;
  }

  #page-container.header-fixed-bottom .chatui.chatui-window {
  bottom: 50px;
  }

  .chatui .chatui-action-close,
  .chatui .chatui-action-open {
  display: none;
  }

  .chatui.chatui-window .chatui-action-close,
  .chatui.chatui-window.chatui-window-close .chatui-action-open {
  display: inline;
  }

  .chatui.chatui-window.chatui-window-close .chatui-talk,
  .chatui.chatui-window.chatui-window-close .chatui-form,
  .chatui.chatui-window.chatui-window-close .chatui-action-close {
  display: none;
  }

  .chatui-talk {
  height: 250px;
  overflow-y: auto;
  }

  .chatui-talk ul {
  padding: 0;
  margin: 0;
  list-style: none;
  }

  .chatui-talk li {
  padding: 2px 0;
  margin-bottom: 5px;
  }

  .chatui-talk .chatui-talk-msg {
  min-height: 40px;
  padding: 10px 10px 10px 46px;
  background-color: #f6f6f6;
  border-radius: 25px;
  position: relative;
  margin-right: 15%;
  }

  .chatui-talk .chatui-talk-msg.chatui-talk-msg-right {
  margin-left: 15%;
  margin-right: 0;
  }

  .chatui-talk-msg .chatui-talk-msg-avatar {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 32px;
  height: 32px;
  }

  .chatui-form {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #eeeeee;
  }

  .chatui-form .form-control,
  .chatui-form .form-control:focus {
  border-radius: 0;
  border: none;
  }

  /* Tasks */
  .task-list {
  list-style: none;
  margin: 0;
  padding: 0;
  }

  .task-list li {
  position: relative;
  padding: 10px 40px 10px 15px;
  margin-bottom: 12px;
  background-color: #ffffff;
  border-radius: 3px;
  -webkit-transition: box-shadow .15s ease-out;
  transition: box-shadow .15s ease-out;
  }

  .task-list li:hover {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .05);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .05);
  }

  .task-list li.in-1x {
  margin-left: 20px;
  }

  .task-list li.in-2x {
  margin-left: 40px;
  }

  .task-list li > .task-close {
  position: absolute;
  top: 10px;
  right: 15px;
  opacity: 0;
  -webkit-transition: opacity .15s ease-out;
  transition: opacity .15s ease-out;
  }

  .task-list li:hover > .task-close {
  opacity: 1;
  }

  .task-list li.task-done {
  opacity: .5;
  }

  .task-list li.task-done > label {
  text-decoration: line-through;
  }

  .task-list li.task-done:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  }

  /*
  =================================================================
  (#m06bos) BOOTSTRAP OVERWRITE/EXTEND STYLES
  =================================================================
  */

  /* Navbar */
  .navbar.navbar-default.navbar-glass {
  background: rgba(255, 255, 255, .9);
  }

  .navbar.navbar-inverse.navbar-glass {
  background: #fff;
  }

  .navbar.navbar-default,
  .navbar.navbar-default.navbar-glass:hover {
  background: #ffffff;
  border-bottom: 1px solid #dae0e8;
  }

  .navbar.navbar-inverse,
  .navbar.navbar-inverse.navbar-glass:hover {
  /*background: #454e59;*/
  background-color: #fff;
  border-bottom: 1px solid #c8ced3;
  }

  .navbar-fixed-top,
  .navbar-fixed-bottom {
  border-width: 0;
  }

  /* Typography */
  /*h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;*/
  /*    font-weight: 300;*/
  /*}*/

  /*h1 small, h2 small, h3 small, h4 small, h5 small, h6 small,
  .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small,
  h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small,
  .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
  font-weight: 300;
  color: #879599;
  }*/

  /*h1, h2, h3 {
  margin-bottom: 15px;
  }*/

  .text-primary,
  .text-primary:hover,
  a,
  a:hover,
  a:focus,
  a.text-primary,
  a.text-primary:hover,
  a.text-primary:focus {
  color: #d76258;
  }

  .text-danger,
  .text-danger:hover,
  a.text-danger,
  a.text-danger:hover,
  a.text-danger:focus {
  color: #de815c;
  }

  .text-warning,
  .text-warning:hover,
  a.text-warning,
  a.text-warning:hover,
  a.text-warning:focus {
  color: #deb25c;
  }

  .text-success,
  .text-success:hover,
  a.text-success,
  a.text-success:hover,
  a.text-success:focus {
  color: #afde5c;
  }

  .text-info,
  .text-info:hover,
  a.text-info,
  a.text-info:hover,
  a.text-info:focus {
  color: #5cafde;
  }

  .text-muted,
  .text-muted:hover,
  a.text-muted,
  a.text-muted:hover,
  a.text-muted:focus {
  color: #999999;
  }

  .text-light,
  .text-light:hover,
  a.text-light,
  a.text-light:hover,
  a.text-light:focus {
  color: #d76258;
  }

  .text-dark,
  .text-dark:hover,
  a.text-dark,
  a.text-dark:hover,
  a.text-dark:focus {
  color: #d76258;
  }

  .text-black,
  .text-black:hover,
  a.text-black,
  a.text-black:hover,
  a.text-black:focus {
  color: #000000;
  }

  .text-light-op,
  .text-light-op:hover,
  a.text-light-op,
  a.text-light-op:hover,
  a.text-light-op:focus {
  color: rgba(255, 255, 255, .8);
  }

  .text-dark-op,
  .text-dark-op:hover,
  a.text-dark-op,
  a.text-dark-op:hover,
  a.text-dark-op:focus {
  color: rgba(0, 0, 0, .4);
  }

  b, strong {
  font-weight: 600;
  }

  ul,
  ol {
  padding-left: 30px;
  }

  p {
  line-height: 1.7;
  }

  .well {
  background-color: #f9f9f9;
  border: 1px solid #eeeeee;
  }

  .page-header {
  margin: 30px 0;
  padding: 10px 0;
  border-bottom: 1px solid #dddddd;
  }

  .sub-header {
  margin: 20px 0;
  padding: 10px 0;
  border-bottom: 1px dashed #dddddd;
  }

  .inner-sidebar-header {
  margin: 20px 0 10px;
  }

  .inner-sidebar-header .pull-right,
  .inner-sidebar-header .pull-left {
  margin-top: -2px;
  }

  blockquote {
  margin: 20px 0;
  padding: 30px 60px 30px 20px;
  position: relative;
  width: 100%;
  background-color: #f9f9f9;
  border-radius: 3px;
  }

  blockquote:before {
  display: block;
  content: "\201C";
  font-family: serif;
  font-size: 96px;
  position: absolute;
  right: 10px;
  top: -20px;
  color: #000000;
  opacity: .15;
  }

  blockquote.pull-right:before {
  left: 10px;
  right: auto;
  }

  article.article-story p {
  font-size: 18px;
  line-height: 1.8;
  }

  /* Forms */
  fieldset legend {
  font-size: 18px;
  padding: 30px 0 10px;
  border-bottom: 2px solid #ebeef2;
  }

  /*input[type="file"] {
  padding-top: 7px;
  }*/

  input[type="text"].form-control,
  input[type="password"].form-control,
  input[type="email"].form-control,
  textarea.form-control {
  -webkit-appearance: none;
  }

  .form-control {
  padding: 6px 8px;
  max-width: 100%;
  margin: 1px 0;
  color: #d76258;
  border-color: #dae0e8;
  border-radius: 3px;
  }

  input[type="text"].form-control.input-lg,
  input[type="password"].form-control.input-lg,
  input[type="email"].form-control.input-lg {
  height: 45px;
  }

  .input-group {
  margin-top: 1px;
  margin-bottom: 1px;
  }

  .input-group .form-control {
  margin-top: 0;
  }

  /*.form-control:focus {
  border-color: #d76258;
  }*/

  .help-block {
  margin-top: 8px;
  color: #999999;
  font-weight: 400;
  font-style: italic;
  }

  .input-group-addon {
  min-width: 45px;
  text-align: center;
  background-color: #ffffff !important;
  border-color: #dae0e8 !important;
  }

  .form-horizontal .control-label {
  margin-bottom: 5px;
  }

  .form-horizontal .control-label-fixed {
  padding-top: 5px;
  margin-bottom: 5px;
  }

  .form-bordered {
  margin: -15px -15px -1px;
  }

  .modal-body .form-bordered {
  margin-bottom: -20px;
  }

  .form-bordered fieldset legend {
  margin: 0;
  padding-left: 20px;
  padding-right: 20px;
  }

  .form-bordered .form-group {
  margin: 0;
  border: none;
  padding: 15px;
  border-bottom: 1px dotted #ebeef2;
  }

  .form-bordered .form-group.form-actions {
  background-color: #f9f9f9;
  border-bottom: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  }

  .form-horizontal.form-bordered .form-group {
  padding-left: 0;
  padding-right: 0;
  }

  .form-bordered .help-block {
  margin-bottom: 0;
  }

  .has-success .form-control,
  .has-warning .form-control,
  .has-error .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
  }

  .has-success .help-block,
  .has-success .control-label,
  .has-success .input-group-addon,
  .has-success .checkbox,
  .has-success .checkbox-inline,
  .has-success .radio,
  .has-success .radio-inline {
  color: #afde5c;
  }

  .has-success .form-control,
  .has-success .input-group-addon {
  border-color: #afde5c;
  background-color: #ffffff;
  }

  .has-success .form-control:focus {
  border-color: #7fb364;
  }

  .has-warning .help-block,
  .has-warning .control-label,
  .has-warning .input-group-addon,
  .has-warning .checkbox,
  .has-warning .checkbox-inline,
  .has-warning .radio,
  .has-warning .radio-inline {
  color: #deb25c;
  }

  .has-warning .form-control,
  .has-warning .input-group-addon {
  border-color: #deb25c;
  background-color: #ffffff;
  }

  .has-warning .form-control:focus {
  border-color: #e58f5a;
  }

  .has-error .help-block,
  .has-error .control-label,
  .has-error .input-group-addon,
  .has-error .checkbox,
  .has-error .checkbox-inline,
  .has-error .radio,
  .has-error .radio-inline {
  color: #de815c;
  }

  .has-error .form-control,
  .has-error .input-group-addon {
  border-color: #de815c;
  background-color: #ffffff;
  }

  .has-error .form-control:focus {
  border-color: #cc7872;
  }

  .form-control.form-control-borderless,
  .form-control.form-control-borderless:focus {
  border: none;
  }

  /* Form Select Switches */
  .switch {
  margin: 1px 0;
  position: relative;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  }

  .switch input {
  position: absolute;
  opacity: 0;
  }

  .switch span {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
  border-radius: 14px;
  background: rgba(0, 0, 0, .2);
  -webkit-transition: background-color .75s;
  transition: background-color .75s;
  }

  .switch span:after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  width: 24px;
  background-color: #ffffff;
  border-radius: 12px;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
  }

  .switch input:checked + span:after {
  left: 27px;
  width: 24px;
  top: 2px;
  bottom: 2px;
  }

  .switch input:checked + span {
  background-color: #eeeeee;
  }

  .switch-default input:checked + span {
  background-color: #dae0e8;
  }

  .switch-warning input:checked + span {
  background-color: #deb25c;
  }

  .switch-danger input:checked + span {
  background-color: #de815c;
  }

  .switch-info input:checked + span {
  background-color: #5cafde;
  }

  .switch-success input:checked + span {
  background-color: #afde5c;
  }

  .switch-primary input:checked + span {
  background-color: #d76258;
  }

  /* Form CSS Checkboxes */
  .csscheckbox {
  margin: 1px 0;
  padding: 7px 0;
  position: relative;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  }

  .csscheckbox input {
  position: absolute;
  opacity: 0;
  }

  .csscheckbox span {
  position: relative;
  display: inline-block;
  margin-top: -2px;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: rgba(250, 250, 250, .25);
  border: 1px solid #dae0e8;
  vertical-align: middle;
  }

  .csscheckbox span:hover {
  background: rgba(250, 250, 250, .75);
  }

  .csscheckbox span:after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  border-radius: 3px;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: all .15s ease-out;
  transition: all .15s ease-out;
  -webkit-transform: scale(.5);
  transform: scale(.5);
  }

  .csscheckbox input:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  }

  .csscheckbox input:checked + span:after {
  background-color: #eeeeee;
  }

  .csscheckbox-default input:checked + span:after {
  background-color: #dae0e8;
  }

  .csscheckbox-warning input:checked + span:after {
  background-color: #deb25c;
  }

  .csscheckbox-danger input:checked + span:after {
  background-color: #de815c;
  }

  .csscheckbox-info input:checked + span:after {
  background-color: #5cafde;
  }

  .csscheckbox-success input:checked + span:after {
  background-color: #afde5c;
  }

  .csscheckbox-primary input:checked + span:after {
  background-color: #d76258;
  }

  /* Tables */
  .table.table-vcenter th,
  .table.table-vcenter td {
  vertical-align: middle !important;
  }

  .table thead > tr > th {
  font-size: 15px;
  font-weight: 600;
  }

  .table thead > tr > th > small {
  font-weight: 400;
  font-size: 75%;
  }

  .table thead > tr > th,
  .table thead > tr > td,
  .table tfoot > tr > th,
  .table tfoot > tr > td {
  padding-top: 8px;
  padding-bottom: 8px;
  }

  .table tbody > tr > th,
  .table tbody > tr > td {
  padding-top: 3px;
  padding-bottom:3px;
  }

  .table.table-condensed tbody > tr > th,
  .table.table-condensed tbody > tr > td {
  padding-top: 3px;
  padding-bottom: 3px;
  }

  .table tfoot > tr > th,
  .table tfoot > tr > td {
  background-color: #f9f9f9;
  }

  .table-borderless tbody > tr > th,
  .table-borderless tbody > tr > td {
  border-top-width: 0;
  }

  .table thead > tr > th,
  .table tbody > tr > th,
  .table tfoot > tr > th,
  .table thead > tr > td,
  .table tbody > tr > td,
  .table tfoot > tr > td,
  .table tbody + tbody,
  .table-bordered,
  .table-bordered > thead > tr > th,
  .table-bordered > tbody > tr > th,
  .table-bordered > tfoot > tr > th,
  .table-bordered > thead > tr > td,
  .table-bordered > tbody > tr > td,
  .table-bordered > tfoot > tr > td {
  padding: 8px 18px !important;
  border-color: #ebeef2;
  /*vertical-align: middle !important;*/
  }

  .table-hover > tbody > tr:hover > td,
  .table-hover > tbody > tr:hover > th {
  background-color: #ebeef2;
  }

  .td-label {
  border-left-width: 3px;
  border-left-style: solid;
  }

  .td-label-danger {
  border-left-color: #de815c !important;
  }

  .td-label-warning {
  border-left-color: #deb25c !important;
  }

  .td-label-info {
  border-left-color: #5cafde !important;
  }

  .td-label-success {
  border-left-color: #afde5c !important;
  }

  .td-label-muted {
  border-left-color: #cccccc !important;
  }

  .table.table-pricing {
  background-color: #ffffff;
  text-align: center;
  border: 2px solid #ffffff;
  -webkit-transition: all .15s ease-out;
  transition: all .15s ease-out;
  }

  .table.table-pricing.table-featured,
  .table.table-pricing:hover {
  border-color: #d76258;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .2);
  box-shadow: 0 0 20px rgba(0, 0, 0, .2);
  }

  .table.table-pricing.table-pricing-nohover:hover {
  border-color: #ffffff;
  -webkit-box-shadow: none;
  box-shadow: none;
  }

  .table.table-pricing th {
  text-align: center;
  background-color: #d76258;
  border-bottom: none;
  color: #ffffff;
  padding-top: 15px;
  padding-bottom: 15px;
  }

  .table.table-pricing td {
  padding-top: 12px;
  padding-bottom: 12px;
  }

  /* List Group */
  .list-group-item {
  border-color: #ebeef2;
  }

  a.list-group-item.active,
  a.list-group-item.active:hover,
  a.list-group-item.active:focus {
  background-color: #d76258;
  border-color: #d76258;
  }

  a.list-group-item.active .list-group-item-text,
  a.list-group-item.active:hover .list-group-item-text,
  a.list-group-item.active:focus .list-group-item-text {
  color: #ffffff;
  }

  a.list-group-item:hover,
  a.list-group-item:focus {
  background-color: #f9f9f9;
  }

  a.list-group-item.active > .badge {
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  }

  /* Navs */
  .nav-pills > li > a {
  color: #d76258;
  border-radius: 3px;
  }

  .nav-pills i.icon-push {
  margin-right: 8px;
  }

  .nav-pills > li.active > a,
  .nav-pills > li.active > a:hover,
  .nav-pills > li.active > a:focus,
  .dropdown-menu > li > a:hover,
  .dropdown-menu > li > a:focus,
  .dropdown-menu > .active > a,
  .dropdown-menu > .active > a:hover,
  .dropdown-menu > .active > a:focus,
  .nav .open > a,
  .nav .open > a:hover,
  .nav .open > a:focus {
  color: #ffffff;
  background-color: #d76258;
  }

  .nav > li i {
  font-size: 14px;
  }

  .nav-pills > .active > a > .badge {
  color: #d76258;
  }

  .nav-pills.nav-icons > li.active > a i,
  .nav-pills.nav-icons > li.active > a:hover i,
  .nav-pills.nav-icons > li.active > a:focus i {
  color: #ffffff;
  }

  .nav-stacked > li > a {
  margin: 4px 0 0;
  }

  .nav .caret,
  .nav a:hover .caret,
  .nav a:focus .caret {
  border-top-color:#d76258;
  border-bottom-color:#d76258;
  }

  .nav > li > a:hover,
  .nav > li > a:focus {
  background-color: #f9f9f9;
  }

  .nav-tabs {
  border-bottom-color: #ebeef2;
  }

  .nav-tabs > li {
  margin-bottom: 0;
  }

  .nav-tabs > li > a {
  padding-left: 7px;
  padding-right: 7px;
  margin-bottom: -1px;
  font-weight: 500;
  color: #d76258;
  }

  .nav-tabs > li > a:hover {
  border-color: #ebeef2;
  }

  .nav-tabs > li.active > a,
  .nav-tabs > li.active > a:hover,
  .nav-tabs > li.active > a:focus {
  color: #d76258;
  border-color: #ebeef2;
  border-bottom-color: transparent;
  }

  .nav-pills > li.active > a > .badge {
  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  }

  .nav-users {
  list-style: none;
  margin: 0;
  padding-left: 5px;
  }

  .nav-users-online,
  .nav-users-away,
  .nav-users-offline {
  border-left-width: 2px;
  border-left-style: solid;
  }

  .nav-users-online {
  border-left-color: #afde5c;
  }

  .nav-users-away {
  border-left-color: #deb25c;
  }

  .nav-users-offline {
  border-left-color: #de815c;
  }

  .nav-users-offline a {
  opacity: .5;
  }

  .nav-users a {
  display: block;
  min-height: 56px;
  padding: 8px 10px 8px 60px;
  position: relative;
  color: #d76258;
  border-radius: 3px;
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out;
  }

  .nav-users a:hover,
  .nav-users a:focus {
  text-decoration: none;
  opacity: 1;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .05);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .05);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  }

  .nav-users a:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .02);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .02);
  }

  .nav-users-avatar {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 0, 0, .2);
  border-radius: 50%;
  }

  .nav-users-indicator {
  position: absolute;
  top: 5px;
  left: 5px;
  }

  .nav-users-heading {
  display: block;
  margin-top: 2px;
  font-weight: 600;
  }

  .dropdown-menu {
  min-width: 180px;
  padding: 0;
  font-size: 14px;
  border-color: #dae0e8;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  display: block;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  }

  .dropdown-menu.dropdown-menu-right {
  -webkit-transform-origin: top right;
  transform-origin: top right;
  }

  .dropup .dropdown-menu {
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  }

  .dropup .dropdown-menu.dropdown-menu-right {
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  }

  .open > .dropdown-menu,
  .dropdown-menu.open {
  -webkit-transform: scale(1);
  transform: scale(1);
  }

  .lt-ie10 .dropdown-menu {
  display: none;
  }

  .lt-ie10 .open > .dropdown-menu,
  .lt-ie10 .dropdown-menu.open {
  display: block;
  }

  .dropdown-menu > li > a {
  padding: 8px 10px;
  }

  .dropdown-menu i {
  opacity: 0.2;
  line-height: 17px;
  }

  .dropdown-menu a:hover i {
  opacity: 0.5;
  }

  .dropdown-menu .divider {
  margin: 3px 0;
  padding: 0 !important;
  background-color: #f0f0f0;
  }

  li.dropdown-header {
  padding: 8px 10px;
  color: #d76258;
  background-color: #ebeef2;
  }

  .dropdown-submenu {
  position: relative;
  }

  .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -3px;
  margin-left: 0;
  }

  .dropdown-submenu:hover > .dropdown-menu {
  display: block;
  }

  .dropdown-submenu.pull-left {
  float: none;
  }

  .dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  }

  .collapse.in .dropdown.open .dropdown-menu {
  display: block;
  position: static;
  margin: 0 0 0 15px;
  left: auto;
  top: auto;
  }

  .pagination > li > a,
  .pagination > li > span  {
  font-weight: 500;
  color: #d76258;
  margin-left: 5px;
  margin-right: 5px;
  border: none !important;
  border-radius: 3px !important;
  background: transparent;
  }

  .pagination > .active > a,
  .pagination > .active > span,
  .pagination > .active > a:hover,
  .pagination > .active > span:hover,
  .pagination > .active > a:focus,
  .pagination > .active > span:focus {
  background-color: #d76258 !important;
  }

  .pagination > .disabled >span,
  .pagination > .disabled > span:hover,
  .pagination > .disabled > span:focus,
  .pagination > .disabled > a,
  .pagination > .disabled > a:hover,
  .pagination > .disabled > a:focus {
  background: transparent;
  }

  .pager > li > a,
  .pager > li > span {
  border-color: #ebeef2;
  }

  .pager > li > a:hover,
  .pagination > li > a:hover {
  background-color: #d76258;
  border-color: #d76258;
  color: #ffffff;
  }

  .pager > li.disabled > a:hover {
  border-color: #ebeef2;
  }

  /* Popover */
  .popover {
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
  }

  .popover-title {
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  padding-top: 7px;
  padding-bottom: 2px;
  }

  /* Tooltip */
  .tooltip {
  z-index: 1051;
  }

  .tooltip.in {
  opacity: 1;
  }

  .tooltip-inner {
  padding: 4px 6px;
  background-color: #000000;
  color: #ffffff;
  }

  .tooltip.top .tooltip-arrow,
  .tooltip.top-left .tooltip-arrow,
  .tooltip.top-right .tooltip-arrow {
  border-top-color: #000000;
  }

  .tooltip.right .tooltip-arrow {
  border-right-color: #000000;
  }

  .tooltip.left .tooltip-arrow {
  border-left-color: #000000;
  }

  .tooltip.bottom .tooltip-arrow,
  .tooltip.bottom-left .tooltip-arrow,
  .tooltip.bottom-right .tooltip-arrow {
  border-bottom-color: #000000;
  }

  /* Breadcrumps */
  .breadcrumb {
  background-color: transparent;
  }

  .breadcrumb i {
  font-size: 14px;
  }

  .breadcrumb-top {
  font-size: 15px;
  text-align: right;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 7px;
  }

  /* Progress Bars */
  .progress {
  background: rgba(0, 0, 0, .1);
  }

  .progress,
  .progress-bar {
  height: 18px;
  line-height: 18px;
  font-weight: 600;
  }

  .progress.progress-mini,
  .progress-bar.progress-mini,
  .progress-mini .progress-bar {
  height: 7px;
  line-height: 7px;
  }

  .progress-bar-danger {
  background-color: #de815c;
  }

  .progress-bar-warning {
  background-color: #deb25c;
  }

  .progress-bar-success {
  background-color: #afde5c;
  }

  .progress-bar-info {
  background-color: #5cafde;
  }

  .progress-bar-primary {
  background-color: #d76258;
  }

  /* Modals */
  .modal-content {
  border: none;
  }

  .modal-header,
  .modal-header-tabs {
  padding: 17px 15px 15px;
  border-bottom: none;
  background-color: #f9f9f9;
  }

  .modal-header-tabs .nav-tabs {
  margin: 0 -15px -15px;
  }

  .modal-title {
  font-weight: 300;
  }

  .modal-body {
  padding: 20px 15px;
  }

  .modal-footer {
  margin-top: 0;
  padding: 9px 15px 10px;
  border-top: none;
  background-color: #f9f9f9;
  }

  .modal.fade .modal-dialog {
  opacity: 0;
  -webkit-transition: all .45s ease-out;
  transition: all .45s ease-out;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(.6);
  transform: scale(.6);
  }

  .modal.in .modal-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  }

  .modal-backdrop.in {
  opacity: .75;
  }

  /* Buttons */
  .btn {
  margin: 1px 0;
  background-color: #d76258 !important;
  border-color: #d76258 !important;
  border-radius: 3px;
  }

  .btn.btn-rounded {
  border-radius: 20px;
  }

  .btn.btn-square {
  border-radius: 0;
  }

  .btn-ripple {
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, .5);
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  }

  .btn-ripple.animate {
  -webkit-animation: ripple 1s ease-out;
  animation: ripple 1s ease-out;
  }

  .btn .gi,
  .btn .hi,
  .btn .si,
  .btn .fi {
  line-height: 1;
  }

  .btn.disabled,
  .btn[disabled],
  fieldset[disabled] .btn {
  opacity: .4;
  }

  .block-options .btn,
  .input-group .btn,
  .modal-content .btn {
  margin-top: 0;
  margin-bottom: 0;
  }

  .btn-default {
  background-color: #eeeeee;
  border-color: #eeeeee;
  }
  .btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
  outline: none;
  outline-offset: -2px;
  }

  .btn-default:hover,
  .btn-default:focus,
  .btn-default.focus,
  .btn-default:active,
  .btn-default:active:hover,
  .btn-default:active:focus,
  .btn-default.active,
  .btn-default.active:hover,
  .btn-default.active:focus,
  .open .btn-default.dropdown-toggle,
  .open .btn-default.dropdown-toggle:hover,
  .open .btn-default.dropdown-toggle:focus,
  .open .btn-default.dropdown-toggle.focus {
  background-color: #dddddd;
  border-color: #dddddd;
  }

  .btn-default.disabled,
  .btn-default.disabled:hover,
  .btn-default.disabled:focus,
  .btn-default.disabled:active,
  .btn-default.disabled.active,
  .btn-default[disabled]:hover,
  .btn-default[disabled]:focus,
  .btn-default[disabled].focus,
  .btn-default[disabled]:active,
  .btn-default[disabled].active,
  .btn-default[disabled]:active:focus,
  .btn-default[disabled].active:focus,
  fieldset[disabled] .btn-default:hover,
  fieldset[disabled] .btn-default:focus,
  fieldset[disabled] .btn-default.focus,
  fieldset[disabled] .btn-default:active,
  fieldset[disabled] .btn-default.active,
  fieldset[disabled] .btn-default:active:focus,
  fieldset[disabled] .btn-default.active:focus {
  background-color: #eeeeee;
  border-color: #eeeeee;
  }

  .btn-primary {
  background-color:#d76258;
  border-color:#d76258;
  }

  .btn-primary:hover,
  .btn-primary:focus,
  .btn-primary.focus,
  .btn-primary:active,
  .btn-primary:active:hover,
  .btn-primary:active:focus,
  .btn-primary.active,
  .btn-primary.active:hover,
  .btn-primary.active:focus,
  .open .btn-primary.dropdown-toggle,
  .open .btn-primary.dropdown-toggle:hover,
  .open .btn-primary.dropdown-toggle:focus,
  .open .btn-primary.dropdown-toggle.focus {
  background-color: #5645EE; /*change-color*/
  border-color: transparent;
  color: #ffffff !important;
  }

  .btn-primary.disabled,
  .btn-primary.disabled:hover,
  .btn-primary.disabled:focus,
  .btn-primary.disabled:active,
  .btn-primary.disabled.active,
  .btn-primary[disabled]:hover,
  .btn-primary[disabled]:focus,
  .btn-primary[disabled].focus,
  .btn-primary[disabled]:active,
  .btn-primary[disabled].active,
  .btn-primary[disabled]:active:focus,
  .btn-primary[disabled].active:focus,
  fieldset[disabled] .btn-primary:hover,
  fieldset[disabled] .btn-primary:focus,
  fieldset[disabled] .btn-primary.focus,
  fieldset[disabled] .btn-primary:active,
  fieldset[disabled] .btn-primary.active,
  fieldset[disabled] .btn-primary:active:focus,
  fieldset[disabled] .btn-primary.active:focus {
  background-color:#d76258;
  border-color:#d76258;
  }

  .btn-danger {
  background-color: #de815c;
  border-color: #de815c;
  }

  .btn-danger:hover,
  .btn-danger:focus,
  .btn-danger.focus,
  .btn-danger:active,
  .btn-danger:active:hover,
  .btn-danger:active:focus,
  .btn-danger.active,
  .btn-danger.active:hover,
  .btn-danger.active:focus,
  .open .btn-danger.dropdown-toggle,
  .open .btn-danger.dropdown-toggle:hover,
  .open .btn-danger.dropdown-toggle:focus,
  .open .btn-danger.dropdown-toggle.focus {
  background-color: #c43902;
  border-color: #c43902;
  color: #ffffff !important;
  }

  .btn-danger.disabled,
  .btn-danger.disabled:hover,
  .btn-danger.disabled:focus,
  .btn-danger.disabled:active,
  .btn-danger.disabled.active,
  .btn-danger[disabled]:hover,
  .btn-danger[disabled]:focus,
  .btn-danger[disabled].focus,
  .btn-danger[disabled]:active,
  .btn-danger[disabled].active,
  .btn-danger[disabled]:active:focus,
  .btn-danger[disabled].active:focus,
  fieldset[disabled] .btn-danger:hover,
  fieldset[disabled] .btn-danger:focus,
  fieldset[disabled] .btn-danger.focus,
  fieldset[disabled] .btn-danger:active,
  fieldset[disabled] .btn-danger.active,
  fieldset[disabled] .btn-danger:active:focus,
  fieldset[disabled] .btn-danger.active:focus {
  background-color: #de815c;
  border-color: #de815c;
  }

  .btn-warning {
  background-color: #deb25c;
  border-color: #deb25c;
  }

  .btn-warning:hover,
  .btn-warning:focus,
  .btn-warning.focus,
  .btn-warning:active,
  .btn-warning:active:hover,
  .btn-warning:active:focus,
  .btn-warning.active,
  .btn-warning.active:hover,
  .btn-warning.active:focus,
  .open .btn-warning.dropdown-toggle,
  .open .btn-warning.dropdown-toggle:hover,
  .open .btn-warning.dropdown-toggle:focus,
  .open .btn-warning.dropdown-toggle.focus {
  background-color: #de9502;
  border-color: #de9502;
  color: #ffffff !important;
  }

  .btn-warning.disabled,
  .btn-warning.disabled:hover,
  .btn-warning.disabled:focus,
  .btn-warning.disabled:active,
  .btn-warning.disabled.active,
  .btn-warning[disabled]:hover,
  .btn-warning[disabled]:focus,
  .btn-warning[disabled].focus,
  .btn-warning[disabled]:active,
  .btn-warning[disabled].active,
  .btn-warning[disabled]:active:focus,
  .btn-warning[disabled].active:focus,
  fieldset[disabled] .btn-warning:hover,
  fieldset[disabled] .btn-warning:focus,
  fieldset[disabled] .btn-warning.focus,
  fieldset[disabled] .btn-warning:active,
  fieldset[disabled] .btn-warning.active,
  fieldset[disabled] .btn-warning:active:focus,
  fieldset[disabled] .btn-warning.active:focus {
  background-color: #c48402;
  border-color: #c48402;
  }

  .btn-success {
  background-color: #afde5c !important;
  border-color: #afde5c !important;
  }

  .btn-success:hover,
  .btn-success:focus,
  .btn-success.focus,
  .btn-success:active,
  .btn-success:active:hover,
  .btn-success:active:focus,
  .btn-success.active,
  .btn-success.active:hover,
  .btn-success.active:focus,
  .open .btn-success.dropdown-toggle,
  .open .btn-success.dropdown-toggle:hover,
  .open .btn-success.dropdown-toggle:focus,
  .open .btn-success.dropdown-toggle.focus {
  background-color: #7dc402;
  border-color: #7dc402;
  color: #ffffff !important;
  }

  .btn-success.disabled,
  .btn-success.disabled:hover,
  .btn-success.disabled:focus,
  .btn-success.disabled:active,
  .btn-success.disabled.active,
  .btn-success[disabled]:hover,
  .btn-success[disabled]:focus,
  .btn-success[disabled].focus,
  .btn-success[disabled]:active,
  .btn-success[disabled].active,
  .btn-success[disabled]:active:focus,
  .btn-success[disabled].active:focus,
  fieldset[disabled] .btn-success:hover,
  fieldset[disabled] .btn-success:focus,
  fieldset[disabled] .btn-success.focus,
  fieldset[disabled] .btn-success:active,
  fieldset[disabled] .btn-success.active,
  fieldset[disabled] .btn-success:active:focus,
  fieldset[disabled] .btn-success.active:focus {
  background-color: #afde5c;
  border-color: #afde5c;
  }

  .btn-info {
  background-color: #5cafde;
  border-color: #5cafde;
  }

  .btn-info:hover,
  .btn-info:focus,
  .btn-info.focus,
  .btn-info:active,
  .btn-info:active:hover,
  .btn-info:active:focus,
  .btn-info.active,
  .btn-info.active:hover,
  .btn-info.active:focus,
  .open .btn-info.dropdown-toggle,
  .open .btn-info.dropdown-toggle:hover,
  .open .btn-info.dropdown-toggle:focus,
  .open .btn-info.dropdown-toggle.focus {
  background-color: #027dc4;
  border-color: #027dc4;
  color: #ffffff !important;
  }

  .btn-info.disabled,
  .btn-info.disabled:hover,
  .btn-info.disabled:focus,
  .btn-info.disabled:active,
  .btn-info.disabled.active,
  .btn-info[disabled]:hover,
  .btn-info[disabled]:focus,
  .btn-info[disabled].focus,
  .btn-info[disabled]:active,
  .btn-info[disabled].active,
  .btn-info[disabled]:active:focus,
  .btn-info[disabled].active:focus,
  fieldset[disabled] .btn-info:hover,
  fieldset[disabled] .btn-info:focus,
  fieldset[disabled] .btn-info.focus,
  fieldset[disabled] .btn-info:active,
  fieldset[disabled] .btn-info.active,
  fieldset[disabled] .btn-info:active:focus,
  fieldset[disabled] .btn-info.active:focus {
  background-color: #5cafde;
  border-color: #5cafde;
  }

  .btn-link,
  .btn-link:hover,
  .btn-link:focus {
  color:#d76258;
  }

  /* Panels */
  .panel {
  margin-bottom: 20px;
  }

  .panel-heading {
  padding: 15px;
  }

  .panel-title {
  font-size: 14px;
  }

  .panel-default > .panel-heading {
  background-color: #f9f9f9;
  }

  .panel-group {
  margin-bottom: 20px;
  }

  /* Pre, Code */
  pre {
  background: #151515;
  overflow: scroll;
  }

  code {
  border: 1px solid #fad4df;
  margin: 1px 0;
  display: inline-block;
  }

  .btn code {
  display: inline;
  margin: 0;
  }

  /* Alerts */
  .alert {
  /* color: #ffffff;*/
  border-width: 0;
  border-radius: 3px;
  }

  .alert .alert-link {
  color: #000000;
  opacity: .4;
  }

  .alert-danger {
  /* background-color: #de815c;*/
  }

  .alert-warning {
  background-color: #deb25c;
  }

  .alert-success {
  /*background-color: #afde5c;*/
  }

  .alert-info {
  background-color: #5cafde;
  }

  .alert-dismissable .close {
  top: -8px;
  right: -26px;
  color: #000000;
  }

  .close {
  opacity: .25;
  text-shadow: none;
  }

  .close:hover,
  .close:focus {
  opacity: .5;
  }

  /* Labels, Badges */
  .label,
  .badge {
  font-weight: normal;
  font-size: 90%;
  }

  .label {
  padding: 1px 4px;
  }

  .badge {
  background: rgba(0, 0, 0, .3);
  padding: 3px 6px;
  }

  .label-danger,
  .label-danger[href]:hover,
  .label-danger[href]:focus {
  background-color: #de815c;
  }

  .label-warning,
  .label-warning[href]:hover,
  .label-warning[href]:focus {
  background-color: #deb25c;
  }

  .label-success,
  .label-success[href]:hover,
  .label-success[href]:focus {
  background-color: #afde5c;
  }

  .label-info,
  .label-info[href]:hover,
  .label-info[href]:focus {
  background-color: #5cafde;
  }

  .label-primary,
  .label-primary[href]:hover,
  .label-primary[href]:focus {
  background-color:#d76258;
  }

  .label-default,
  .label-default[href]:hover,
  .label-default[href]:focus {
  background-color: #999999;
  }

  .label-danger[href]:hover,
  .label-danger[href]:focus,
  .label-warning[href]:hover,
  .label-warning[href]:focus,
  .label-success[href]:hover,
  .label-success[href]:focus,
  .label-info[href]:hover,
  .label-info[href]:focus,
  .label-primary[href]:hover,
  .label-primary[href]:focus,
  .label-default[href]:hover,
  .label-default[href]:focus {
  opacity: .75;
  }

  /* Carousel */
  .carousel-control {
  max-width: 50px;
  }

  .carousel-control.left,
  .carousel-control.right {
  background: none;
  opacity: 0;
  filter: none;
  }

  .carousel:hover .carousel-control.left,
  .carousel:hover .carousel-control.right {
  opacity: 1;
  }

  .carousel-control.left:hover,
  .carousel-control.right:hover {
  background: rgba(0, 0, 0, .2);
  }

  .carousel-control span {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: inline-block;
  }

  .carousel-control i {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  }

  .carousel-indicators,
  .carousel-caption {
  bottom: 5px;
  }

  .carousel-caption {
  text-shadow: 0 5px 15px #000000;
  }

  /* Thumbnail */
  .img-thumbnail-transparent {
  background-color: rgba(255, 255, 255, .25);
  border-color: transparent;
  }

  .img-thumbnail-avatar {
  width: 69px !important;
  height: 69px !important;
  }

  .img-thumbnail-avatar-2x {
  width: 133px !important;
  height: 133px !important;
  }

  /* Bottom Margin */
  p, .table, .alert, .carousel {
  margin-bottom: 20px;
  }

  /* Removing shadows and radius */
  .navbar-form,
  .navbar-collapse,
  .form-control,
  .form-control:focus,
  .has-success .form-control:focus,
  .has-warning .form-control:focus,
  .has-error .form-control:focus,
  .progress,
  .progress-bar,
  .panel,
  .modal-content {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: inherit;
  }
  .form-control:focus, .form-control:active {
  background: transparent;
  }

  input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: inherit !important;
  }
  .navbar,
  .dropdown-menu,
  .tooltip-inner,
  .breadcrumb,
  .modal-content,
  .panel-group .panel {
  border-radius: 0;
  }

  /*
  =================================================================
  (#m07hes) HELPERS
  =================================================================
  */


  .border-top {
  border-top: 1px solid #eeeeee;
  }

  .border-right {
  border-right: 1px solid #eeeeee;
  }

  .border-bottom {
  border-bottom: 1px solid #eeeeee;
  }

  .border-left {
  border-left: 1px solid #eeeeee;
  }

  .push {
  margin-bottom: 15px !important;
  }

  .push-top {
  margin-top: 15px !important;
  }

  .push-top-bottom {
  margin-top: 40px;
  margin-bottom: 40px;
  }

  .push-bit {
  margin-bottom: 10px !important;
  }

  .push-bit-top {
  margin-top: 10px !important;
  }

  .push-bit-top-bottom {
  margin-top: 10px;
  margin-bottom: 10px;
  }

  .push-right {
  margin-right: 15px;
  }

  .push-left {
  margin-left: 15px;
  }

  .push-right-left {
  margin-left: 10px;
  margin-right: 10px;
  }

  .push-inner-top-bottom {
  padding-top: 15px;
  padding-bottom: 15px;
  }

  .overflow-hidden {
  overflow: hidden;
  }

  .display-none {
  display: none;
  }

  .remove-margin {
  margin: 0 !important;
  }

  .remove-margin-bottom {
  margin-bottom: 0 !important;
  }

  .remove-padding {
  padding: 0 !important;
  }

  .remove-radius {
  border-radius: 0 !important;
  }

  .remove-radius-top {
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
  }

  .remove-radius-bottom {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  }

  .lt-ie10 .hidden-lt-ie10 {
  display: none !important;
  }

  .visible-lt-ie10 {
  display: none;
  }

  .lt-ie10 .visible-lt-ie10 {
  display: block;
  }

  .placeholder {
  color: #999;
  }

  /*:focus {
  outline: 0 !important;
  }*/

  /*
  =================================================================
  (#m08ths) THEMES
  =================================================================
  */

  /* Default Color Theme specific colors */
  .themed-color {
  color: #d76258 !important;
  }

  .themed-background {
  background-color: #fff !important;
  border-bottom: 1px solid #c8ced3;
  }

  .themed-color-dark {
  color: #d76258 !important;
  }

  .themed-background-dark {
  background-color: #d76258 !important;
  }

  /* Contextual Background Colors */
  .themed-background-danger {
  background-color: #de815c !important;
  }

  .themed-background-warning {
  background-color: #deb25c !important;
  }

  .themed-background-info {
  background-color: #5cafde !important;
  }

  .themed-background-success {
  background-color: #afde5c !important;
  }

  .themed-background-muted {
  background-color: #f9f9f9 !important;
  }

  /*
  =================================================================
  (#m09res) RESPONSIVE
  =================================================================
  */

  /* Small devices, Tablets (>767px) */
  @media screen and (min-width: 768px) {

  /* General */

  /* #login-container {
  width: 380px;
  top: 120px;
  margin-left: -190px;
  }*/

  #page-content {
  padding: 20px 20px 1px;
  }

  #page-container.header-fixed-top #page-content {
  padding-top: 67px;
  }

  #page-container.header-fixed-bottom #page-content {
  padding-bottom: 70px;
  }

  #page-content.inner-sidebar-left,
  #page-content.inner-sidebar-right {
  position: relative;
  }

  #page-content.inner-sidebar-left {
  padding-left: 240px;
  }

  #page-content.inner-sidebar-right {
  padding-right: 240px;
  }

  #page-content-sidebar {
  margin: 0;
  width: 220px;
  position: absolute;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  border-bottom: none;
  }

  #page-content.inner-sidebar-left #page-content-sidebar {
  left: 0;
  border-right: 1px solid #dae0e8;
  }

  #page-container.sidebar-light #page-content.inner-sidebar-left #page-content-sidebar {
  border-left: 1px solid #dae0e8;
  }

  #page-content.inner-sidebar-right #page-content-sidebar {
  right: 0;
  border-left: 1px solid #dae0e8;
  }

  #page-container.header-fixed-top #page-content-sidebar {
  top: 50px;
  }

  #page-container.header-fixed-bottom #page-content-sidebar {
  bottom: 50px;
  }

  .content-header,
  .content-header-media .header-section,
  .block,
  .block.full,
  .modal-body {
  padding-left: 20px;
  padding-right: 20px;
  }

  /* .block .block-content-full {
  margin: -20px -20px -1px;
  }

  .block.full .block-content-full {
  margin: -20px;
  }*/

  .content-header {
  margin: -20px -20px 20px;
  }

  /* .block,
  .widget {
  margin-bottom: 20px;
  }*/

  .block-title {
  margin-left: -20px;
  margin-right: -20px;
  }

  /* Forms */
  .form-bordered {
  margin-left: -20px;
  margin-right: -20px;
  }

  .form-bordered .form-group {
  padding-left: 20px;
  padding-right: 20px;
  }

  .form-horizontal.form-bordered .form-group {
  padding-left: 5px;
  padding-right: 5px;
  }

  /* Tabs */
  .nav-tabs > li > a {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: 3px;
  margin-right: 3px;
  }

  /* Modal */
  .modal-dialog {
  margin: 60px auto;
  }

  .modal-header,
  .modal-footer {
  padding-left: 20px;
  padding-right: 20px;
  }

  .modal-header .nav-tabs {
  margin-left: -20px;
  margin-right: -20px;
  }

  /* Error Page */
  #error-container h1 {
  font-size: 96px;
  margin: 50px 0 70px;
  }

  /* Timeline */
  .timeline-list li {
  padding: 20px 0;
  }

  .timeline-list:after {
  position: absolute;
  display: block;
  width: 4px;
  top: 0;
  left: 134px;
  bottom: 0;
  content: "";
  background-color: #f9f9f9;
  z-index: 1;
  }

  .timeline-icon {
  left: 115px;
  right: auto;
  }

  .timeline-time {
  float: left;
  padding: 0;
  text-align: right;
  width: 100px;
  height: 40px;
  line-height: 40px;
  border-bottom: none;
  margin-bottom: 0;
  background-color: transparent;
  }

  .timeline-content {
  padding-left: 166px;
  }
  }

  /* Medium devices, Desktops (>991px) */
  @media screen and (min-width: 992px) {

  /* Alternative Sidebar */
  #page-container.sidebar-alt-visible-xs #sidebar-alt {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  right: -220px;
  }

  #page-container.sidebar-alt-visible-lg #sidebar-alt {
  -webkit-transform: translateX(-220px);
  transform: translateX(-220px);
  }

  #page-container.sidebar-alt-visible-xs #sidebar-alt-close {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  right: -30px;
  opacity: 0;
  }

  #page-container.sidebar-alt-visible-lg #sidebar-alt-close {
  -webkit-transform: translateX(-250px);
  transform: translateX(-250px);
  opacity: 1;
  }

  /* Sidebar Reset Small Screens Classes */
  #page-container.sidebar-visible-xs #sidebar {
  width: 0;
  }

  #page-container.sidebar-visible-xs #sidebar,
  #page-container.sidebar-visible-xs #main-container {
  -webkit-transform: none;
  transform: none;
  }

  /* Layout Transitions */
  #sidebar {
  -webkit-transition: background-color .2s ease-out;
  transition: background-color .2s ease-out;
  }

  #main-container {
  -webkit-transition: none;
  transition: none;
  }

  header.navbar.navbar-fixed-top,
  header.navbar.navbar-fixed-bottom {
  -webkit-transition: background .2s ease-out;
  transition: background .2s ease-out;
  }

  #page-container.sidebar-visible-lg-mini #sidebar-toggle-full,
  #page-container.sidebar-visible-lg-full #sidebar-toggle-mini {
  display: inline-block;
  }

  #page-container.sidebar-visible-lg-mini #sidebar-toggle-mini,
  #page-container.sidebar-visible-lg-full #sidebar-toggle-full {
  display: none;
  }

  /* Sidebar + Static Layout */
  #sidebar {
  width: 0;
  left: 0;
  }

  #main-container {
  margin-left: 0;
  margin-right: 0;
  }

  #page-container.sidebar-visible-lg-mini #sidebar {
  width: 80px;
  }

  #page-container.sidebar-visible-lg-mini #main-container {
  margin-left: 80px;
  }

  #page-container.sidebar-visible-lg-full #sidebar {
  width: 270px;
  }

  #page-container.sidebar-visible-lg-full #main-container {
  margin-left: 270px;
  }

  /* Sidebar + Fixed Layout */
  #page-container.header-fixed-top #sidebar,
  #page-container.header-fixed-bottom #sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  }

  #page-container.header-fixed-top #sidebar-brand,
  #page-container.header-fixed-bottom #sidebar-brand {
  display: block;
  }

  #page-container.sidebar-visible-lg-mini header.navbar-fixed-top,
  #page-container.sidebar-visible-lg-mini header.navbar-fixed-bottom {
  left: 80px;
  }

  #page-container.sidebar-visible-lg-full header.navbar-fixed-top,
  #page-container.sidebar-visible-lg-full header.navbar-fixed-bottom {
  left: 270px;
  }

  /* Sidebar Condensed Menu */
  #page-container.sidebar-visible-lg-mini #sidebar {
  overflow: visible;
  }

  #page-container.sidebar-visible-lg-mini #sidebar .sidebar-content {
  width: 80px;
  }

  #page-container.sidebar-visible-lg-mini #sidebar .sidebar-nav-mini-hide {
  display: none;
  }

  #page-container.sidebar-visible-lg-mini #sidebar .sidebar-nav li {
  position: relative;
  }

  #page-container.sidebar-visible-lg-mini #sidebar .sidebar-nav .sidebar-nav-menu + ul {
  position: absolute;
  width: 220px;
  top: 0;
  right: -220px;
  margin: 0;
  padding: 6px 5px;
  background-color: #363e46;
  }

  #page-container.sidebar-visible-lg-mini.sidebar-light #sidebar .sidebar-nav .sidebar-nav-menu + ul {
  background-color: #e6e6e6;
  }

  #page-container.sidebar-visible-lg-mini #sidebar .sidebar-nav ul a {
  margin: 0;
  padding-left: 10px;
  border-left: none;
  }

  #page-container.sidebar-visible-lg-mini #sidebar .sidebar-nav ul ul {
  margin-left: 0;
  }

  #page-container.sidebar-visible-lg-mini #sidebar .sidebar-nav > li.active > ul {
  display: none;
  }

  #page-container.sidebar-visible-lg-mini #sidebar .sidebar-nav .sidebar-nav-menu.open + ul {
  display: block !important;
  }

  /* Navbar Nav Search */
  .navbar-form-custom {
  width: 300px;
  }

  /* Chat */
  .chatui.chatui-window.widget {
  right: 70px;
  margin-right: 0;
  }
  }

  /*
  =================================================================
  (#m10prs) PRINT
  =================================================================
  */

  @media print {
  #sidebar, #sidebar-alt, .content-header, .breadcrumb-top, .block-title .block-options {display: none !important;}
  #page-content {min-height: 0 !important; height: auto !important; padding: 0 !important;}
  #main-container {margin: 0 !important;}
  .block, .block.full {border: none !important; padding: 0 !important;}
  .block-title {margin: 0 0 20px !important;}
  }



  #users-datatable tbody tr td:nth-child(1),#users-datatable tbody tr td:nth-child(8)
  {
  text-align: center;
  }
  #punch_datatable tbody tr td:nth-child(2),#punch_datatable tbody tr td:nth-child(3),#punch_datatable tbody tr td:nth-child(4),#punch_datatable tbody tr td:nth-child(5),#punch_datatable tbody tr td:nth-child(6)
  {
  text-align: right;
  }

  #users-datatable[style],#cms-datatable[style],#brands_datatable[style],#models_datatable[style],#features_datatable[style],#suggested_features_datatable[style],#vehicles_datatable[style],#vehicle_tbl[style]
  {
  width:100% !important;
  }
  .nopadding
  {
  padding: 0 !important;
  }
  .rqrd-fld {
  color: red;
  }
  .error
  {
  color: red;
  }

  .checkclass
  {
  position: relative;
  display: inline-block;
  margin-top: -2px;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: rgba(250, 250, 250, .25);
  border: 1px solid #dae0e8;
  vertical-align: middle;
  margin-right: 5px !important;
  cursor: pointer;
  }
  .btn-danger
  {
  background: red !important;
  border-color: red !important;
  }
  .table-striped>tbody>tr:nth-of-type(odd) {
  background-color: #fff !important;
  }
  .dataTables_wrapper > div {
  background-color: #fff !important;
  }
  .a-btn
  {
  margin-top: 2px !important;
  margin-right: 2px;
  }
  .vehicleimg
  {
  object-fit: cover;
  object-position: center;
  height: 135px;
  width: 100%;
  border-radius: 10px;
  }
  .removeimg
  {
  background: red;
  color: #fff;
  padding: 6px 8px;
  border-radius: 15px;
  cursor: pointer;
  transform: translate(193px, 30px);
  }
  .list {
  float: left;
  background: #d76258;
  border-radius: 15px;
  padding: 5px 12px 5px 12px;
  font-size: 15px;
  color: #fff;
  margin: 5px 0 0 15px;
  }
  .alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
  }
  .alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
  }


  /*------------------------JD------------------------*/

  /*-Login-*/
  /* For color change find 'change-color' */

  html, body {
  height: 100%;
  }
  body{
  scroll-behavior: smooth;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: 'Inter', sans-serif; 
  }
  .section{
  /*flex: 1 0 auto; */
  display: flex;
  align-items: center;
  justify-content: center;
  }
  input:focus{
  box-shadow: none !important;
  }
  .row-flex{
  display: flex;
  flex-wrap: wrap;
  }
  .justify-content-center{
  justify-content: center;
  }
  button{
  box-shadow: none !important;
  }
  .container{
  padding-right: var(--bs-gutter-x,.75rem);
  padding-left: var(--bs-gutter-x,.75rem);
  }
  .row {
  margin-right: 0px;
  margin-left: 0px;
  }
  .block {
  padding: 20px;
  background-color: transparent;
  min-height: 800px;
  display: flex;
  align-items: center;
  }
  #login-container {
  background-color: white;
  border-radius: 40px;
  }
  .block-title {
  margin-top: 64px;
  margin-bottom: 64px;
  }
  .block-title h1{
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 4px;
  }
  .block-title p{
  font-size: 16px;
  }
  .form-group {
  margin-bottom: 0px;
  position: relative;
  }
  .form-control {
  background-color: rgba(17, 24, 39, 0.06);
  border-color: transparent;
  border-width: 2px;
  padding: 15px 15px;
  width: 100%;
  border-radius: 5px;
  color: black;
  height: auto;
  margin: 0px;
  font-size: 16px;
  margin-bottom: 16px;
  }
  .pattern-cross-dots-lg {
  color: lightgrey;
  border-radius: 40px;
  height: 100%;
  }
  .form-control:focus {
  color: #212529;
  background-color: #f3f3f4;
  border-color: #5645EE; /*change-color*/
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
  }
  #login-container {
  background-color: white;
  border-radius: 40px;
  box-shadow: rgb(0 0 0 / 20%) 0px 9px 20px;
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-size: 400px;
  background-position-x: -80px;
  background-position-y: -80px;
  }
  .common-btn {
  background-color: #5645EE; /*change-color*/
  border-color: transparent;
  padding: 15px 15px;
  width: 100%;
  border-radius: 5px;
  color: white;
  font-size: 16px;
  }
  .btn-margin{
  margin-top: 48px;
  }
  .common-btn:hover{
  background-color: #5645EE; /*change-color*/
  border-color: transparent;
  color: white;
  }
  .forgot a {
  color: #5645EE; /*change-color*/
  text-decoration: none;
  font-weight: 500;
  }
  .forgot p {
  margin-bottom: 0px;
  }
  .forgot{
  margin-top: 1.5em;
  }
  .eye-vi {
  position: absolute;
  top: 10px;
  right: 25px;
  padding: 10px;
  background: #f3f3f4;
  cursor: pointer;
  }
  .form-group .fa-eye {

  color: #5645EE !important; /*change-color*/
  }
  .form-group .fa-eye-slash {
  color:#6c757d ;
  }
  .account{
  color: black ;
  margin-top: 16px;
  }
  .account a {
  font-weight: 500;
  color: #5645EE; /*change-color*/
  text-decoration: none;
  }

  /*-*-Login--*/

  /*Sidebar*/
  .sidebar-title img{ 
  max-width: 100%;
  width: 150px;
  }

  #sidebar-brand{
  background-color: #f6f6f6 !important;
  border: none;
  }
  .sidebar-title {
  height: 70px;
  line-height: 50px;
  padding: 0 10px;
  margin: 0;
  font-weight: 300;
  font-size: 18px;
  display: flex;
  align-items: center;
  /* color: #ffffff; */
  /* background-color: #454e59; */
  -webkit-transition: background .2s ease-out;
  transition: background .2s ease-out;
  padding: 16px 17px;
  }
  #page-container, #sidebar {
  background-color: #f6f6f6;
  }
  #page-content {
  padding: 10px 5px 1px;
  background-color: #f1f1ff;
  }
  .sidebar-content {
  /* width: 220px; */
  color: #acb5bf;
  padding: 0 16px;
  }
  .side-ic{
  width: 20px;
  margin-right: 8px;
  }
  .sidebar-nav-mini-hide{
  color: #6B7280;
  font-weight: 600;
  }
  .sidebar-nav a.active {
  background-color: rgb(17 24 39 / 6%);
  color: #d76258;
  border-right: none;
  }
  .sidebar-nav a{
  align-items: center;
  border-radius:6px;
  cursor: pointer;
  display: flex;
  font-weight: 600;
  height: 40px;
  justify-content: space-between;
  padding-left: 12px;
  padding-right: 12px;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
  }
  .sidebar-nav li{
  margin-bottom: 6px;
  }
  .sidebar-logo-mini{
  display: none;
  }
  .sidebar-visible-lg-mini .sidebar-logo-mini{
  display: block;
  }
  .sidebar-visible-lg-mini .sidebar-logo-full{
  display: none;
  }
  .sidebar-visible-lg-mini .sidebar-nav a{
  padding: 24px;
  justify-content: center;
  }
  .sidebar-visible-lg-mini .side-ic{
  margin-right: 0px;
  }
  .sidebar-visible-lg-mini .sidebar-content{
  padding: 0 11px;
  }
  a.sidebar-title:hover, a.sidebar-title:focus {
  background: rgb(17 24 39 / 6%);
  color: #ffffff;
  text-decoration: none;
  }
  /*-*Sidebar*-*/

  /*-Navbar-*/
  .navbar {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(229 231 238) !important;
  padding: 0rem 1rem !important;
  background-color: white !important;

  }
  .navbar:before{
  display: none !important;
  }
  .navbar:after{
  display: none !important;
  }
  .nav.navbar-nav-custom > li > a > img {
  width: 20px;
  height: auto;
  border-width: 0px; 
  border-style: solid; 
  border-color: rgba(255, 255, 255, .75);
  border-radius: 0px; 
  vertical-align: middle; 
  }
  .nav.navbar-nav-custom > li > a {
  border-radius: 6px;
  padding: 5px 5px;
  }
  .right-navbar {
  display: flex;
  align-items: center;
  }
  .settings {
  padding:5px;
  border-radius: 6px;
  background: transparent;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  }
  .settings:hover {
  background-color: rgb(17 24 39 / 6%);
  }
  .settings img{
  width: 21px;
  }
  .nav.navbar-nav-custom > li {
  min-height: auto;
  }
  .profile-image {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  min-width: 32px;
  line-height: 32px;
  padding: 9px;
  font-size: 12px;
  background-color: #5645EE; /*change-color*/
  }
  .profile{
  display: flex;
  align-items: center;
  }
  .user-name p {
  color: #6B7280;
  font-size: 13px;
  margin-bottom: 0px;
  }
  .user-name h5 {
  color: #6B7280;
  font-size: 15px;
  margin-bottom: 0px;
  font-weight: 700;
  margin-top: 0px;
  }
  .profile-image{
  margin-right: 8px;
  }
  .profile-image img {
  display: block;
  height: 100%;
  width: 100%;
  }
  .right-navbar .dropdown-toggle:hover {
  background: transparent !important;
  }
  .nav.navbar-nav-custom.right-navbar .dropdown-menu {
  margin-top: 3px;
  min-width: 250px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  padding: 16px;
  }
  .right-navbar .dropdown-header {
  padding: 0px;
  color: #d76258;
  background-color: transparent;
  }
  .right-navbar .dropdown-item{
  display: flex;
  align-items: center;
  }
  .dropdown-ic {
  margin-right: 10px;
  }
  .dropdown-ic img{
  width: 21px;
  }
  .dropdown-text {
  color: #6B7280;
  font-weight: 500;
  font-size: 15px;
  }
  .dropdown-menu > li > a:hover{
  background-color: transparent !important;
  }
  .navbar-inverse .nav.navbar-nav-custom > li > a:focus {
  background-color: transparent !important;
  color: #ffffff;
  }
  .custom-hr{
  margin-top: 10px;
  margin-bottom: 10px;
  }
  .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus, .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus, .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  color: inherit;
  background-color: inherit;
  }
  .animation-fadeInRight{
  animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  }
  .navbar{
  border-left: 1px solid rgb(229 231 238) !important;
  }
  /*-*Navbar*-*/

  /*--Dashaboard--*/
  .content-header {
  margin: 0px !important;
  border: none;
  padding: 15px 15px 15px 15px;
  }

  #page-content {
  padding: 10px 5px 1px;
  background-color: white;
  border-left: 1px solid rgb(229 231 238);
  }
  .widget{
  border-radius: 11px;
  position: relative;
  display: flex !important;
  align-items: center;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgb(229 231 238);
  padding: 25px;
  width: 100%;
  justify-content: space-between;
  }
  .widget-content.widget-content-mini{
  padding: 0px !important;
  }
  .widget-content{
  padding: 0px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  }
  .content-header h1 {
  font-weight: 500;
  font-size: 24px;
  margin: 0px;
  }
  .dashbord-in h5{
  font-size: 16px;
  color: #1d212f;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: .2px;
  margin-top: 0px;
  }
  .dashbord-in p {
  font-size: 13px;
  color: #6B7280;
  line-height: 1;
  letter-spacing: .2px;
  }
  .dashbord-in h1 {
  font-size: 32px;
  color: #5645EE; /*change-color*/
  margin: 0px;
  }
  .widget-icon{
  margin: 0;
  width: 55px;
  height: 55px;
  background-color: #5645EE; /*change-color*/
  padding: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px #a299f0;
  }
  .widget-icon img{
  width: 25px;
  }
  .widget-content .pull-left {
  margin-right: 0px;
  }
  /*-*-Dashaboard-*-*/

  /*--user-list--*/
  .user-block{
  display: block;
  }
  .user-list-sec{
  width: 100%;
  }
  .user-head-block{
  display: flex;
  justify-content: space-between;
  align-items: center;
  }
  .user-header h2{
  font-weight: 500;
  font-size: 20px;
  margin-top: 0px;
  margin-bottom: 0px;
  }
  .filter-sec{
  display: flex;
  align-items: center;
  }
  .filter-sec .fi-1{
  margin-right: 8px;
  }
  .filter-sec .form-control{
  padding: 7px 15px;
  font-size: 12px;
  border-radius: 5px;
  background: rgba(17, 24, 39, 0.06);
  margin-bottom: 0px;
  height: 38px;
  }
  .table-responsive{
  margin-top: 18px;
  }
  #users-datatable_length select.form-control{
  padding: 7px;
  font-size: 14px;
  border-radius: 5px;
  background: rgba(17, 24, 39, 0.06);
  margin-bottom: 0px;
  height: 38px;
  }
  .dataTables_wrapper > div{
  border:none;
  }
  .dataTables_filter .input-group .form-control{
  padding: 6px 15px;
  font-size: 14px;
  border-radius: 5px 0px 0px 5px;
  background: rgba(17, 24, 39, 0.06);
  font-weight: 300;
  height: 38px;
  }
  .dataTables_filter .input-group .input-group-addon{
  background-color: rgba(17, 24, 39, 0.06) !important;
  border-radius: 0 5px 5px 0px;
  border: none;
  color: #6B7280;
  }
  .delete_multiple{
  background-color: #5645EE !important; /*change-color*/
  border-color: #5645EE !important; /*change-color*/
  padding: 7px 16px;
  font-size: 14px;
  border-radius: 5px;
  font-weight: 600;
  height: 36px;
  }
  .delete_multiple .fa-times-circle{
  margin-right: 3px;
  }
  #users-datatable_wrapper .col-sm-6.col-xs-6{
  padding: 0px;
  }
  #users-datatable{
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  }
  .custom-trow{
  background-color: rgba(17, 24, 39, 0.06);
  }
  .custom-trow th{
  color: black;
  font-size:12px !important;
  font-weight: 600 !important;
  letter-spacing: .05em;
  line-height: 16px !important;
  padding: 8px 18px !important;
  text-transform: uppercase;
  border-bottom: 1px solid rgb(229 231 238) !important;
  }
  #users-datatable tr td {
  padding: 8px 18px !important;
  color: #4c5159;
  }
  .csscheckbox-primary input:checked + span:after {
  background-color: #5645EE; /*change-color*/
  }
  .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  background-color: #a299f0 !important;
  color: #5645EE; /*change-color*/
  }
  .pagination > li > a, .pagination > li > span {
  font-weight: 500;
  color: #6B7280;
  margin-left: 5px;
  margin-right: 5px;
  border: none !important;
  border-radius: 3px !important;
  background: transparent;
  }
  .pager > li > a:hover, .pagination > li > a:hover {
  background-color:#5645EE; /*change-color*/
  border-color: #5645EE; /*change-color*/
  color: #ffffff;
  }
  .pagination .prev,.pagination .next{
  color: #6B7280;
  font-size: 2px;
  }
  .pagination .prev.disabled,.pagination .next.disabled{
  color: #6B7280;
  opacity: 0.5;
  }
  .pagination .prev i,.pagination .next i{
  font-size: 10px;
  }
  tbody .even {
  background-color: rgba(17, 24, 39, 0.06);
  }
  .dataTables_info{
  color: #6B7280;
  font-size: 12px;
  opacity: 0.5;
  }
  .dataTables_filter .input-group .form-control:focus{
  border-color: transparent;
  }
  .dataTables_length .form-control:focus{
  border-color: transparent; 
  box-shadow: none;
  }
  .d-inline{
  display: inline-block;
  }
  .view-ic {
  margin-top: 5px;
  width: 25px;
  height: 25px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5645EE;
  border-radius: 5px;
  }
  .del-ic {
  margin-top: 5px;
  width: 25px;
  height: 25px;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a299f0;
  border-radius: 5px;
  }
  .del-ic img{
  width: 100%;
  }
  .view-ic img{
  width: 100%;
  }
  .userdelete {
  margin-left: 8px;
  }
  /*-*-user-list-*-*/

  /*--CMS--*/
  .cms-sec{
  width: 100%;
  }
  .cms-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  }
  #cms-datatable_length select.form-control {
  padding: 7px;
  font-size: 14px;
  border-radius: 5px;
  background: rgba(17, 24, 39, 0.06);
  margin-bottom: 0px;
  height: 38px;
  }
  #cms-datatable_wrapper .col-sm-6.col-xs-6{
  padding: 0px;
  }
  #cms-datatable{
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  }
  #cms-datatable tr td {
  padding: 8px 18px !important;
  color: #4c5159;
  }
  #cms-datatable tbody tr td p{
  margin-bottom: 0px;
  }
  .add-btn{
  background-color: #5645EE; /*change-color*/
  border-color: transparent;
  padding: 10px 20px;
  width: 100%;
  border-radius: 5px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  }
  .add-btn i{
  margin-right: 5px;
  }
  .user-head-block .add-btn:hover{
  color: white;
  text-decoration: none;
  }
  .user-head-block .dropdown{
  margin-right: 15px;
  }
  .form-control:focus{
  box-shadow: none;
  }
  .custom-radio{
  margin-bottom: 16px;
  }
  .cke_bottom, .cke_top {
  background: rgba(241, 242, 242, 1) !important; 
  }
  .cke_chrome{
  border: 1px solid rgba(241, 242, 242, 1) !important; 
  background-color: rgba(241, 242, 242, 1) !important;
  }
  /*-*-CMS-*-*/

  /*--Account Setting--*/
  .edit-form {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
  /*  background: #f6f6f6;*/
  border-radius: 20px;
  border: 1px solid #e5e7ee;
  }
  .edit-profile-txt {
  padding-bottom: 20px;
  border-bottom: 1px solid #d2d2d2;
  margin-bottom: 20px;
  }
  .edit-profile-txt h4{
  margin-bottom: 0px;
  margin-top: 0px;
  }
  .edit-profile .form-control{
  margin-bottom: 0px;
  }
  .edit-profile .form-group{
  margin-bottom: 20px;
  /*margin-right: 0px;
  margin-left: 0px;*/
  }
  .form-horizontal .control-label {
  padding-top: 0px;
  margin-bottom: 0;
  text-align: left;
  letter-spacing: 0.5px;
  }
  .vcenter {
  display: inline-block;
  vertical-align: middle;
  float: none;
  }
  .reset-btn{
  background-color: transparent;
  border: 2px solid #5645EE; /*change-color*/
  padding: 15px 15px;
  width: 100%;
  border-radius: 5px;
  color:#5645EE; /*change-color*/
  font-size: 16px;

  }
  .control-label::after {
  content: "*";
  position: relative;
  font-size: inherit;
  color: #df4444;
  padding-left: 6px;
  font-weight: 600;
  }
  .edit-profile .form-group.form-actions{
  margin-bottom: 0px;
  }
  .form-row{
  display: flex;
  align-items: center;
  justify-content: center;
  }
  .control-label {
  margin-bottom: 5px !important;
  margin: 0 auto;
  }
  .reset-btn a{
  color: #5645EE; /*change-color*/
  }
  .reset-btn a:hover{
  color: #5645EE; /*change-color*/
  text-decoration: none;
  }
  /*-*-Account Setting-*-*/

  /*--user-details--*/
  .user-details{
  display: flex;
  }
  .back-btn{
  margin-right: 10px;
  }
  .back-btn img{
  width: 20px;
  }
  .details{
  margin-top: 20px;
  margin-bottom: 20px;
  /*padding: 20px 0px;*/
  border-radius: 20px;
  border: 1px solid #e5e7ee;
  }
  .profile-bg {
  background-color: #5645EE; /*change-color*/
  border-radius: 20px 20px 0px 0px;
  padding: 15px 15px;
  margin-bottom: 20px;
  }
  .user-profile{
  border-radius: 20px;
  width: 140px;
  height: 140px;
  padding: 0px !important;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  .details address{
  margin-bottom: 0px;
  }
  .pattern-triangles-md{
  color: #71b6e3;
  }
  .profile-box{
  display: flex;
  align-items: center;
  transform: translateY(35px);
  }
  .user-name-email{
  margin-left:40px ;
  }
  .user-name-email h1{
  color: white;
  margin-top: 0px;
  font-size: 40px;
  margin-bottom: 3px;
  }
  .user-name-email p{
  color: white;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 18px;
  }
  .detail-text{
  margin-top: 15px;
  margin-bottom: 15px;
  }
  .detail-text strong {
  color: #4c5159;
  font-size: 16px;
  letter-spacing: 0.5px;
  }
  /*-*-user-details-*-*/

  .submit.common-btn{
  margin-top: 15px !important;
  }

  /*--alert-message-*/
  .alert{
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  }
  .alert-danger {
  background-color: rgba(223 68 68 / 18%);
  border-radius: 12px;
  box-shadow: 0px 3px 15px rgb(0 0 0 / 8%);
  color: #df4344;
  padding: 5px;
  border: 1px solid rgb(223 68 68 / 70%);
  }
  .danger-ic{
  display: flex;
  align-items: center;

  }
  .danger-ic img{
  width: 42px;
  margin-right:10px;
  }
  .alert-danger .close{
  position: initial;
  opacity: 1;
  padding: 10px 10px;
  background-color: transparent;
  border-radius: 10px;
  margin-right: 0px;
  }
  .alert .close:hover{
  background-color: white;
  }
  .alert .close{
  font-size: 20px;
  }
  .alert-success {
  background-color: rgba(80 223 68 / 18%);
  border-radius: 12px;
  box-shadow: 0px 3px 15px rgb(0 0 0 / 8%);
  color: rgba(80 223 68);
  padding: 5px;
  border: 1px solid rgb(80 223 68 / 70%);
  }
  .alert-success .close{
  position: initial;
  opacity: 1;
  padding: 10px 10px;
  background-color: transparent;
  border-radius: 10px;
  margin-right: 5px;
  color: rgba(80 223 68);
  }
  .alert-warning{
  background-color: rgba(250 203 50 / 18%);
  border-radius: 12px;
  box-shadow: 0px 3px 15px rgb(0 0 0 / 8%);
  color: rgba(250 203 50);
  padding: 5px;
  border: 1px solid rgb(250 203 50 / 70%);
  }
  .alert-warning .close{
  position: initial;
  opacity: 1;
  padding: 10px 10px;
  background-color: transparent;
  border-radius: 10px;
  margin-right: 5px;
  color: rgba(250 203 50);
  }
  .alert p{
  margin: 0px;
  }
  .widget-sec .col-lg-3 {
  margin-bottom: 10px;
  }
  .widget-sec .col-lg-3 a {
  height: 140px;
  }
  .sidebar-visible-lg-mini .sidebar-content {
  height: 700px !important;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 30;
  }
  .sidebar-visible-lg-mini .sidebar-content::-webkit-scrollbar{
  width: 2px;
  }

  .sidebar-visible-lg-mini .sidebar-content::-webkit-scrollbar-thumb{
  background: #dfdfdf;
  }

  .sidebar-visible-lg-mini .sidebar-content {
  scrollbar-color: #dfdfdf transparent;
  scrollbar-width: none;
  }
  /*-*-alert-message-*-*/

  /*#page-content form .form-group{
  font-size: 0px;
  }*/
  #page-content form .form-group label{
  font-size: 14px;
  }
 /* .section
  {
    margin-top:80px;
  }*/
  .delete_row
  {
    padding: 0;
    margin-bottom: 10px;
  }
 .paging_bootstrap{
    text-align: right;
 }
 .pagination li a{
    padding: 4px 10px !important;
 }
 .pagination{
    margin: 5px 0px;
 }
 .rootClass
 {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
 }
 .commonwrapper
 {
    display: flex;
    flex-direction: column;
    height: 100%;
 }
 .login-logo img {
    width: 60% !important;
}
.bg-gray {
    background: grey;
}
.bg-red
{
    background: red;
}
.view-ic.bg-green {
    background: rgba(80 223 68);
}
.d-inline:hover
{
    text-decoration: none;
}
.d-inline {
    outline: none !important;;
    text-decoration: none !important;
}
.cms thead > tr > th
{
    padding: 18px 18px !important;
}

.ck-editor__editable_inline {
    min-height: 300px;
}
.cmspage .vcenter
{
    vertical-align: top;
}
#application_tbl tr th {
    padding: 14px 18px !important;
}
.pdf
{
    background: rgb(235, 235, 235);
    border-radius: 10px;
    padding: 10px;
    width: fit-content;
    color: #000;
    font-weight: 700;
    text-decoration: none;
}
.pdf_link:hover{
    text-decoration: none;
}
.ck-file-dialog-button, .ck-dropdown
{
    display: none !important;
}
.ck-heading-dropdown
{
    display: block !important;
}
.videoDetail
{
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: -15px;
    margin-right: 15px;
}
#abuse_form .table thead > tr > th, #abuse_form .table tbody > tr > td
{
    padding: 16px 18px !important;
}

#reportModal .modal-body
{
    background-color: #fff;
}
#reportModal .modal-title {
    font-weight: 800;
    font-size: 16px;
}
#reportModal .close {
    opacity: 1;
    text-shadow: none;
    margin-top: 0px;
    font-size: 25px;
}
#reportModal .modal-content
{
    border-radius: 10px;
}
#reportModal .modal-header
{
    border-radius: 10px 10px 0 0;
}
#reportModal .modal-footer
{
    border-radius: 0 0 10px 10px;
}
#reportModal .modal-body {
    padding: 35px;
    border-radius: 0 0 10px 10px;
}
table thead .sorting {
    background-image: url(../img/sort_both.png);
    background-position: center right;
    background-repeat: no-repeat;
    cursor: pointer;
}

img.sidebar-logo-mini {
    /*width: 40px;
    margin: 0px 0px 12px 5px;*/
}
.contacts .table thead > tr > th
{
    padding: 14px 18px !important;
}

.error-page {
            min-height: 100vh;
            background: #5645EE;
        }

        .error-container {
            max-width: 600px;
        }

        .error-code {
            font-size: 12rem;
            font-weight: 900;
            background: linear-gradient(to right, #fff, rgba(255, 255, 255, 1));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: pulse 2s infinite;
        }

        .error-message {
            color: rgba(255, 255, 255, 1);
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        .btn-glass {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            transition: all 0.3s ease;
        }

        .btn-glass:hover {
            background: rgba(255, 255, 255, 0.3);
            color: white;
        }

        .align-items-center {
    align-items: center !important;
}
.justify-content-center {
    justify-content: center !important;
}
.d-flex {
    display: flex !important
;
}
.login_btn {
    border: 2px solid #fff;
    padding: 10px;
    border-radius: 5px;
    color: #ffff;
    font-size: 15px;
}
.app-or
{
    margin: 0px 15px 0 15px;
}

.media-items {
    position: relative;
    margin-bottom: 0px;
    margin-top: 10px;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    background: transparent;
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;
    display: flex;
    align-items: center;
    border: 1px solid #e5e7ee;
}

.media-items .media-items-options {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding: 10px;
    display: block;
}
.download-fs {
    font-size: 15px;
    background-color: #5645EE !important;
    border-color: #5645EE !important;
}

.media-items .media-items-content {
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex
;
    align-items: center;
    background: #5645EE;
    border-radius: 12px;
}
.media-items .media-items-content img {
    width: 100%;
}
.media-items h4 {
    font-size: 13px;
    margin-left: 15px;
    text-align: left;
    width: calc(100% - 50px);
    text-overflow: ellipsis;
    overflow: hidden;
}
.attachment
{
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    background: #5645EE;
    border-radius: 5px;
    justify-content: center;
    padding: 7px;
}
.attachment_img
{
    width: 100%;
}
.filter-sec-btn
{
    width: 70%;
    justify-content: end;
}
.fit_content
{
    width: fit-content;
        margin-right: 8px;
}

.assignRole .modal-title {
    font-weight: 800;
    font-size: 16px;
    color: #fff;
}
.assignRole .modal-header .close {
    margin-top: -24px;
    font-size: 25px;
    color: #fff;
    opacity: 1;
}

.assignRole .modal-header, .modal-footer {
    background: #5645EE;
    border-bottom: 1px solid #fff;
        border-radius: 8px 8px 0 0;
}
.assignRole .modal-content {
   background: #5645EE;
       border-radius: 8px;
}

.assign-form {
  padding: 20px;
}

.appoveBtn
{
    background-color: #fff !important;
    color: #5645EE;
    padding: 10px 25px;
    font-weight: 700;
    border-radius: 5px;
}
.assignRole .form-control
{
    background: #fff;
}
.appoveBtn:hover, .appoveBtn:focus
{
    color: #5645EE !important;
}
.react-datepicker-wrapper {
    width: 100%;
}
.react-datepicker__day-name, .react-datepicker__day, .react-datepicker__time-name {
    color: #000 !important;
    display: inline-block !important;
    width: 3.5rem !important;
    line-height: 4rem !important;
    text-align: center !important;
    margin: 0.166rem !important;
}
.react-datepicker {
    font-size: 1.4rem !important;
}
.react-datepicker__day--disabled {
  background-color: #f0f0f0 !important; /* Light gray background for disabled dates */
  color: #d3d3d3 !important; /* Light gray text for disabled dates */
  pointer-events: none; /* Prevent interaction */
}

/*new added*/
.accordion-button.collapsed .custom-arrow {
    transform: rotate(-180deg);
}