@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
.preloader {
  z-index: 99999;
  position: fixed !important;
  height: 100%;
  width: 100%;
}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-scale-multiple,
.la-ball-scale-multiple > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.la-ball-scale-multiple {
  display: block;
  font-size: 0;
  color: #428bca;
  margin: 0 auto;
}

.la-ball-scale-multiple.la-dark {
  color: #333;
}

.la-ball-scale-multiple > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.la-ball-scale-multiple {
  width: 32px;
  height: 32px;
}

.la-ball-scale-multiple > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
          animation: ball-scale-multiple 1s 0s linear infinite;
}

.la-ball-scale-multiple > div:nth-child(2) {
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.la-ball-scale-multiple > div:nth-child(3) {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.la-ball-scale-multiple.la-sm {
  width: 16px;
  height: 16px;
}

.la-ball-scale-multiple.la-sm > div {
  width: 16px;
  height: 16px;
}

.la-ball-scale-multiple.la-2x {
  width: 64px;
  height: 64px;
}

.la-ball-scale-multiple.la-2x > div {
  width: 64px;
  height: 64px;
}

.la-ball-scale-multiple.la-3x {
  width: 96px;
  height: 96px;
}

.la-ball-scale-multiple.la-3x > div {
  width: 96px;
  height: 96px;
}

/*
 * Animation
 */
@-webkit-keyframes ball-scale-multiple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  5% {
    opacity: .75;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes ball-scale-multiple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  5% {
    opacity: .75;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/*Timer Loader*/
.refresh-preloader {
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  position: absolute;
  display: none;
  z-index: 100;
}

.refresh-preloader .la-timer {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.la-timer,
.la-timer > div {
  position: relative;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.la-timer {
  display: block;
  font-size: 0;
  color: #fff;
}

.la-timer.la-dark {
  color: #BBC1C7;
}

.la-timer > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.la-timer {
  width: 32px;
  height: 32px;
}

.la-timer > div {
  width: 32px;
  height: 32px;
  background: transparent;
  border-width: 2px;
  -webkit-border-radius: 100%;
          border-radius: 100%;
}

.la-timer > div:before,
.la-timer > div:after {
  position: absolute;
  top: 14px;
  left: 14px;
  display: block;
  width: 2px;
  margin-top: -1px;
  margin-left: -1px;
  content: "";
  background: currentColor;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  -webkit-transform-origin: 1px 1px 0;
      -ms-transform-origin: 1px 1px 0;
          transform-origin: 1px 1px 0;
  -webkit-animation: timer-loader 1250ms infinite linear;
          animation: timer-loader 1250ms infinite linear;
  -webkit-animation-delay: -625ms;
          animation-delay: -625ms;
}

.la-timer > div:before {
  height: 12px;
}

.la-timer > div:after {
  height: 8px;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-delay: -7.5s;
          animation-delay: -7.5s;
}

.la-timer.la-sm {
  width: 16px;
  height: 16px;
}

.la-timer.la-sm > div {
  width: 16px;
  height: 16px;
  border-width: 1px;
}

.la-timer.la-sm > div:before,
.la-timer.la-sm > div:after {
  top: 7px;
  left: 7px;
  width: 1px;
  margin-top: -.5px;
  margin-left: -.5px;
  -webkit-border-radius: 1px;
          border-radius: 1px;
  -webkit-transform-origin: .5px .5px 0;
      -ms-transform-origin: .5px .5px 0;
          transform-origin: .5px .5px 0;
}

.la-timer.la-sm > div:before {
  height: 6px;
}

.la-timer.la-sm > div:after {
  height: 4px;
}

.la-timer.la-2x {
  width: 64px;
  height: 64px;
}

.la-timer.la-2x > div {
  width: 64px;
  height: 64px;
  border-width: 4px;
}

.la-timer.la-2x > div:before,
.la-timer.la-2x > div:after {
  top: 28px;
  left: 28px;
  width: 4px;
  margin-top: -2px;
  margin-left: -2px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  -webkit-transform-origin: 2px 2px 0;
      -ms-transform-origin: 2px 2px 0;
          transform-origin: 2px 2px 0;
}

.la-timer.la-2x > div:before {
  height: 24px;
}

.la-timer.la-2x > div:after {
  height: 16px;
}

.la-timer.la-3x {
  width: 96px;
  height: 96px;
}

.la-timer.la-3x > div {
  width: 96px;
  height: 96px;
  border-width: 6px;
}

.la-timer.la-3x > div:before,
.la-timer.la-3x > div:after {
  top: 42px;
  left: 42px;
  width: 6px;
  margin-top: -3px;
  margin-left: -3px;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  -webkit-transform-origin: 3px 3px 0;
      -ms-transform-origin: 3px 3px 0;
          transform-origin: 3px 3px 0;
}

.la-timer.la-3x > div:before {
  height: 36px;
}

.la-timer.la-3x > div:after {
  height: 24px;
}

/*
 * Animation
 */
@-webkit-keyframes timer-loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes timer-loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 20px;
  font-weight: 400;
}

h5 {
  font-size: 12px;
}

h6 {
  font-size: 10px;
}

.text-primary {
  color: #428bca;
}

.text-success {
  color: #009a58;
}

.text-warning {
  color: #fdbe00;
}

.text-danger {
  color: #d9534f;
}

.text-info {
  color: #90c1f1;
}

a.text-primary:hover {
  color: #55a0e9;
}

a.text-success:hover {
  color: #3ea87a;
}

a.text-warning:hover {
  color: #f7b900;
}

a.text-danger:hover {
  color: #e74a4e;
}

a.text-info:hover {
  color: #83baef;
}

.gn-scroller {
  height: -webkit-calc(100% - 65px);
  height: calc(100% - 65px);
  overflow-x: hidden;
}

.gn-menu-main,
.gn-menu-main ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-transform: none;
  font-weight: 300;
  line-height: 66px;
  z-index: 999;
  width: 270px;
}

.gn-menu-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  font-size: 13px;
/*  -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3);*/
  border: 0;
  -webkit-border-radius: 0;
          border-radius: 0;
}

.gn-menu-main a {
  display: block;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
}

.gn-menu-main > li {
  display: block;
  float: left;
  height: 100%;
  text-align: center;
  padding: 0;
}

.gn-menu-main > li > a {
  padding: 0 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.gn-menu-main li.gn-trigger {
  position: relative;
  width: 66px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.gn-menu-main:after {
  display: table;
  clear: both;
  content: "";
}

.gn-menu-main .navbar-right {
  width: auto;
  line-height: 56px;
}

.gn-menu-main .navbar-right a {
  padding: 0 20px !important;
  font-size: 18px;
}

.gn-menu-main .navbar-right .mdi {
  font-size: 30px;
  vertical-align: -5px;
}

.gn-menu-main .navbar-right .cs-select {
  margin-bottom: 0;
}

.gn-menu-main .navbar-right .cs-select > span {
  padding: 0 3em 0 1em;
  height: 55px;
  line-height: 50px;
  margin-top: -1px;
}

.gn-menu-main .navbar-right .cs-select ul {
  width: auto;
  line-height: 1.42857143;
}

.gn-menu-main .navbar-right .cs-select ul li {
  width: 100%;
}

.gn-menu-main .navbar-right .cs-select ul li span {
  background-repeat: no-repeat;
  background-position: 12% 50%;
  background-size: 2em auto;
  padding-left: 52px;
  text-align: left;
}

.gn-menu-main .navbar-right .cs-skin-elastic .cs-options li.flag-france span {
  background-image: url(../img/lang/France.png);
}

.gn-menu-main .navbar-right .cs-skin-elastic .cs-options li.flag-england span {
  background-image: url(../img/lang/uk.png);
}

.gn-menu-main .navbar-right .cs-skin-elastic .cs-options li.flag-germany span {
  background-image: url(../img/lang/Germany.png);
}

.gn-menu-main .navbar-right .label {
  right: 8px;
}

.gn-menu-main .logo {
  line-height: 56px;
  font-size: 20px;
  font-weight: 300;
  padding: 0 14px;
}
.gn-menu-main .logo:hover{
    background-color: #428bca !important;
}

.gn-menu-main .logo i {
  margin-left: 10px;
}

.gn-menu-main .member-info {
  line-height: 1.42857143;
}

.menu-toggle {
  position: relative;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
  -webkit-transition-property: top, left, width, height;
          transition-property: top, left, width, height;
}

.menu-toggle .hamburger {
  position: absolute;
  margin-left: -13px;
  top: 12px;
}

.menu-toggle .hamburger span {
  width: 30px;
  height: 3px;
  position: relative;
  margin: 6px 0;
}

.menu-toggle .hamburger span:nth-child(1) {
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

.menu-toggle .hamburger span:nth-child(2) {
  -webkit-transition-delay: .625s;
          transition-delay: .625s;
}

.menu-toggle .hamburger span:nth-child(3) {
  -webkit-transition-delay: .75s;
          transition-delay: .75s;
}

.menu-toggle .cross {
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menu-toggle .cross span:nth-child(1) {
  height: 0%;
  width: 3px;
  position: absolute;
  top: 32px;
  left: 9px;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.menu-toggle .cross span:nth-child(2) {
  width: 0%;
  height: 3px;
  position: absolute;
  left: -6px;
  top: 47px;
  -webkit-transition-delay: .25s;
          transition-delay: .25s;
}

.menu-toggle.gn-selected .hamburger span {
  width: 0%;
}

.menu-toggle.gn-selected .hamburger span:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.menu-toggle.gn-selected .hamburger span:nth-child(2) {
  -webkit-transition-delay: .125s;
          transition-delay: .125s;
}

.menu-toggle.gn-selected .hamburger span:nth-child(3) {
  -webkit-transition-delay: .25s;
          transition-delay: .25s;
}

.menu-toggle.gn-selected .cross span:nth-child(1) {
  height: 60%;
  -webkit-transition-delay: .625s;
          transition-delay: .625s;
}

.menu-toggle.gn-selected .cross span:nth-child(2) {
  width: 52%;
  -webkit-transition-delay: .375s;
          transition-delay: .375s;
}

.gn-menu-wrapper {
  position: fixed;
  top: 56px;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 66px;
  -webkit-transform: translateX(-66px);
      -ms-transform: translateX(-66px);
          transform: translateX(-66px);
  -webkit-transition: -webkit-transform 0.3s, width 0.3s;
          transition: transform 0.3s, width 0.3s;
}

.gn-menu {
  text-align: left;
  font-size: 16px;
  padding-bottom: 40px !important;
}

.gn-menu li.active > a {
  color: #76828E !important;
  background-color: #e3e1e1;
}

.gn-menu i {
  padding: 0 24px;
  font-size: 19px;
}

.gn-menu .label {
  margin-top: 24px;
  margin-right: 12px;
  padding-top: .3em;
}

.gn-menu .arrow {
  float: right;
  line-height: 66px;
  margin-right: 12px;
}

.gn-submenu {
  position: relative;
  font-size: 14px;
  z-index: 0 !important;
}

.gn-submenu li {
  overflow: hidden;
  height: 0;
  -webkit-transition: height, .3s;
          transition: height, .3s;
}

.gn-submenu li a {
  padding-left: 66px;
  position: relative;
}

.gn-submenu li a:before {
  content: "";
  width: 3px;
  height: 100%;
  position: absolute;
  left: 32px;
}

.gn-submenu li a.active:after {
  content: "";
  position: absolute;
  left: 35px;
  top: 16px;
  border: 8px solid transparent;
}

.gn-search-item {
  position: relative;
}

.gn-search-item input.gn-search {
  position: relative;
  padding-left: 66px;
  padding-right: 15px;
  width: 270px;
  outline: none;
  border: none;
  font-weight: 300;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
          border-radius: 0;
}

input.gn-search:focus {
  cursor: text;
}

.gn-menu-main a.search-icon {
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
}

/* if an icon anchor has a span, hide the span */
.search-icon span {
  width: 0;
  height: 0;
  display: block;
  overflow: hidden;
}

/* styles for opening menu */
.gn-menu-wrapper.gn-open-all,
.gn-menu-wrapper.gn-open-part,
.gn-menu-wrapper.gn-open-fixed {
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
}

.gn-menu-wrapper.gn-open-all {
  width: 270px;
}

.gn-menu-wrapper.gn-open-all .gn-submenu li {
  height: 45px;
  line-height: 45px;
}

.top-clock {
  line-height: 56px;
  font-size: 24px;
  font-weight: 300;
  width: 120px;
  position: absolute;
  left: 50%;
  margin-left: -60px;
  top: 0;
}

.bottom-bnts {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.bottom-bnts a {
  display: block;
  line-height: 66px;
  font-size: 19px;
  text-align: center;
}

.bottom-bnts .profile, .bottom-bnts .fix-nav {
  display: none;
}

.gn-open-all .bottom-bnts a {
  display: inline-block;
  width: 32%;
}

.mini-nav .content {
  margin: 0 0 0 60px;
}

.right-menu > li {
  float: left;
}

.right-menu a {
  padding: 15px 30px !important;
  margin: 0;
}

.right-menu .label {
  position: absolute;
  top: 8px;
  right: 15px;
  font-size: 72%;
}

.lang a {
  font-size: 15px;
  padding: 17px 15px !important;
}

.lang i {
  margin-left: 5px;
}

.some-btn a {
  font-size: 15px;
  padding: 17px 30px !important;
}

@media screen and (max-width: 422px) {
  .gn-menu-main ul {
    width: 100%;
  }
  .gn-menu-wrapper.gn-open-all {
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
    width: 100%;
  }
  .gn-menu-wrapper.gn-open-all .bottom-bnts a {
    display: inline-block;
    width: 49%;
  }
  .gn-menu-wrapper.gn-open-all .fix-nav {
    display: none !important;
  }
}

a, button {
  text-decoration: none;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

button:focus, button:active {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  padding-top: 52px;
  color: #222222;
  font-size: 12.5px;
  position: relative;
  background: #f7f7f7;
  overflow-x: hidden;
}

.page-head{
    background-color: #fff;
    margin-bottom: 15px;
    /* padding: 5px 0px; */
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3);
    padding: 15px 10px 15px 15px;
    /* margin: 0; */
}

.main-wrapper {
  width: 100%;
  position: relative;
}

.boxed-layout {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

.boxed-layout .f-fixed {
  margin-left: 0 !important;
}

.overvis {
  overflow: visible !important;
}

.overhid {
  overflow: hidden !important;
}

.i-block {
  display: inline-block;
}

.block {
  display: block;
}

.box-shadow {
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
}

.zero-m {
  margin: 0 !important;
}

.green {
  color: #009a58;
}

.dark-green {
  color: #348e67;
}

.blue {
  color: #428bca;
}

.light-blue {
  color: #90c1f1;
}

.teal {
    color:#26A69A;
}

.light-teal {
    color:#4DB6AC;
}

.greens {
    color:#66BB6A;
}

.light-greens {
    color:#81C784;
}

.yellow {
  color: #fdbe00;
}

.red {
  color: #d9534f;
}

.red-orange {
  color: #e53935;
}

.indigo {
  color: #3f51b5;
}

.orange {
  color: #ff5722;
}

.gray {
  color: #273238;
}

.grayish-blue {
  color: #37474f;
}

.white-bg {
  background: #fff !important;
}

.green-bg {
  background: #009a58 !important;
}

.blue-bg {
  background: #428bca !important;
}

.light-blue-bg {
  background: #0078d7 !important;
}

.yellow-bg {
  background: #fdbe00 !important;
}

.red-bg {
  background: #d9534f !important;
}

.red-orange-bg {
  background: #e53935 !important;
}

.indigo-bg {
  background: #3f51b5 !important;
}

.orange-bg {
  background: #ff5722 !important;
}

.gray-bg {
  background: #273238 !important;
}

.grayish-blue-bg {
  background: #37474f !important;
}

.green-bg, .blue-bg, .yellow-bg, .red-bg, .indigo-bg, .gray-bg, .grayish-blue-bg, .orange-bg, .red-orange-bg, .light-blue-bg {
  color: #fff !important;
}

.green-bg .content-tools > a, .blue-bg .content-tools > a, .yellow-bg .content-tools > a, .red-bg .content-tools > a, .indigo-bg .content-tools > a, .gray-bg .content-tools > a, .grayish-blue-bg .content-tools > a, .orange-bg .content-tools > a, .red-orange-bg .content-tools > a, .light-blue-bg .content-tools > a {
  color: #fff !important;
}

.color-container {
  height: 100px;
  text-align: center;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  margin-bottom: 20px;
  padding: 15px 0;
}

.color-container span {
  display: block;
  color: #fff;
}

.color-container .color {
  text-transform: uppercase;
}

.color-container .code {
  margin: 5px 0;
}

.color-container .sass {
  font-size: 11px;
}

/*Boxes*/
.content {
  margin: 0;
  padding: 0px 10px 66px;
  position: relative;
  background: #f7f7f7;
  -webkit-transition: margin, .4s;
  transition: margin, .4s;
}

.content-box {
  position: relative;
  background: #fff;
  -webkit-border-radius: 0px;
          border-radius: 0px;
  margin-bottom: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.09);
  border: none;
  border-radius: 4px!important;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.content-box .lead {
  font-size: 16px;
}

.small-box {
  padding: 20px 10px;
}

.small-box .info {
  margin-top: 4px;
  margin-left: 6px;
}

.big-box {
  padding: 20px;
}

.biggest-box {
  padding: 30px 20px;
}

.page-header {
  margin: 0;
  padding-bottom: 0px;
  /* padding-top: 10px; */
  border-bottom: 0;
  /* padding: 10px 10px 10px 30px; */
  /* clear: both; */
}

.page-header .breadcrumb, .page-header h2 {
  margin: 0;
  padding: 0;
}

.page-header h2 {
  /* padding-bottom: 10px; */
}

.content-title {
  width: 100%;
  position: relative;
}

.content-title h4 {
  display: inline-block;
  float: left;
}

.content-tools > a {
  margin-left: 28px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: inline-block;
  opacity: .99;
}

.content-tools > a:before {
  content: "";
  background: rgba(39, 50, 56, 0.25);
  -webkit-border-radius: 50%;
          border-radius: 50%;
  width: 28px;
  height: 28px;
  position: absolute;
  top: -5px;
  left: -7px;
  z-index: -1;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform .2s ease-in-out;
          transition: transform .2s ease-in-out;
}

.content-tools > a:last-child:before {
  left: -9px;
}

.content-tools > a:hover {
  color: #fff;
}

.content-tools > a:hover:before {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.chart-legend {
  position: absolute;
  bottom: -14px;
  right: 20px;
}

.chart-legend table {
  display: inline-block;
}

.chart-legend .legendColorBox div {
  -webkit-border-radius: 50%;
          border-radius: 50%;
  margin-right: 2px;
  margin-left: 10px;
}

.chart-legend .round {
  width: 12px;
  height: 12px;
  display: inline-block;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  margin-right: 4px;
  margin-left: 14px;
}

.left-block, .chart-legend.left {
  left: 20px !important;
  bottom: -30px !important;
}

.left-block .item, .chart-legend.left .item {
  margin-right: 10px;
}

.reg-chart {
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  position: relative;
}

.reg-chart .icon {
  position: absolute;
  bottom: -25px;
  right: 20px;
}

.reg-chart .fa-circle {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.13);
}

.reg-info {
  padding-left: 10%;
  margin-top: 25px;
}

.reg-info .item {
  margin-right: 25px;
}

.reg-info .item span {
  font-size: 20px;
}

.reg-info .item small {
  font-size: 14px;
}

.reg-info .item i {
  margin-right: 3px;
}

.member-info {
  font-weight: 400;
  margin-top: 20px;
}

.member-info img {
  margin-right: 10px;
}

.member-info .member-role {
  margin-top: 8px;
}

.member-info .member-role .round {
  width: 12px;
  height: 12px;
  display: inline-block;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  margin-right: 4px;
}

/*Dropdown*/
.dropdown, .dropup {
  display: inline-block;
}

.dropdown .dropdown-menu, .dropup .dropdown-menu, .btn-group .dropdown-menu, .content-tools .dropdown-menu {
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  /* -webkit-transition: all .2s;
          transition: all .2s; */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: block;
  border-color: transparent;
  -webkit-border-radius: 3px;
          border-radius: 3px;
}

.dropdown .dropdown-menu > li > a, .dropup .dropdown-menu > li > a, .btn-group .dropdown-menu > li > a, .content-tools .dropdown-menu > li > a {
  padding: 8px 20px;
}

.dropdown .dropdown-menu.pull-right, .dropup .dropdown-menu.pull-right, .btn-group .dropdown-menu.pull-right, .content-tools .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

/* .dropdown .dropdown-menu, .btn-group .dropdown-menu, .content-tools .dropdown-menu {
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
}

.dropdown .dropdown-menu.pull-right, .btn-group .dropdown-menu.pull-right, .content-tools .dropdown-menu.pull-right {
  -webkit-transform-origin: top right;
      -ms-transform-origin: top right;
          transform-origin: top right;
}

.dropdown.notifications .dropdown-menu, .content-tools .dropdown-menu {
  -webkit-transform-origin: top right;
      -ms-transform-origin: top right;
          transform-origin: top right;
}

.dropup .dropdown-menu {
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
}

.dropup .dropdown-menu.pull-right {
  -webkit-transform-origin: bottom right;
      -ms-transform-origin: bottom right;
          transform-origin: bottom right;
} */

.dropdown.open .dropdown-menu, .dropup.open .dropdown-menu, .btn-group.open .dropdown-menu, .content-tools.open .dropdown-menu {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.user-info .dropdown-menu {
  margin-top: 10px;
}

.content-tools .dropdown-menu {
  min-width: 150px;
  margin-top: -5px;
  margin-right: 28px;
}

.content-tools .dropdown-menu a {
  margin-left: 0;
}

.notifications .dropdown-menu, .clock .dropdown-menu {
  min-width: 240px;
  padding: 10px;
  background: #fff !important;
}

.clock .dropdown-menu {
  color: #76828E;
  left: -20px;
}

.clock .progress {
  height: 10px;
  margin-top: 3px;
  margin-bottom: 6px;
}

.reg-chart .content-tools .dropdown-menu, .calendar .content-tools .dropdown-menu {
  min-width: 150px;
  margin-top: 10px;
  margin-right: 9px;
}

.search-form {
  position: absolute;
  width: 100%;
  height: 56px;
  top: 0px;
  left: -100%;
  opacity: 0;
  margin-top: 10px;
  -webkit-transition: all, .6s;
          transition: all, .6s;
  z-index: 20;
}

.search-form form {
  width: 600px;
}

.search-form input {
  height: 37px;
  font-size: 12px !important;
}

.search-form input:-moz-placeholder {
  color: #fff;
  font-size: 12px;
}

.search-form input::-moz-placeholder {
  color: #fff;
  font-size: 12px;
}

.search-form input:-ms-input-placeholder {
  color: #fff;
  font-size: 12px;
}

.search-form input::-webkit-input-placeholder {
  color: #fff;
  font-size: 12px;
}

.search-form button, .search-form input {
  border: 0;
  color: #fff;
  font-size: 18px;
}

.search-form button:hover, .search-form button:focus, .search-form button:active, .search-form input:hover, .search-form input:focus, .search-form input:active {
  color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.search-form-open {
  opacity: 1;
  left: 0;
}

.close-search {
  position: absolute;
  top: 3px;
  right: 30px;
  width: 40px;
  margin-left: 0 !important;
  cursor: pointer;
}

/*Footer*/
.footer {
  font-weight: 400;
  bottom: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  right: 0;
  z-index: 5;
  text-align: center;
}

/*Page 404*/
.table-wrapper {
  display: table;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #F1F4F5;
}

.table-wrapper .table-row {
  display: table-row;
}

.table-wrapper .table-row .table-cell {
  display: table-cell;
  vertical-align: middle;
}

.table-wrapper .pagenotfound {
  max-width: 520px;
  width: 100%;
  min-width: 280px;
}

.table-wrapper .pagenotfound .top {
  position: relative;
}

.table-wrapper .pagenotfound h1 {
  font-size: 150px;
  font-weight: 100;
}

.table-wrapper .pagenotfound .icon-home {
  position: absolute;
  right: 30px;
  bottom: -25px;
}

.table-wrapper .pagenotfound .icon-back {
  position: absolute;
  top: 10px;
  left: 10px;
}

.table-wrapper .pagenotfound .fa-circle {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.13);
}

.table-wrapper .pagenotfound h4, .table-wrapper .pagenotfound p {
  font-weight: 400;
  padding: 0 30px;
}

.table-wrapper .pagenotfound .input-group-addon {
  background: #fff;
}

.table-wrapper .pagenotfound input {
  border-left: 0;
  padding-left: 0;
}

.table-wrapper .pagenotfound input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #E7EBEC;
}

/*Login page*/
.login {
  max-width: 350px;
  width: 100%;
  min-width: 280px;
}

.login h1 {
  font-size: 60px;
  font-weight: 100;
}

.login h4, .login p {
  font-weight: 500;
  margin-bottom: 29px;
}

.login .login-form {
  padding: 30px 20px 60px;
}

.login form {
  margin-bottom: 15px;
}

.login input:focus {
/*   -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #E7EBEC; */
}

/*Registration page*/
.registration-form {
  padding: 30px 80px 120px;
}

.registration-form h4 {
  margin-bottom: 40px;
}

/*Tabs*/
.tabbable {
  margin-bottom: 30px;
}

.tabbable .cbp_tmtimeline > li .cbp_tmtime {
  width: 24%;
}

.tabbable .nav-tabs.nav-justified > li > a {
  border-bottom: 0;
}

.nav-tabs > li > a, .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li > a:hover {
  border: 1px solid #E7EBEC;
  border-bottom-color: transparent;
}

.nav-tabs {
  border-color: transparent;
}

.nav-tabs > li {
  margin-right: 6px;
  background: none;
  border: none;
}

.nav-tabs > li.active a {
  color: #76828E !important;
  border: 1px solid #fff !important;
  background: #fff !important;
  font-weight: 400;
  -webkit-box-shadow: -1px 0 1px -1px rgba(0, 0, 0, 0.2);
          box-shadow: -1px 0 1px -1px rgba(0, 0, 0, 0.2);
}

.nav-tabs > li > a {
  padding: 20px;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: #76828E;
}

.tab-content > .active {
  background: #fff;
}

.tab-pane {
  -webkit-border-radius: 3px;
          border-radius: 3px;
  -webkit-border-top-left-radius: 0;
          border-top-left-radius: 0;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}

.right-tabs .nav-tabs > li {
  margin-left: 6px;
  margin-right: 0;
}

.right-tabs .nav-tabs > li.active a {
  -webkit-box-shadow: 1px 0 1px -1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 0 1px -1px rgba(0, 0, 0, 0.2);
}

.right-tabs .tab-pane {
  -webkit-border-top-right-radius: 0;
          border-top-right-radius: 0;
  -webkit-border-top-left-radius: 3px;
          border-top-left-radius: 3px;
}

.panel.with-nav-tabs .panel-heading {
  margin: 10px 20px 0 20px;
  padding: 0;
  background: #fff;
}

.panel.with-nav-tabs .panel-heading .nav-tabs > li {
  margin-left: 6px;
  margin-right: 0;
}

.panel.with-nav-tabs .panel-heading .nav-tabs > li.active a {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #E7EBEC !important;
  border-bottom-color: transparent !important;
}

.panel.with-nav-tabs .panel-heading .nav-tabs > li.active a:hover {
  background: #fff;
}

.panel.with-nav-tabs .panel-heading .nav-tabs > li a {
  border-color: transparent;
}

.panel.with-nav-tabs .panel-heading .nav-tabs > li a:hover {
  background: transparent;
}

.panel.with-nav-tabs .nav-tabs {
  border-bottom: none;
  margin-right: 20px;
}

.panel.with-nav-tabs .tab-pane {
  -webkit-border-radius: 0;
          border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.tabs-with-bg {
  background: #f6f6f6;
}

.tabs-with-bg .nav-tabs {
  border-bottom: 0;
  text-align: center;
  -webkit-box-shadow: 1px 0 1px -1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 0 1px -1px rgba(0, 0, 0, 0.2);
}

.tabs-with-bg li.active a, .tabs-with-bg li a, .tabs-with-bg li a:hover, .tabs-with-bg li a:focus {
  border: 0;
}

.tabs-with-bg li a:hover, .tabs-with-bg li a:focus {
  background: transparent;
}

.tabs-with-bg i {
  margin-right: 8px;
}

.tabs-with-bg .tab-pane {
  -webkit-border-top-right-radius: 0;
          border-top-right-radius: 0;
}

.tabs-with-bg .dropdown-menu a {
  color: #76828E !important;
}

.tabs-with-bg .dropdown-menu a:hover {
  color: #fff !important;
}

.tabs-with-bg .dropdown-menu .active a {
  background: #009a58 !important;
  color: #fff !important;
}

.tabs-with-bg .dropdown-menu:before {
  content: none;
}

.big-tabs li {
  width: 25%;
  margin: 0;
}

.navigation .btn {
  padding: 12px 40px;
  margin-right: 5px;
  margin-top: 8px;
}

.next-prev-btns.tabs-with-bg .nav-tabs {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*!
 * bootstrap-vertical-tabs - v1.2.1
 * https://dbtek.github.io/bootstrap-vertical-tabs
 * 2014-11-07
 * Copyright (c) 2014 İsmail Demirbilek
 * License: MIT
 */
.vertical-tabs {
  -webkit-border-radius: 3px;
          border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.vertical-tabs .tab-content {
  margin-left: -15px;
  margin-right: -15px;
  padding: 20px;
  padding-bottom: 70px;
  background: #fff;
}

.vertical-tabs .tab-content .tab-pane {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-border-radius: 0;
          border-radius: 0;
}

.vertical-tabs .navigation {
  position: absolute;
  bottom: 20px;
  right: 30px;
  margin-top: 0;
}

.tabs-left, .tabs-right {
  border-bottom: none;
}

.tabs-left {
  border-right: 1px solid #E7EBEC;
  margin-left: -15px;
}

.tabs-right {
  border-left: 1px solid #E7EBEC;
  margin-right: -15px;
}

.tabs-left > li, .tabs-right > li {
  float: none;
  margin-bottom: 0;
}

.tabs-left > li {
  margin-right: -2px;
}

.tabs-right > li {
  margin-left: -2px;
  margin-right: 0;
}

.tabs-left > li.active > a,
.tabs-left > li.active > a:hover,
.tabs-left > li.active > a:focus {
  border-bottom-color: #E7EBEC;
  border-right-color: transparent;
}

.tabs-right > li.active > a,
.tabs-right > li.active > a:hover,
.tabs-right > li.active > a:focus {
  border-bottom: 1px solid #E7EBEC;
  border-left-color: transparent;
  -webkit-box-shadow: 1px 0 1px -1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 0 1px -1px rgba(0, 0, 0, 0.2);
}

.tabs-left > li > a {
  -webkit-border-radius: 5px 0 0 5px;
          border-radius: 5px 0 0 5px;
  margin-right: 0;
  display: block;
}

.tabs-right > li > a {
  -webkit-border-radius: 0 5px 5px 0;
          border-radius: 0 5px 5px 0;
  margin-right: 0;
  display: block;
  -webkit-box-shadow: 1px 0 1px -1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 0 1px -1px rgba(0, 0, 0, 0.2);
}

/*Contacts Page*/
.contact-info {
  padding-left: 50px;
  margin-top: 10px;
}

.contact-info i {
  margin-right: 5px;
}

.contact-info p {
  margin: 0;
}

.contact-info p:first-child {
  margin-bottom: 10px;
}

/*Data Table styles*/
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {
  top: 8px;
  left: 4px;
  height: 16px;
  width: 16px;
  display: block;
  position: absolute;
  color: white;
  border: 2px solid white;
  -webkit-border-radius: 16px;
          border-radius: 16px;
  text-align: center;
  line-height: 14px;
  -webkit-box-shadow: 0 0 3px #444;
          box-shadow: 0 0 3px #444;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  content: '+';
  background-color: #31b131;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child.dataTables_empty:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child.dataTables_empty:before {
  display: none;
}

table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
  content: '-';
  background-color: #d33333;
}

table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {
  display: none;
}

table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {
  padding-left: 27px;
}

table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {
  top: 5px;
  left: 4px;
  height: 14px;
  width: 14px;
  -webkit-border-radius: 14px;
          border-radius: 14px;
  line-height: 12px;
}

table.dataTable.dtr-column > tbody > tr > td.control,
table.dataTable.dtr-column > tbody > tr > th.control {
  position: relative;
  cursor: pointer;
}

table.dataTable.dtr-column > tbody > tr > td.control:before,
table.dataTable.dtr-column > tbody > tr > th.control:before {
  top: 50%;
  left: 50%;
  height: 16px;
  width: 16px;
  margin-top: -10px;
  margin-left: -10px;
  display: block;
  position: absolute;
  color: white;
  border: 2px solid white;
  -webkit-border-radius: 16px;
          border-radius: 16px;
  text-align: center;
  line-height: 14px;
  -webkit-box-shadow: 0 0 3px #444;
          box-shadow: 0 0 3px #444;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  content: '+';
  background-color: #31b131;
}

table.dataTable.dtr-column > tbody > tr.parent td.control:before,
table.dataTable.dtr-column > tbody > tr.parent th.control:before {
  content: '-';
  background-color: #d33333;
}

table.dataTable > tbody > tr.child {
  padding: 0.5em 1em;
}

table.dataTable > tbody > tr.child:hover {
  background: transparent !important;
}

table.dataTable > tbody > tr.child ul {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

table.dataTable > tbody > tr.child ul li {
  border-bottom: 1px solid #efefef;
  padding: 0.5em 0;
}

table.dataTable > tbody > tr.child ul li:first-child {
  padding-top: 0;
}

table.dataTable > tbody > tr.child ul li:last-child {
  border-bottom: none;
}

table.dataTable > tbody > tr.child span.dtr-title {
  display: inline-block;
  min-width: 75px;
  font-weight: bold;
}

.dataTables_wrapper {
  margin-top: 30px;
}

.dataTables_wrapper table {
  width: 100%;
  cellspacing: 0;
}

.dataTables_wrapper .DTTT_container {
  margin-left: 10px;
}

.dataTables_wrapper a.DTTT_button {
  background: #fff;
  border-color: #E7EBEC;
  font-size: 14px;
  padding: 6px 12px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.dataTables_wrapper a.DTTT_button:hover {
  background: #fff;
  border-color: #348e67;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.dataTables_wrapper .dataTables_info {
  font-weight: 400;
}

.dataTables_wrapper .dataTables_paginate {
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 5px;
          border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 30px;
  margin-right: 5px;
  padding: 0;
  overflow: hidden;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  background: #fff;
  padding: 6px 12px;
  border-right: 1px solid #E7EBEC;
  color: #009a58 !important;
  margin: 0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover, .dataTables_wrapper .dataTables_paginate .paginate_button:active, .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: #009a58;
  color: #fff !important;
  border-color: #009a58;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.next {
  border-right: none;
}

.dataTables_filter input, .dataTables_length select {
  border: 1px solid #E7EBEC;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  padding: 6px 12px;
}

.dataTables_filter input:focus, .dataTables_length select:focus {
  outline-color: #428bca;
}

table.dataTable thead th {
  border-top: 1px solid #E7EBEC;
  padding-left: 10px;
}

table.dataTable thead .sorting_asc {
  background-image: url("../img/sort-btns/sort_asc.png");
}

table.dataTable thead .sorting_desc {
  background-image: url("../img/sort-btns/sort_desc.png");
}

table.dataTable thead .sorting {
  background-image: url("../img/sort-btns/sort_both.png");
}

table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
  background-color: #fff;
}

table.dataTable.stripe tbody tr.even, table.dataTable.display tbody tr.even, table.dataTable thead th.sorting {
  background-color: #f6f6f6;
}

table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
  background-color: #f8f8f8;
}

table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1, table.dataTable thead th.sorting_asc, table.dataTable thead th.sorting_desc {
  background-color: #E9E9E9;
}

table.dataTable.no-footer, table.dataTable thead th, table.dataTable thead td {
  border-bottom: 1px solid #E7EBEC;
}

.wizard-container .progress {
  height: 4px;
  margin-bottom: 30px;
}

.wizard-container .nav-tabs > li a {
  border-bottom: 0;
}

.wizard-container .nav-pills > li > a {
  -webkit-border-bottom-left-radius: 0;
          border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
          border-bottom-right-radius: 0;
}

.wizard-container .tab-content {
  margin-top: -1px;
}

.wizard-container .form-control:focus {
  border-color: #009a58;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.fc-calendar {
  background: #fff;
  margin-bottom: 30px;
  -webkit-border-radius: 3px;
          border-radius: 3px;
}

.fc-calendar .fc-toolbar {
  background: #428bca;
  color: #fff;
  padding: 5%;
  margin: 0;
  position: relative;
}

.fc-calendar .fc-toolbar .fc-center h2 {
  font-size: 60px;
  font-weight: 100;
  text-transform: uppercase;
}

.fc-calendar .fc-toolbar .fc-prev-button, .fc-calendar .fc-toolbar .fc-next-button {
  position: absolute;
  background: transparent;
  border: none;
  -webkit-border-radius: 0;
          border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
}

.fc-calendar .fc-toolbar .fc-next-button {
  right: 20px;
}

.fc-calendar .fc-toolbar .fc-prev-button {
  left: 20px;
}

.fc-calendar .fc-toolbar .fc-right {
  position: absolute;
  bottom: 15px;
  right: 20px;
}

.fc-calendar .fc-toolbar .fc-right button {
  background: transparent;
  border: none;
  -webkit-border-radius: 0;
          border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
}

.fc-calendar .fc-toolbar .fc-right .fc-state-active {
  font-weight: 700;
}

.fc-calendar .fc-day-header {
  text-transform: uppercase;
  color: #428bca;
  font-size: 14px;
  font-weight: 700;
  padding: 8px;
}

.fc-event {
  border: 0;
  padding: 8px;
  font-size: 14px;
  margin-bottom: 3px;
}

.external-events .fc-event {
  margin-bottom: 10px;
}

.external-events form .form-group {
  width: 100%;
  margin-bottom: 20px;
}

.external-events form .input-group {
  width: 100%;
}

.external-events form .input-group input {
  border-right: 0;
}

.external-events form .input-group input:focus {
  border-color: #E7EBEC;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.external-events form .input-group-addon {
  background: #fff;
}

.external-events .remove-event {
  float: right;
  cursor: pointer;
}

.external-events button {
  background: transparent;
  border: 0;
  font-size: 18px;
  margin-right: -12px;
}

.event-tag span {
  width: 25px;
  height: 25px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.event-tag span.selected:before {
  width: 13px;
  height: 13px;
  top: 6px;
  left: 6px;
  position: absolute;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: #fff;
  content: "";
}

.irs-line-mid,
.irs-bar,
.irs-bar-edge,
.irs-slider {
  background: #90c1f1;
}

.irs {
  height: 50px;
}

.irs-with-grid {
  height: 70px;
}

.irs-line {
  height: 6px;
  top: 25px;
  background: #e4e4e4;
}

.irs-bar {
  height: 6px;
  top: 25px;
}

.irs-bar-edge {
  top: 25px;
  height: 6px;
  width: 8px;
}

.irs-slider {
  width: 16px;
  height: 16px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  top: 20px;
}

.irs-min, .irs-max {
  color: #76828E;
  font-size: 12px;
  font-weight: 400;
  text-shadow: none;
  top: 0;
  padding: 3px 8px;
  background: #e4e4e4;
  -webkit-border-radius: 3px;
          border-radius: 3px;
}

.irs-from, .irs-to, .irs-single {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-shadow: none;
  padding: 3px 8px;
  background: #90c1f1;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  top: -12px;
}

.irs-from:after, .irs-to:after, .irs-single:after {
  position: absolute;
  display: block;
  content: "";
  bottom: -12px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -6px;
  overflow: hidden;
  border: 6px solid transparent;
  border-top-color: #90c1f1;
}

.irs-grid {
  height: 34px;
}

.irs-grid-pol {
  background: #c0c0c0;
}

.irs-grid-text {
  bottom: 12px;
  color: #76828E;
}

.sliders h2, .sliders .item {
  margin-bottom: 40px;
}

.sliders p {
  font-weight: 400;
  padding-top: 8px;
}

.modal {
  z-index: 1950;
}

.todo {
  padding: 0px;
}

.todo .radio, .todo .checkbox {
  display: inline-block;
  margin: 0px;
  width: -webkit-calc(100% - 90px);
  width: calc(100% - 90px);
  overflow: hidden;
}

.todo input[type=checkbox]:checked + i + span {
  text-decoration: line-through;
}

.todo .list-group-item {
  border-bottom: 0;
  border-top: 0;
  border-right: 0;
  -webkit-border-radius: 0;
          border-radius: 0;
  margin-bottom: 3px;
  background: #F3F3F3;
}

.todo .list-group-item:hover, .todo .list-group-item:focus {
  text-decoration: none;
}

.todo .list-group {
  margin-bottom: 0px;
}

.todo .action-btns {
  width: 75px;
}

.todo .action-btns a {
  margin-left: 20px;
  font-size: 16px;
}

.todo .action-btns a span {
  color: #585050;
}

.todo .checked-todo {
  background: #EAEBED;
}

.todo .checked-todo .action-btns a span {
  color: #9C9C9C;
}

.list-primary {
  border-left: 3px solid #428bca;
}

.list-info {
  border-left: 3px solid #90c1f1;
}

.list-success {
  border-left: 3px solid #009a58;
}

.list-warning {
  border-left: 3px solid #fdbe00;
}

.list-danger {
  border-left: 3px solid #d9534f;
}

.add-todo input {
  border-left: 0;
}

.add-todo input:focus {
  border-color: #E7EBEC;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.add-todo .input-group-addon {
  background: #fff;
}

.clear-todo {
  padding-left: 20px !important;
}

.sort-todo {
  margin-bottom: 20px;
}

.sort-todo a {
  color: #76828E;
  font-weight: 400;
  font-size: 16px;
  margin-right: 10px;
}

.sort-todo a:hover {
  text-decoration: none;
}

.panel-box p {
  margin: 20px 0;
  font-weight: 400;
}

a.thumbnail.active, a.thumbnail:focus, a.thumbnail:hover {
  border-color: #428bca;
}

.form-control {
  border-color: #ced4da;
  border-radius: .25rem;
  height: 36px;
  min-height: 36px;
  padding: 6px 8px;
  font-size: 12px !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-control:focus,
.select2-container-active:not(.select2-dropdown-open):not(.inp_error),
.select2-input.select2-focused {
  border-color: #66afe9;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.form-control.inp_error:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(200,59,45,.25);
  box-shadow: 0 0 0 0.2rem rgba(200,59,45,.25);
}

.input-group-addon {
  border-color: #E7EBEC;
}

.form-inline .form-group {
  margin-right: 20px;
}

.form-inline .btn {
  margin-right: 10px;
}

.project-wrapper {
  background: transparent !important;
}

.project-box {
  -webkit-border-radius: 3px;
          border-radius: 3px;
  padding: 10px;
  width: -webkit-calc(100% - 100px);
  width: calc(100% - 100px);
}

.project-box > div {
  width: 25%;
}

.project-box .project-progress {
  margin-top: 4px;
}

.project-box .project-progress .progress {
  -webkit-border-radius: 3px;
          border-radius: 3px;
  margin-bottom: 0;
}

.project-box .project-tools {
  margin-top: 5px;
}

.project-box .project-tools a {
  font-size: 20px;
  margin-right: 12px;
  color: #76828E;
}

.project-box .responsible {
  display: none;
  font-size: 20px;
  margin-right: 12px;
  margin-top: 8px;
  position: relative;
}

.project-box .responsible .label {
  position: absolute;
  top: -5px;
  right: -15px;
  font-size: 12px;
}

.project-box .mobile-tools {
  display: none;
}

.project-item {
  margin-bottom: 12px;
  display: inline-block;
  width: 100%;
  position: relative;
}

.project-item .status-desktop, .project-item .status-mobile {
  margin-top: 20px;
  font-weight: 400;
  width: 100px;
}

.project-item .status-desktop span:before, .project-item .status-mobile span:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.project-item .status-desktop .active:before, .project-item .status-mobile .active:before {
  background: #009a58;
}

.project-item .status-desktop .unactive:before, .project-item .status-mobile .unactive:before {
  background: #d9534f;
}

.project-item .status-mobile {
  position: absolute;
  top: -5px;
  left: 10px;
  display: none;
  background: #fff;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  color: #76828E;
  padding: 5px;
}

.mail-box {
  background: transparent !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.mail-box ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

.inbox-body {
  padding: 20px 0;
}

.inbox-body .dropdown-menu {
  left: -55px;
  top: 36px;
}

.inbox-body .dropdown-menu.more {
  left: -74px;
  top: 42px;
}

.inbox-compose {
  margin-bottom: 20px;
  margin-top: 20px;
}

.inbox-compose > a {
  padding: 12px;
}

.inbox-compose.inbox-m {
  margin-top: 60px !important;
}

.inbox-compose .email-header {
  padding: 15px 80px 22px 35px !important;
}

.inbox-divider {
  border-bottom: 1px solid #d5d8df;
}

.inbox-checkbox {
  width: 50px;
}

ul.inbox-nav li, ul.labels-info li {
  display: inline-block;
  line-height: 38px;
  width: 100%;
  margin-bottom: 3px;
}

ul.inbox-nav li a, ul.labels-info li a {
  color: #76828E;
  display: inline-block;
  line-height: 38px;
  padding: 0 20px;
  width: 100%;
}

ul.inbox-nav li a span.label, ul.labels-info li a span.label {
  margin-top: 11px;
}

ul.inbox-nav li a i, ul.labels-info li a i {
  font-size: 16px;
  padding-right: 10px;
}

ul.inbox-nav li a:hover, ul.inbox-nav li.active a, ul.inbox-nav li a:focus {
  background: #428bca;
  color: #fff;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  text-decoration: none;
}

ul.inbox-nav li a:hover i, ul.inbox-nav li.active a i, ul.inbox-nav li a:focus i {
  color: #fff;
}

ul.labels-info li {
  margin: 0;
}

ul.labels-info li h4 {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 5px;
  text-transform: uppercase;
}

ul.labels-info li a:hover {
  background: #fff;
}

.inbox-head, .contacts-search, .projects-search {
  min-height: 65px;
/*  padding: 20px 0;*/
}

.inbox-head .search-input, .contacts-search .search-input, .projects-search .search-input {
  border: 1px solid #E7EBEC;
  -webkit-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
  /* -webkit-box-shadow: none; */
  /* box-shadow: none; */
  color: #8a8a8a;
  float: left;
  height: 40px;
  padding: 0 10px;
}

.inbox-head .search-input:focus, .contacts-search .search-input:focus, .projects-search .search-input:focus {
  outline: none;
}

.inbox-head .search-btn, .contacts-search .search-btn, .projects-search .search-btn {
  background: #428bca;
  border: none;
  -webkit-border-radius: 0 3px 3px 0;
          border-radius: 0 3px 3px 0;
  color: #fff;
  height: 40px;
  padding: 0 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.table-inbox {
  border: 1px solid #E7EBEC;
  margin-bottom: 0;
}

.table-inbox tr {
  background: #fff;
}

.table-inbox tr td {
  padding: 12px !important;
  white-space: normal !important;
  border-color: #E7EBEC !important;
}

.table-inbox tr td a {
  color: #76828E;
}

.table-inbox tr td .checkbox {
  margin: 0;
}

.table-inbox tr td .fa-star {
  color: #d5d5d5;
}

.table-inbox tr td:hover {
  cursor: pointer;
}

.table-inbox tr td .fa-star.inbox-starred, .table-inbox tr td .fa-star:hover {
  color: #fdbe00;
}

.table-inbox tr.unread td {
  background: #F9FCDF;
  font-weight: 700;
}

.mail-option {
  display: inline-block;
  margin-bottom: 10px;
  width: 100%;
}

.mail-option .checkbox {
  margin: 0;
}

.mail-option .check-all, .mail-option .btn-group {
  margin-right: 5px;
}

.mail-option .check-all, .mail-option .btn-group a.btn {
  background: #fcfcfc;
  border: 1px solid #e7e7e7;
  -webkit-border-radius: 3px !important;
          border-radius: 3px !important;
  color: #afafaf;
  display: inline-block;
  padding: 5px 10px;
}

.mail-option .check-all input[type="checkbox"] {
  margin-top: 0;
}

.mail-option .btn-group {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.mail-option .btn-group a.all {
  border: none;
  padding: 0;
}

ul.inbox-pagination {
  float: right;
}

ul.inbox-pagination li {
  float: left;
}

.inbox-pagination a {
  background: #fcfcfc;
  border: 0;
  -webkit-border-radius: 3px !important;
          border-radius: 3px !important;
  color: #afafaf;
  display: inline-block;
  padding: 5px 15px;
  margin-left: 5px;
}

.inbox-pagination li span {
  display: inline-block;
  margin-right: 5px;
  margin-top: 7px;
}

.checked-tr td {
  background: #FBFBD7 !important;
}

.inbox-body .modal .modal-body input, .inbox-body .modal .modal-body textarea {
  border: 1px solid #E7EBEC;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.modal-body label {
  font-weight: 400;
}

.heading-inbox h4 {
  border-bottom: 1px solid #ddd;
  font-size: 18px;
  margin-top: 20px;
  padding-bottom: 10px;
}

.email-container, .contacts-search, .projects-search {
  position: relative;
}

.email-container form, .email-container .input-group, .contacts-search form, .contacts-search .input-group, .projects-search form, .projects-search .input-group {
  width: 100%;
}

.email-container .search-input, .contacts-search .search-input, .projects-search .search-input {
  width: -webkit-calc(100% - 60px);
  width: calc(100% - 60px);
}

.email-container .search-btn, .contacts-search .search-btn, .projects-search .search-btn {
  width: 60px;
}

.email-content, .email-new {
  max-width: 700px;
  position: fixed;
  margin-top: 56px;
  height: -webkit-calc(100% - 56px);
  height: calc(100% - 56px);
  top: 0px;
  z-index: 600;
  right: -725px;
  -webkit-box-shadow: -5px 0 11px 0px rgba(0,0,0,.2);
  box-shadow: -5px 0 11px 0px rgba(0,0,0,.2);
  -webkit-transition: all, .7s;
  transition: all, .3s;
}

.email-content .email-header, .email-new .email-header {
  position: relative;
  padding: 40px 80px 45px 35px;
}

.email-content .close-button, .email-content .email-actions, .email-new .close-button, .email-new .email-actions {
  position: absolute;
  top: 15px;
  right: 20px;
}

.email-content .email-actions, .email-new .email-actions {
  bottom: 15px;
  top: auto;
}

.email-content .email-actions .actions, .email-new .email-actions .actions {
  margin-right: 12px;
}

.email-content .email-actions .dropdown-menu, .email-new .email-actions .dropdown-menu {
  top: 44px;
}

.email-content .email-actions .dropdown-menu:before, .email-new .email-actions .dropdown-menu:before {
  right: 92px;
}

.email-content .mail-header, .email-new .mail-header {
  margin-bottom: 30px;
}

.email-content .mail-header .mail-header-main, .email-new .mail-header .mail-header-main {
  width: 50%;
}

.email-content .mail-header .avatar, .email-content .mail-header .time, .email-new .mail-header .avatar, .email-new .mail-header .time {
  margin-right: 12px;
}

.email-content .mail-header .mail-label i, .email-new .mail-header .mail-label i {
  margin-right: 3px;
}

.email-content .mail-attachments, .email-new .mail-attachments {
  margin-top: 40px;
}

.email-content .mail-attachments p i, .email-new .mail-attachments p i {
  margin-right: 5px;
}

.email-content .mail-attachments .list-group, .email-new .mail-attachments .list-group {
  margin-top: 20px;
  margin-bottom: 35px;
}

.email-content .mail-attachments .list-group-item .btn, .email-new .mail-attachments .list-group-item .btn {
  border: 1px solid #E7EBEC;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.list-group-item {
  border-color: #E7EBEC;
}

.email-container .email-view, .email-container .email-compose {
  max-width: 100% !important;
  position: relative !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  right: auto !important;
  top: auto !important;
  border: 1px solid #E7EBEC;
}

.email-container .email-view .email-body, .email-container .email-compose .email-body {
  overflow-y: visible !important;
}

.email-active {
  right: 0 !important;
  z-index: 1100;
}

.note-editor {
  border-color: #E7EBEC;
  overflow: visible;
}

.note-editor .note-toolbar {
  background: #E7EBEC;
  border-color: #E7EBEC;
}

.note-editor .note-toolbar .btn-group {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.note-editor .note-statusbar {
  background-color: #E7EBEC;
}

.note-editor .dropdown-menu {
  left: -18px;
  top: 38px;
}

.note-editor .dropdown-menu li a {
  padding: 5px !important;
  color: #76828E !important;
}

.note-editor .dropdown-menu li a i {
  color: #428bca !important;
}

.fileinput-new.input-group .btn-file, .fileinput-new .input-group .btn-file {
  -webkit-border-radius: 3px 0 0 3px;
          border-radius: 3px 0 0 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #E7EBEC;
  border-right: 0;
}

.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
  border-color: #428bca;
  background-color: #428bca;
}

.profile-sidebar {
  padding: 20px 0 10px 0;
  background: #fff;
  -webkit-border-radius: 3px;
          border-radius: 3px;
}

.profile-usertitle {
  text-align: center;
  margin-top: 20px;
}

.profile-usertitle .profile-usertitle-name {
  color: #5a7391;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 7px;
}

.profile-usertitle .profile-usertitle-job {
  text-transform: uppercase;
  color: #5b9bd1;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.profile-userbuttons {
  text-align: center;
  margin-top: 18px;
}

.profile-userbuttons .btn {
  text-transform: uppercase;
  padding: 6px 15px;
  margin-right: 5px;
}

.profile-userbuttons .btn:last-child {
  margin-right: 0px;
}

.profile-usermenu {
  margin-top: 40px;
}

.profile-usermenu ul li {
  border-bottom: 1px solid #EFEFEF;
}

.profile-usermenu ul li:last-child {
  border-bottom: none;
}

.profile-usermenu ul li a {
  color: #76828E;
  font-size: 14px;
  font-weight: 400;
}

.profile-usermenu ul li a:hover {
  background-color: #fafcfd;
  color: #428bca;
}

.profile-usermenu ul li a i {
  margin-right: 8px;
  font-size: 14px;
}

.profile-usermenu ul li.active {
  border-bottom: none;
}

.profile-usermenu ul li.active a {
  border-left: 2px solid #428bca;
  padding-left: 12px;
}

.timeline-container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .timeline-container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .timeline-container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .timeline-container {
    width: 1170px;
  }
}

.cbp_tmtimeline {
  margin: 30px 0 0 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.cbp_tmtimeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px;
  background: #afdcf8;
  left: 20%;
  margin-left: -10px;
}

.cbp_tmtimeline > li .cbp_tmtime {
  display: block;
  width: 25%;
  padding-right: 100px;
  position: absolute;
}

.cbp_tmtimeline > li .cbp_tmtime span {
  display: block;
  text-align: right;
}

.cbp_tmtimeline > li .cbp_tmtime span:first-child {
  font-size: 0.9em;
  color: #bdd0db;
}

.cbp_tmtimeline > li .cbp_tmtime span:last-child {
  font-size: 2.9em;
  color: #368fe5;
}

.cbp_tmtimeline > li:nth-child(odd) .cbp_tmtime span:last-child {
  color: #428bca;
}

.cbp_tmtimeline > li .cbp_tmlabel {
  margin: 0 0 15px 25%;
  background: #368fe5;
  color: #fff;
  padding: 2em;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.4;
  position: relative;
  -webkit-border-radius: 3px;
          border-radius: 3px;
}

.cbp_tmtimeline > li .cbp_tmlabel p {
  font-size: 14px;
}

.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel {
  background: #428bca;
}

.cbp_tmtimeline > li .cbp_tmlabel h2 {
  margin-top: 0px;
  padding: 0 0 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 16px;
}

.cbp_tmtimeline > li .cbp_tmlabel:after {
  right: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-right-color: #3594cb;
  border-width: 10px;
  top: 10px;
}

.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
  border-right-color: #428bca;
}

.cbp_tmtimeline > li .cbp_tmicon {
  width: 40px;
  height: 40px;
  font-family: 'FontAwesome';
  text-transform: none;
  font-size: 1.4em;
  line-height: 40px;
  position: absolute;
  color: #fff;
  background: #368fe5;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -webkit-box-shadow: 0 0 0 8px #afdcf8;
          box-shadow: 0 0 0 8px #afdcf8;
  text-align: center;
  left: 20%;
  top: 0;
  margin: 0 0 0 -25px;
}

.cbp_tmicon-phone:before {
  content: "\f10b";
}

.cbp_tmicon-screen:before {
  content: "\f108";
}

.cbp_tmicon-mail:before {
  content: "\f003";
}

.cbp_tmicon-earth:before {
  content: "\f0ac";
}

.smk-alert-content .fa {
  font-size: 20px;
  float: left;
  margin-right: 14px;
}

/* Common, default styles for the notification box. Adapted from http://tympanus.net/codrops/2014/07/23/notification-styles-inspiration*/
.ns-box {
  position: fixed;
  background: #368fe5;
  padding: 17px 22px;
  line-height: 1.4;
  z-index: 4000;
  pointer-events: none;
  color: #fff;
  font-size: 90%;
}

.ns-box a {
  color: inherit;
  opacity: 0.7;
  font-weight: 700;
}

.ns-box a:hover, .ns-box a:focus {
  opacity: 1;
}

.ns-box p {
  margin: 0;
}

.ns-box .fa {
  margin-left: -5px;
}

.ns-box.ns-show,
.ns-box.ns-visible {
  pointer-events: auto;
}

.ns-close {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 4px;
  top: 4px;
  overflow: hidden;
  text-indent: 100%;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ns-close:hover, .ns-close:focus {
  outline: none;
}

.ns-close:before, .ns-close:after {
  content: '';
  position: absolute;
  width: 3px;
  height: 60%;
  top: 50%;
  left: 50%;
  background: #6e6e6e;
}

.ns-close:hover::before, .ns-close:hover::after {
  background: #fff;
}

.ns-close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.ns-close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

/* Growl-style notifications */
.ns-attached {
  left: 30px;
  max-width: 300px;
}

[class^="ns-effect-"].ns-attached.ns-hide,
[class*=" ns-effect-"].ns-attached.ns-hide {
  -webkit-animation-direction: reverse;
          animation-direction: reverse;
}

#welcome .ns-box {
  left: auto;
  right: 30px;
  top: 65px !important;
  padding: 30px 60px !important;
}

#welcome .ns-box span {
  font-size: 14px;
  color: #fff !important;
}

/* Individual effects */
/* Flip */
.ns-effect-flip {
  background: #9bd1a2;
  -webkit-transform-origin: 50% 100%;
      -ms-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  bottom: 0px;
  font-size: 1.15em;
  padding: 1.5em;
  max-width: 280px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.ns-effect-flip .ns-close::before,
.ns-effect-flip .ns-close::after {
  background: #5a9862;
}

.ns-effect-flip .ns-close:hover::before,
.ns-effect-flip .ns-close:hover::after {
  background: #4e8455;
}

.ns-effect-flip.ns-show,
.ns-effect-flip.ns-hide {
  -webkit-animation-name: animFlipFront;
          animation-name: animFlipFront;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}

.ns-effect-flip.ns-hide {
  -webkit-animation-name: animFlipBack;
          animation-name: animFlipBack;
}

@-webkit-keyframes animFlipFront {
  0% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, -90deg);
            transform: perspective(1000px) rotate3d(1, 0, 0, -90deg);
  }
  100% {
    -webkit-transform: perspective(1000px);
            transform: perspective(1000px);
  }
}

@keyframes animFlipFront {
  0% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, -90deg);
            transform: perspective(1000px) rotate3d(1, 0, 0, -90deg);
  }
  100% {
    -webkit-transform: perspective(1000px);
            transform: perspective(1000px);
  }
}

@-webkit-keyframes animFlipBack {
  0% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
  }
  100% {
    -webkit-transform: perspective(1000px);
            transform: perspective(1000px);
  }
}

@keyframes animFlipBack {
  0% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
  }
  100% {
    -webkit-transform: perspective(1000px);
            transform: perspective(1000px);
  }
}

/* Bouncy Flip adapted from animate.css by Dan Eden: http://daneden.github.io/animate.css/ */
.ns-effect-bouncyflip {
  -webkit-transform-origin: 50% 0%;
      -ms-transform-origin: 50% 0%;
          transform-origin: 50% 0%;
  background: #fdbe00;
  color: #484860;
  top: 0;
  -webkit-box-shadow: 0 13px 10px -5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 13px 10px -5px rgba(0, 0, 0, 0.2);
}

.ns-effect-bouncyflip .icon {
  position: absolute;
  display: block;
  top: 2em;
  left: 2em;
}

.ns-effect-bouncyflip p {
  padding: 0.5em 0.8em 0.8em 3.5em;
}

.ns-effect-bouncyflip .ns-close::after,
.ns-effect-bouncyflip .ns-close::before {
  background: #fff;
  opacity: .7;
}

.ns-effect-bouncyflip .ns-close:hover::after,
.ns-effect-bouncyflip .ns-close:hover::before {
  opacity: 1;
}

.ns-effect-bouncyflip.ns-show,
.ns-effect-bouncyflip.ns-hide {
  background: #fdbe00;
  color: #fff !important;
  -webkit-animation-name: flipInX;
          animation-name: flipInX;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 20deg);
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -10deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 5deg);
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 20deg);
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -10deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 5deg);
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

.ns-effect-bouncyflip.ns-hide {
  -webkit-animation-name: flipInXSimple;
          animation-name: flipInXSimple;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}

@-webkit-keyframes flipInXSimple {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@keyframes flipInXSimple {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@media screen and (max-width: 25em) {
  .ns-attached {
    left: 30px;
    max-width: none;
    right: 30px;
  }
}

/* To bar notifications */
.ns-box.ns-bar {
  top: 0;
  left: 0;
  width: 100%;
}

.ns-bar .ns-close {
  background: transparent;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ns-bar .ns-close:before, .ns-bar .ns-close:after {
  background: #fff;
}

[class^="ns-effect-"].ns-bar.ns-hide,
[class*=" ns-effect-"].ns-bar.ns-hide {
  -webkit-animation-direction: reverse;
          animation-direction: reverse;
}

/* Individual Effects */
/* Slide on top */
.ns-effect-slidetop {
  -webkit-box-shadow: inset 4.5em 0 rgba(0, 0, 0, 0.6);
          box-shadow: inset 4.5em 0 rgba(0, 0, 0, 0.6);
}

.ns-effect-slidetop p {
  padding: 0 3.2em;
  font-size: 1.2em;
  display: inline-block;
}

.ns-effect-slidetop .fa {
  position: absolute;
}

.ns-effect-slidetop .ns-close::before,
.ns-effect-slidetop .ns-close::after {
  width: 2px;
  background: #fff;
}

.ns-effect-slidetop .ns-close:hover::before,
.ns-effect-slidetop .ns-close:hover::after {
  background: #fff;
}

.ns-effect-slidetop.ns-show p {
  -webkit-animation: animScaleUp 0.3s 0.2s both;
          animation: animScaleUp 0.3s 0.2s both;
}

.ns-effect-slidetop.ns-show p {
  -webkit-animation-name: animFade;
          animation-name: animFade;
}

@-webkit-keyframes animScaleUp {
  0% {
    -webkit-transform: translate3d(0, -50%, 0) scale3d(0, 0, 1);
            transform: translate3d(0, -50%, 0) scale3d(0, 0, 1);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, -50%, 0) scale3d(1, 1, 1);
            transform: translate3d(0, -50%, 0) scale3d(1, 1, 1);
  }
}

@keyframes animScaleUp {
  0% {
    -webkit-transform: translate3d(0, -50%, 0) scale3d(0, 0, 1);
            transform: translate3d(0, -50%, 0) scale3d(0, 0, 1);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, -50%, 0) scale3d(1, 1, 1);
            transform: translate3d(0, -50%, 0) scale3d(1, 1, 1);
  }
}

.ns-effect-slidetop.ns-show,
.ns-effect-slidetop.ns-hide {
  -webkit-animation-name: animSlideTop;
  animation-name: animSlideTop;
  -webkit-animation-duration: 0.1s;
  animation-duration: 0.1s;
}

@-webkit-keyframes animSlideTop {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes animSlideTop {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

/* Expanding Loader */
.ns-effect-exploader {
  color: #fff;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
}

.ns-effect-exploader .ns-box-inner {
  position: relative;
}

.ns-effect-exploader p {
  padding: 0.25em 2em 0.25em 3em;
}

.ns-effect-exploader .ns-close:hover::before,
.ns-effect-exploader .ns-close:hover::after {
  background: #fff;
}

.ns-effect-exploader.ns-show {
  -webkit-animation-name: animLoad;
          animation-name: animLoad;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

@-webkit-keyframes animLoad {
  0% {
    opacity: 1;
    -webkit-transform: scale3d(0, 0.3, 1);
            transform: scale3d(0, 0.3, 1);
  }
  33% {
    opacity: 1;
    -webkit-transform: scale3d(0.5, 0.3, 1);
            transform: scale3d(0.5, 0.3, 1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(0.6, 0.3, 1);
            transform: scale3d(0.6, 0.3, 1);
  }
  80%, 85% {
    opacity: 1;
    -webkit-transform: scale3d(1, 0.3, 1);
            transform: scale3d(1, 0.3, 1);
    -webkit-animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
            animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes animLoad {
  0% {
    opacity: 1;
    -webkit-transform: scale3d(0, 0.3, 1);
            transform: scale3d(0, 0.3, 1);
  }
  33% {
    opacity: 1;
    -webkit-transform: scale3d(0.5, 0.3, 1);
            transform: scale3d(0.5, 0.3, 1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(0.6, 0.3, 1);
            transform: scale3d(0.6, 0.3, 1);
  }
  80%, 85% {
    opacity: 1;
    -webkit-transform: scale3d(1, 0.3, 1);
            transform: scale3d(1, 0.3, 1);
    -webkit-animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
            animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.ns-effect-exploader.ns-hide {
  -webkit-animation-name: animFade;
          animation-name: animFade;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}

.ns-effect-exploader.ns-show .ns-box-inner,
.ns-effect-exploader.ns-show .ns-close {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.ns-effect-exploader.ns-show .ns-close {
  -webkit-animation-name: animFade;
          animation-name: animFade;
}

.ns-effect-exploader.ns-show .ns-box-inner {
  -webkit-animation-name: animFadeMove;
          animation-name: animFadeMove;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@-webkit-keyframes animFadeMove {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes animFadeMove {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes animFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes animFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.ns-avatar {
  overflow: hidden;
  width: 0px;
  height: 0px;
  opacity: 0;
}

.ns-thumb img {
  width: 64px;
  height: 64px;
}

.shape-progress {
  bottom: 100px;
}

.shape-progress svg path {
  stroke: #009a58;
}

body .ns-effect-loadingcircle {
  background-color: #009a58 !important;
  color: #fff !important;
}

.ns-effect-scale .ns-close::before, .ns-effect-scale .ns-close::after, .ns-effect-genie .ns-close::before, .ns-effect-genie .ns-close::after, .ns-effect-jelly .ns-close::before, .ns-effect-jelly .ns-close::after, .ns-effect-slide .ns-close::before, .ns-effect-slide .ns-close::after {
  background: #fff;
}

.progress-button {
  position: relative;
  display: inline-block;
  outline: none;
  border: none;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 50;
  overflow: hidden;
}

.progress-button .content {
  position: relative;
  display: block;
  z-index: 10;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
}

.progress-button .progress {
  position: absolute;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  width: 0%;
  opacity: 0;
  height: 100%;
  z-index: 0;
  -webkit-transition: width 0s 0.3s, opacity 0.3s;
          transition: width 0s 0.3s, opacity 0.3s;
}

.progress-button.active .progress {
  opacity: 1;
  width: 100%;
  -webkit-transition: width 1.2s;
          transition: width 1.2s;
}

.ns-type-error {
  background: #d9534f !important;
}

.ns-type-warning {
  background: #e4ad06 !important;
}

.ns-type-success {
  background: #348e67 !important;
}

.chat .chat-container {
  display: inline-block;
  width: 98%;
}

.chat .content-title {
  padding-bottom: 10px;
}

.chat .slimScrollDiv {
  margin-bottom: 20px;
}

.chat ul::before {
  content: none;
}

.chat .chat-double {
  margin-bottom: 0;
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
}

.chat .chat-double li {
  margin-bottom: 20px;
  position: relative;
}

.chat .chat-double li:before, .chat .chat-double li:after {
  content: " ";
  display: table;
}

.chat .chat-double li:after {
  clear: both;
}

.chat .chat-double li .chat-panel {
  width: 46%;
  float: left;
  border: 1px solid #E7EBEC;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  background: #fff;
  padding: 20px;
  position: relative;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
          box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}

.chat .chat-double li .chat-panel:before {
  position: absolute;
  top: 10px;
  right: -10px;
  display: inline-block;
  border-top: 10px solid transparent;
  border-left: 10px solid #E7EBEC;
  border-right: 0 solid #E7EBEC;
  border-bottom: 10px solid transparent;
  content: " ";
}

.chat .chat-double li .chat-panel:after {
  position: absolute;
  top: 11px;
  right: -9px;
  display: inline-block;
  border-top: 9px solid transparent;
  border-left: 9px solid #fff;
  border-right: 0 solid #fff;
  border-bottom: 9px solid transparent;
  content: " ";
}

.chat .chat-double li .chat-panel .note-editor {
  margin-top: 10px;
}

.chat .chat-double li .chat-badge {
  width: 17px;
  height: 17px;
  position: absolute;
  top: 13px;
  left: 50%;
  margin-left: -8px;
  background-color: #999999;
  z-index: 100;
  -webkit-border-radius: 50%;
          border-radius: 50%;
}

.chat .chat-double .now {
  position: absolute;
  left: 50%;
  top: -14px;
  margin-left: -38px;
}

.chat .chat-double .now span {
  padding: 6px 20px;
  color: #fff;
  background: #fdbe00;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  width: 76px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
}

.chat .chat-double .more {
  position: absolute;
  left: 50%;
  bottom: -52px;
  margin-left: -32px;
}

.chat .chat-double .chat-year {
  position: absolute;
  left: 50%;
  margin-left: -30px;
}

.chat .chat-double .chat-year + li {
  margin-top: 70px;
}

.chat .chat-double .chat-panel.blue-bg:after {
  border-left: 9px solid #428bca;
  border-right: 0 solid #428bca;
}

.chat .chat-double .chat-panel.light-blue-bg:after {
  border-left: 9px solid #90c1f1;
  border-right: 0 solid #90c1f1;
}

.chat .chat-double .chat-panel.green-bg:after {
  border-left: 9px solid #009a58;
  border-right: 0 solid #009a58;
}

.chat .chat-double .chat-panel.red-bg:after {
  border-left: 9px solid #d9534f;
  border-right: 0 solid #d9534f;
}

.chat .chat-double .chat-panel.yellow-bg:after {
  border-left: 9px solid #fdbe00;
  border-right: 0 solid #fdbe00;
}

.chat .chat-double > li.chat-inverted > .chat-panel {
  float: right;
}

.chat .chat-double > li.chat-inverted > .chat-panel:before {
  border-left-width: 0;
  border-right-width: 10px;
  left: -10px;
  right: auto;
}

.chat .chat-double > li.chat-inverted > .chat-panel:after {
  border-left-width: 0;
  border-right-width: 9px;
  left: -9px;
  right: auto;
}

.chat .user-avatar {
  width: 40px;
  height: 40px;
  margin-left: 15px;
  float: right;
}

.chat .chat-panel {
  width: 47% !important;
  float: right !important;
}

.chat .chat-inverted .user-avatar {
  margin-left: 0;
  margin-right: 15px;
  float: left !important;
}

.chat .chat-inverted .chat-panel {
  float: left !important;
}

.chat .chat-inverted .chat-panel .readed {
  left: auto;
  right: -25px;
}

.readed {
  position: absolute;
  color: #76828E;
  bottom: 5px;
  left: -25px;
}

.chat-heading i {
  margin-right: 3px;
}

.map-widget {
  width: 100%;
  height: 400px;
}

.map-widget-small {
  height: 200px;
}

.jqvmap-label {
  position: absolute;
  display: none;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  background: #292929;
  color: #fff;
  font-size: smaller;
  padding: 3px;
}

.jqvmap-zoomin, .jqvmap-zoomout {
  position: absolute;
  left: 10px;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  background: #000000;
  padding: 3px;
  color: #fff;
  width: 20px;
  height: 20px;
  cursor: pointer;
  line-height: 15px;
  text-align: center;
}

.jqvmap-zoomin {
  top: 10px;
}

.jqvmap-zoomout {
  top: 35px;
}

.jqvmap-region {
  cursor: pointer;
}

.jqvmap-ajax_response {
  width: 100%;
  height: 400px;
}

.carousel {
  -webkit-border-radius: 3px;
          border-radius: 3px;
  background: #fff;
  margin-bottom: 20px;
}

.carousel .item {
  min-height: 150px;
}

.carousel .carousel-caption {
  text-shadow: none;
}

.carousel .carousel-control {
  background-image: none;
}

.carousel .carousel-control span {
  padding-top: 60px;
}

.carousel .carousel-indicators {
  bottom: 5px;
}

.carousel .carousel-indicators li {
  opacity: 0.5;
  background: #fff;
  width: 12px;
  height: 12px;
}

.carousel .carousel-indicators li.active {
  width: 14px;
  height: 14px;
  opacity: 1;
}

.carousel.white-bg .carousel-caption {
  color: #76828E;
}

.carousel.white-bg .carousel-indicators li {
  background: #009a58;
}

.carousel.white-bg .carousel-control span {
  color: #76828E;
}

.font-icons {
  margin-bottom: 30px;
}

.font-icons .alert {
  max-width: 800px;
}

.font-icons h4 {
  padding-left: 10px;
}

.font-icons a {
  color: #76828E;
}

.font-icons a i {
  margin-right: 15px;
  text-align: right;
  width: 50px;
  line-height: 50px;
  display: inline-block;
  color: #428bca;
}

.ultra-widget {
  position: relative;
}

.ultra-widget .progress-bar {
  -webkit-transition: none;
          transition: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ultra-widget .w-content .w-progress {
  line-height: 1.1;
  margin-bottom: 20px;
}

.ultra-widget .w-content .w-progress .w-name {
  font-size: 16px;
}

.ultra-widget .w-content .w-progress .w-amount {
  font-size: 40px;
}

.ultra-widget .w-status {
  margin-top: 5px;
  font-size: 12px;
  opacity: 0.7;
}

.ultra-widget .w-icon {
  font-size: 120px;
  line-height: 1;
}

.ultra-widget .w-icon.right {
  margin-right: 15px;
}

.ultra-widget .w-name {
  font-size: 20px;
  font-weight: 400;
}

.ultra-widget .w-amount {
  font-size: 60px;
  font-weight: 700;
}

.ultra-widget .w-refresh {
  position: absolute;
  top: 15px;
  right: 10px;
  cursor: pointer;
}

.ultra-widget .w-refresh.w-p-icon {
  font-size: 36px;
  opacity: 0.5;
  right: 20px;
}

.ultra-widget .w-descr {
  position: absolute;
  right: 20px;
  top: 2px;
}

.ultra-widget .w-descr.left {
  left: 20px;
  top: 10px;
  right: auto;
}

.ultra-widget .w-descr.simple {
  position: relative;
  right: auto;
  top: auto;
  line-height: 1.2;
  margin-top: 12px;
}

.ultra-widget .w-descr.simple .w-name {
  font-size: 24px;
}

.ultra-widget .w-descr.simple .w-amount i {
  margin-right: 5px;
  font-size: 76px;
}

.ultra-widget .w-used {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}

.ultra-widget.blue-bg .w-used {
  background-color: #4c9be8;
}

.ultra-widget.yellow-bg .w-used {
  background-color: #ecb100;
}

.ultra-widget.red-bg .w-used {
  background-color: #e64145;
}

.ultra-widget.green-bg .w-used {
  background-color: #3ba074;
}

.login-modal, .logout-modal {
  background: #4c9be8;
  z-index: 9999;
  -webkit-transition: all .2s ease !important;
          transition: all .2s ease !important;
}

.login-modal button.close, .logout-modal button.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 40px;
}

.logout-modal, .logout-modal .table-wrapper {
  background: rgba(0, 0, 0, 0.2);
}

.logout-modal .login {
  max-width: 320px;
}

.logout-modal .login a {
  font-size: 20px;
  padding: 20px;
  padding: 15px 25px 0px;
  color: #fff;
  opacity: .8;
}

.logout-modal .login a:hover {
  text-decoration: none;
  opacity: 1;
}

/*Demo only*/
.grids [class^=col-] {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 15px;
  background: #F1F4F5;
  border: 1px solid #E7EBEC;
}

.grids .nesting [class^=col-] {
  background: #d3dde0;
  border: 1px solid #cbd3d5;
}

.show-grids {
  margin: 15px 0;
}

/*Buttons*/
.btn {
  border: 0;
}

.btn, .btn-group {
  -webkit-border-radius: 3px;
          border-radius: 3px;
  -webkit-box-shadow: 0 1px 1.5px 1px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 1.5px 1px rgba(0, 0, 0, 0.12);
}

.btn-group .btn, .btn-group .btn-group, .btn-group-vertical .btn, .btn-group-vertical .btn-group {
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 0 !important;
}

.btn-group-lg > .btn, .btn-lg {
  -webkit-border-radius: 3px;
          border-radius: 3px;
}

.btn-icon {
  -webkit-border-radius: 50%;
          border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
  text-align: center;
}

.btn-icon i {
  font-size: 18px;
  line-height: 40px;
}

.btn.btn-warning, .open > .dropdown-toggle.btn-warning, .open > .dropdown-toggle.btn-warning:focus {
  background-color: #fdbe00;
  border-color: #fdbe00;
  color: #fff !important;
}

.btn.btn-warning:hover, .open > .dropdown-toggle.btn-warning:hover, .open > .dropdown-toggle.btn-warning:focus:hover {
  background-color: #fdbe00;
}

.btn.btn-warning:focus, .btn.btn-warning:active:focus, .open > .dropdown-toggle.btn-warning:focus, .open > .dropdown-toggle.btn-warning:active:focus, .open > .dropdown-toggle.btn-warning:focus:focus, .open > .dropdown-toggle.btn-warning:focus:active:focus {
  background-color: #fdbe00;
  border-color: #fdbe00;
}

.btn.btn-danger, .open > .dropdown-toggle.btn-danger, .open > .dropdown-toggle.btn-danger:focus {
  background-color: #d9534f;
  border-color: #d9534f;
  color: #fff !important;
}

.btn.btn-danger:hover, .open > .dropdown-toggle.btn-danger:hover, .open > .dropdown-toggle.btn-danger:focus:hover {
  background-color: #d9534f;
}

.btn.btn-danger:focus, .btn.btn-danger:active:focus, .open > .dropdown-toggle.btn-danger:focus, .open > .dropdown-toggle.btn-danger:active:focus, .open > .dropdown-toggle.btn-danger:focus:focus, .open > .dropdown-toggle.btn-danger:focus:active:focus {
  background-color: #e53935;
  border-color: #e53935;
}

.btn.btn-primary, .open > .dropdown-toggle.btn-primary, .open > .dropdown-toggle.btn-primary:focus {
  background-color: #428bca;
  border-color: #428bca;
  color: #fff !important;
}

.btn.btn-primary:hover, .open > .dropdown-toggle.btn-primary:hover, .open > .dropdown-toggle.btn-primary:focus:hover {
  background-color: #428bca;
}

.btn.btn-primary:focus, .btn.btn-primary:active:focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:active:focus, .open > .dropdown-toggle.btn-primary:focus:focus, .open > .dropdown-toggle.btn-primary:focus:active:focus {
  background-color: #428bca;
  border-color: #428bca;
}

.btn.btn-success, .open > .dropdown-toggle.btn-success, .open > .dropdown-toggle.btn-success:focus {
  background-color: #009a58;
  border-color: #009a58;
  color: #fff !important;
}

.btn.btn-success:hover, .open > .dropdown-toggle.btn-success:hover, .open > .dropdown-toggle.btn-success:focus:hover {
  background-color: #009a58;
}

.btn.btn-success:focus, .btn.btn-success:active:focus, .open > .dropdown-toggle.btn-success:focus, .open > .dropdown-toggle.btn-success:active:focus, .open > .dropdown-toggle.btn-success:focus:focus, .open > .dropdown-toggle.btn-success:focus:active:focus {
  background-color: #009a58;
  border-color: #009a58;
}

.btn.btn-info, .open > .dropdown-toggle.btn-info, .open > .dropdown-toggle.btn-info:focus {
  background-color: #90c1f1;
  border-color: #90c1f1;
  color: #fff !important;
}

.btn.btn-info:hover, .open > .dropdown-toggle.btn-info:hover, .open > .dropdown-toggle.btn-info:focus:hover {
  background-color: #90c1f1;
}

.btn.btn-info:focus, .btn.btn-info:active:focus, .open > .dropdown-toggle.btn-info:focus, .open > .dropdown-toggle.btn-info:active:focus, .open > .dropdown-toggle.btn-info:focus:focus, .open > .dropdown-toggle.btn-info:focus:active:focus {
  background-color: #90c1f1;
  border-color: #90c1f1;
}

.btn.btn-default, .open > .dropdown-toggle.btn-default, .open > .dropdown-toggle.btn-default:focus {
  background-color: #fff;
  border-color: #e2e2e2;
  color: #76828E;
}

.btn.btn-default:hover, .open > .dropdown-toggle.btn-default:hover, .open > .dropdown-toggle.btn-default:focus:hover {
  background-color: #fff;
}

.btn.btn-default:focus, .btn.btn-default:active:focus, .open > .dropdown-toggle.btn-default:focus, .open > .dropdown-toggle.btn-default:active:focus, .open > .dropdown-toggle.btn-default:focus:focus, .open > .dropdown-toggle.btn-default:focus:active:focus {
  background-color: #e2e2e2;
  border-color: #e2e2e2;
}

.btn.btn-dark, .open > .dropdown-toggle.btn-dark, .open > .dropdown-toggle.btn-dark:focus {
  background-color: #273238;
  border-color: #313131;
  color: #fff;
}

.btn.btn-dark:hover, .open > .dropdown-toggle.btn-dark:hover, .open > .dropdown-toggle.btn-dark:focus:hover {
  background-color: #273238;
}

.btn.btn-dark:focus, .btn.btn-dark:active:focus, .open > .dropdown-toggle.btn-dark:focus, .open > .dropdown-toggle.btn-dark:active:focus, .open > .dropdown-toggle.btn-dark:focus:focus, .open > .dropdown-toggle.btn-dark:focus:active:focus {
  background-color: #273238;
  border-color: #273238;
}

.btn-rounded {
  -webkit-border-radius: 25px;
          border-radius: 25px;
}

.multiple-group .btn {
  color: #009a58;
}

.btn-label {
  position: relative;
  left: -12px;
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 3px 0 0 3px;
          border-radius: 3px 0 0 3px;
}

.btn-lg .btn-label {
  left: -16px;
}

.btn-sm .btn-label {
  left: -10px;
  padding: 4px 8px;
}

.btn-xs .btn-label {
  left: -5px;
  padding: 3px 6px;
}

.btn-labeled {
  padding-top: 0;
  padding-bottom: 0;
}

.btns .btn {
  margin-bottom: 5px;
}

.btns .btn-group-vertical .btn {
  margin-bottom: 0;
}

/*Panels*/
.panel-box.panel-success {
  border-top: 3px solid #009a58;
}

.panel-box.panel-danger {
  border-top: 3px solid #d9534f;
}

.panel-box.panel-warning {
  border-top: 3px solid #fdbe00;
}

.panel-box.panel-primary {
  border-top: 3px solid #428bca;
}

.panel-box.panel-info {
  border-top: 3px solid #90c1f1;
}

.panel-box.panel-gray {
  border-top: 3px solid #273238;
}

.panel.panel-success {
  border-color: #009a58;
}

.panel.panel-success > .panel-heading {
  border-color: #009a58;
  background: #009a58;
  color: #fff;
}

.panel.panel-danger {
  border-color: #d9534f;
}

.panel.panel-danger > .panel-heading {
  border-color: #d9534f;
  background: #d9534f;
  color: #fff;
}

.panel.panel-warning {
  border-color: #fdbe00;
}

.panel.panel-warning > .panel-heading {
  border-color: #fdbe00;
  background: #fdbe00;
  color: #fff;
}

.panel.panel-primary {
  border-color: #428bca;
}

.panel.panel-primary > .panel-heading {
  border-color: #428bca;
  background: #428bca;
  color: #fff;
}

.panel.panel-info {
  border-color: #90c1f1;
}

.panel.panel-info > .panel-heading {
  border-color: #90c1f1;
  background: #90c1f1;
  color: #fff;
}

.panel.panel-gray {
  border-color: #273238;
}

.panel.panel-gray > .panel-heading {
  border-color: #273238;
  background: #273238;
  color: #fff;
}

.badge-success {
  background: #009a58;
}

.badge-danger {
  background: #d9534f;
}

.badge-warning {
  background: #fdbe00;
}

.badge-primary {
  background: #428bca;
}

.badge-info {
  background: #90c1f1;
}

.badge-gray {
  background: #273238;
}

/*Labels*/
.label-warning {
  background-color: #fdbe00;
}

.label-danger {
  background-color: #d9534f;
}

.label-primary {
  background-color: #009a58;
}

.label-success {
  background-color: #428bca;
}

.label-info {
  background-color: #90c1f1;
}

.label-gray {
  background-color: #273238;
}

/*Metis Menu*/
.metismenu .fa.arrow:before {
  content: "\f105";
}

/*c3.js styles*/
.c3-tooltip td {
  color: #76828E;
}

.c3-tooltip th {
  background: #fdbe00;
}

/*FlotChart.js styles*/
.flot-chart {
  width: 100%;
  height: 276px;
}

.flot-big {
  padding: 0 50px;
  height: 450px;
}

.flot-tooltip {
  color: #fff;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  width: 100px;
  height: 30px;
  padding: 5px;
  text-align: center;
  position: absolute;
  display: none;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}

/*Chart JS*/
.chartjs-container {
  width: 100%;
}

/*Morris JS*/
.morris-container {
  height: 300px;
}

/*EasypieChart.js styles*/
.easypiechart {
  color: #76828E;
  width: 110px;
  position: relative;
  padding-bottom: 10px;
  margin-right: 5%;
}

.easypiechart span {
  position: absolute;
  top: 40px;
  left: 36px;
  font-size: 20px;
}

.jqstooltip {
  height: 35px;
  width: 80px;
}

/*Zabuto Calendar styles*/
.calendar {
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  position: relative;
}

.calendar .weekday, .calendar .month-year {
  font-size: 14px;
  font-weight: 700;
}

.calendar .date {
  font-size: 72px;
  font-weight: 100;
}

.zabuto_calendar td {
  border: none !important;
  font-weight: 400;
  font-size: 14px;
}

.zabuto_calendar td .badge-today {
  background-color: #428bca;
  font-size: 14px;
  -webkit-border-radius: 2px;
          border-radius: 2px;
}

div.zabuto_calendar .table tr:last-child {
  border-bottom: 0;
}

div.zabuto_calendar .table tr.calendar-dow-header th {
  background-color: #fff;
  color: #fdbe00;
  text-transform: uppercase;
  font-weight: 700;
  border-top: 0;
}

div.zabuto_calendar .table tr.calendar-month-header th {
  border: 0;
  background: #fff;
}

/*Simple Weather styles*/
.weather-container {
  font-weight: 400;
  font-size: 16px;
  position: relative;
}

.weather-container h4.weather-city {
  padding: 10px;
  color: #fff;
  background: #428bca;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}

.weather-container span.weather-city {
  background: #fff;
  padding: 8px 30px;
  color: #76828E;
  -webkit-border-radius: 20px;
          border-radius: 20px;
  position: absolute;
  top: 10px;
  right: 30px;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}

.weather-container div {
  border-right: 1px solid #EFEFEF;
  width: 33.3%;
}

.weather-container div:last-child {
  border: 0;
}

.weather-container i {
  font-size: 36px;
}

.weather-container.full div {
  width: 20%;
  padding: 45px 20px;
}

body nav .slimScrollDiv {
  padding-bottom: 65px;
}

body .slimScrollDiv {
  padding-bottom: 0;
}

/*Meteocons icons*/
@font-face {
  font-family: 'meteocons-webfont';
  src: url("../fonts/meteocons/meteocons-webfont.eot?86805246");
  src: url("../fonts/meteocons/meteocons-webfont.eot?86805246#iefix") format("embedded-opentype"), url("../fonts/meteocons/meteocons-webfont.woff?86805246") format("woff"), url("../fonts/meteocons/meteocons-webfont.ttf?86805246") format("truetype"), url("../fonts/meteocons/meteocons-webfont.svg?86805246#meteocons-webfont") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "meteocons-webfont";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
}

.icon-0:before {
  content: "\e827";
}

.icon-1:before {
  content: "\e827";
}

.icon-2:before {
  content: "\e827";
}

.icon-3:before {
  content: "\e827";
}

.icon-4:before {
  content: "\e827";
}

.icon-5:before {
  content: "\e809";
}

.icon-6:before {
  content: "\e809";
}

.icon-7:before {
  content: "\e809";
}

.icon-8:before {
  content: "\e809";
}

.icon-9:before {
  content: "\e809";
}

.icon-10:before {
  content: "\e800";
}

.icon-11:before {
  content: "\e809";
}

.icon-12:before {
  content: "\e809";
}

.icon-13:before {
  content: "\e809";
}

.icon-14:before {
  content: "\e809";
}

.icon-15:before {
  content: "\e808";
}

.icon-16:before {
  content: "\e808";
}

.icon-17:before {
  content: "\e80a";
}

.icon-18:before {
  content: "\e809";
}

.icon-19:before {
  content: "\e822";
}

.icon-20:before {
  content: "\e822";
}

.icon-21:before {
  content: "\e822";
}

.icon-22:before {
  content: "\e822";
}

.icon-23:before {
  content: "\e822";
}

.icon-24:before {
  content: "\e82e";
}

.icon-25:before {
  content: "\e82e";
}

.icon-26:before {
  content: "\e810";
}

.icon-27:before {
  content: "\e810";
}

.icon-28:before {
  content: "\e810";
}

.icon-29:before {
  content: "\e823";
}

.icon-30:before {
  content: "\e823";
}

.icon-31:before {
  content: "\e80e";
}

.icon-32:before {
  content: "\e803";
}

.icon-33:before {
  content: "\e80e";
}

.icon-34:before {
  content: "\e803";
}

.icon-35:before {
  content: "\e80a";
}

.icon-36:before {
  content: "\e803";
}

.icon-37:before {
  content: "\e827";
}

.icon-38:before {
  content: "\e827";
}

.icon-39:before {
  content: "\e827";
}

.icon-40:before {
  content: "\e809";
}

.icon-41:before {
  content: "\e808";
}

.icon-42:before {
  content: "\e809";
}

.icon-43:before {
  content: "\e808";
}

.icon-44:before {
  content: "\e823";
}

.icon-45:before {
  content: "\e827";
}

.icon-46:before {
  content: "\e809";
}

.icon-47:before {
  content: "\e827";
}

a, a:hover {
  color: #428bca;
}

/*Switcher*/
.switcher {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.switcher + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

input.switcher + label {
  padding: 2px;
  width: 36px;
  height: 14px;
  background-color: #dddddd;
  -webkit-border-radius: 60px;
          border-radius: 60px;
}

input.switcher-medium + label {
  width: 50px;
  height: 18px;
}

input.switcher-big + label {
  width: 60px;
  height: 20px;
}

input.switcher + label:before,
input.switcher + label:after {
  display: block;
  position: absolute;
  top: 1px;
  left: 0px;
  bottom: 1px;
  content: "";
}

input.switcher + label:before {
  right: 1px;
  background-color: #b9b8b8;
  -webkit-border-radius: 60px;
          border-radius: 60px;
  -webkit-transition: background 0.4s;
          transition: background 0.4s;
}

input.switcher + label:after {
  width: 20px;
  height: 20px;
  background-color: #f1f1f1;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  margin-top: -4px;
  -webkit-box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.31);
          box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.31);
  -webkit-transition: margin, .4s;
          transition: margin, .4s;
}

input.switcher-medium + label:after {
  width: 25px;
  height: 25px;
  margin-top: -5px;
}

input.switcher-big + label:after {
  width: 30px;
  height: 30px;
  margin-top: -6px;
}

input.switcher-medium:checked + label:after {
  margin-left: 25px !important;
}

input.switcher-big:checked + label:after {
  margin-left: 30px !important;
}

input.switcher-primary:checked + label:before {
  background-color: #bddaf7;
}

input.switcher-primary:checked + label:after {
  margin-left: 16px;
  background-color: #428bca;
}

input.switcher-success:checked + label:before {
  background-color: #63c59b;
}

input.switcher-success:checked + label:after {
  margin-left: 16px;
  background-color: #009a58;
}

input.switcher-danger:checked + label:before {
  background-color: #f5b2b4;
}

input.switcher-danger:checked + label:after {
  margin-left: 16px;
  background-color: #d9534f;
}

input.switcher-warning:checked + label:before {
  background-color: #ffdb6d;
}

input.switcher-warning:checked + label:after {
  margin-left: 16px;
  background-color: #fdbe00;
}

/*Checkboxes*/
.checkbox i {
  position: relative;
  padding-left: 5px;
  display: initial;
}

.checkbox i:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #E7EBEC;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
          transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox i:after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555555;
}

.checkbox.checkbox-small i:before {
  width: 12px;
  height: 12px;
  top: 3px;
}

.checkbox.checkbox-small i:after {
  padding-top: 2px;
  width: 11px;
  height: 11px;
  margin-left: -22px;
}

.checkbox.checkbox-big i:before {
  width: 22px;
  height: 22px;
  top: -1px;
}

.checkbox.checkbox-big i:after {
  padding-top: 0;
  font-size: 18px;
  top: -1px;
  width: 19px;
  height: 19px;
  margin-left: -21px;
}

.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
  opacity: 0;
  z-index: 1;
}

.checkbox input[type="checkbox"]:focus + i::before,
.checkbox input[type="radio"]:focus + i::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.checkbox input[type="checkbox"]:checked + i::after,
.checkbox input[type="radio"]:checked + i::after {
  font-family: "FontAwesome";
  font-style: normal;
  content: "\f00c";
}

.checkbox input[type="checkbox"]:disabled + i,
.checkbox input[type="radio"]:disabled + i {
  opacity: 0.65;
}

.checkbox input[type="checkbox"]:disabled + i::before,
.checkbox input[type="radio"]:disabled + i::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}

.checkbox.checkbox-circle i::before {
  -webkit-border-radius: 50%;
          border-radius: 50%;
}

.checkbox.checkbox-inline {
  margin-top: 0;
}

.checkbox-primary input[type="checkbox"]:checked + i::before,
.checkbox-primary input[type="radio"]:checked + i::before {
  background-color: #009a58;
  border-color: #009a58;
}

.checkbox-primary input[type="checkbox"]:checked + i::after,
.checkbox-primary input[type="radio"]:checked + i::after {
  color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked + i::before,
.checkbox-danger input[type="radio"]:checked + i::before {
  background-color: #d9534f;
  border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked + i::after,
.checkbox-danger input[type="radio"]:checked + i::after {
  color: #fff;
}

.checkbox-info input[type="checkbox"]:checked + i::before,
.checkbox-info input[type="radio"]:checked + i::before {
  background-color: #90c1f1;
  border-color: #90c1f1;
}

.checkbox-info input[type="checkbox"]:checked + i::after,
.checkbox-info input[type="radio"]:checked + i::after {
  color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + i::before,
.checkbox-warning input[type="radio"]:checked + i::before {
  background-color: #fdbe00;
  border-color: #fdbe00;
}

.checkbox-warning input[type="checkbox"]:checked + i::after,
.checkbox-warning input[type="radio"]:checked + i::after {
  color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + i::before,
.checkbox-success input[type="radio"]:checked + i::before {
  background-color: #428bca;
  border-color: #428bca;
}

.checkbox-success input[type="checkbox"]:checked + i::after,
.checkbox-success input[type="radio"]:checked + i::after {
  color: #fff;
}

.form-horizontal .checkbox {
  padding-top: 0;
  min-height: auto;
}

.form-inline .checkbox i::after {
  top: -3px;
}

.radio i {
  position: relative;
  padding-left: 5px;
  display: initial;
}

.radio i:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #E7EBEC;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out;
          transition: border 0.15s ease-in-out;
}

.radio i:after {
  display: inline-block;
  position: absolute;
  content: " ";
  width: 11px;
  height: 11px;
  left: 3px;
  top: 2px;
  margin-left: -20px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background-color: #555555;
  -webkit-transform: scale(0, 0);
      -ms-transform: scale(0, 0);
          transform: scale(0, 0);
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
          transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio.radio-small i:before {
  width: 14px;
  height: 14px;
  top: 2px;
}

.radio.radio-small i:after {
  width: 10px;
  height: 10px;
  margin-left: -21px;
  top: 4px;
}

.radio.radio-big i:before {
  width: 22px;
  height: 22px;
  top: -1px;
}

.radio.radio-big i:after {
  padding-top: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  margin-left: -21px;
}

.radio input[type="radio"] {
  opacity: 0;
  z-index: 1;
}

.radio input[type="radio"]:focus + i::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.radio input[type="radio"]:checked + i::after {
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
}

.radio input[type="radio"]:disabled + i {
  opacity: 0.65;
}

.radio input[type="radio"]:disabled + i::before {
  cursor: not-allowed;
}

.radio.radio-inline {
  margin-top: 0;
}

.radio-primary input[type="radio"] + i::after {
  background-color: #009a58;
}

.radio-primary input[type="radio"]:checked + i::before {
  border-color: #009a58;
}

.radio-primary input[type="radio"]:checked + i::after {
  background-color: #009a58;
}

.radio-danger input[type="radio"] + i::after {
  background-color: #d9534f;
}

.radio-danger input[type="radio"]:checked + i::before {
  border-color: #d9534f;
}

.radio-danger input[type="radio"]:checked + i::after {
  background-color: #d9534f;
}

.radio-info input[type="radio"] + i::after {
  background-color: #90c1f1;
}

.radio-info input[type="radio"]:checked + i::before {
  border-color: #90c1f1;
}

.radio-info input[type="radio"]:checked + i::after {
  background-color: #90c1f1;
}

.radio-warning input[type="radio"] + i::after {
  background-color: #fdbe00;
}

.radio-warning input[type="radio"]:checked + i::before {
  border-color: #fdbe00;
}

.radio-warning input[type="radio"]:checked + i::after {
  background-color: #fdbe00;
}

.radio-success input[type="radio"] + i::after {
  background-color: #428bca;
}

.radio-success input[type="radio"]:checked + i::before {
  border-color: #428bca;
}

.radio-success input[type="radio"]:checked + i::after {
  background-color: #428bca;
}

.example-item {
  margin-bottom: 20px;
}

label {
  font-weight: 600 !important;
}

.help-text {
  padding: 3px 0;
  font-size: 11px;
}

.form-control.material {
  padding-left: 5px;
  border: 0;
  -webkit-border-radius: 0;
          border-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#428bca), to(#428bca)), -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2));
  background-image: -webkit-linear-gradient(#428bca, #428bca), -webkit-linear-gradient(#d2d2d2, #d2d2d2);
  background-image: linear-gradient(#428bca, #428bca), linear-gradient(#d2d2d2, #d2d2d2);
  background-size: 0 2px,100% 1px;
  background-repeat: no-repeat;
  background-position: center bottom, center -webkit-calc(100% - 1px);
  background-position: center bottom, center calc(100% - 1px);
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-control.material:focus {
  outline: none;
  -webkit-animation: input-highlight .5s forwards;
          animation: input-highlight .5s forwards;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@-webkit-keyframes input-highlight {
  0% {
    background-size: 0 2px, 100% 1px;
  }
  100% {
    background-size: 100% 2px, 100% 1px;
  }
}

@keyframes input-highlight {
  0% {
    background-size: 0 2px, 100% 1px;
  }
  100% {
    background-size: 100% 2px, 100% 1px;
  }
}

.progress-widget.table-striped > tbody > tr:nth-of-type(even) {
  background-color: #f9f9f9;
}

.progress-widget.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #fff;
}

.progress-widget tr td, .progress-widget tr th {
  vertical-align: middle !important;
  padding: 8px 20px !important;
}

.progress-widget tr td + td {
  width: 25%;
  font-weight: 400;
}

.progress-widget thead {
  background-color: #f9f9f9;
  border-top: 1px solid #E7EBEC;
}

.progress-widget .progress {
  margin-bottom: 0;
}

.progress-bar-sm {
  height: 6px;
  -webkit-border-radius: 3px;
          border-radius: 3px;
}

.progress-bar-xs {
  height: 2px;
  -webkit-border-radius: 0;
          border-radius: 0;
  margin-bottom: 0;
}

.progress-bar-info {
  background-color: #428bca;
}

.progress-bar-danger {
  background-color: #d9534f;
}

.progress-bar-success {
  background-color: #009a58;
}

.progress-bar-warning {
  background-color: #fdbe00;
}

.breadcrumb {
  -webkit-border-radius: 0;
          border-radius: 0;
  background-color: transparent;
}

.breadcrumb.breadcrumb-arrow > li + li:before {
  content: "\00bb\00a0";
}

.breadcrumb a {
  color: #428bca;
}

.breadcrumb a i {
  margin-right: 5px;
  font-size: 16px;
}

.pagination li {
  display: none;
}

.pagination li:first-of-type, .pagination li:last-of-type {
  display: inline;
}

.pagination li a {
  -webkit-border-radius: 0;
          border-radius: 0;
}

.pagination li.active a {
  background: #428bca;
  border-color: #428bca !important;
}

.pagination li.active a:hover, .pagination li.active a:focus {
  background: #428bca;
  color: #fff;
}

.pagination li a, .pager li a {
  color: #76828E;
  -webkit-transition: none !important;
          transition: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  z-index: 1 !important;
  line-height: 1.3333333 !important;
  border: 1px solid #ddd !important;
}

.pagination li a:hover, .pagination li a:focus, .pager li a:hover, .pager li a:focus {
  color: #76828E;
  background: #fff;
}

.pagination-lg li a {
  font-size: 18px !important;
}

.pagination-sm li a {
  font-size: 12px !important;
}

.pagination.divided li {
  margin: 0 3px;
}

.pagination.divided li a, .pagination.divided li span {
  -webkit-border-radius: 3px;
          border-radius: 3px;
  border: 0 !important;
}

.pagination.divided li a {
  -webkit-box-shadow: 0 1px 1.5px 1px rgba(0, 0, 0, 0.12) !important;
          box-shadow: 0 1px 1.5px 1px rgba(0, 0, 0, 0.12) !important;
}

.pagination.divided li:first-of-type, .pagination.divided li:last-of-type {
  display: inline-block;
}

.pagination.move-btns {
  max-width: 768px;
  width: 100%;
}

.pagination.move-btns li:first-of-type {
  float: left;
}

.pagination.move-btns li:last-of-type {
  float: right;
}

.pagination.animated-btns li:first-of-type a, .pagination.animated-btns li:last-of-type a {
  padding: 0 12px;
  overflow: hidden;
  height: 31px;
  line-height: 31px !important;
}

.pagination.animated-btns li:first-of-type a i, .pagination.animated-btns li:last-of-type a i {
  display: block;
  height: 100%;
  line-height: 32px;
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
}

.pagination.animated-btns li:first-of-type a span, .pagination.animated-btns li:last-of-type a span {
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
  padding: 0 12px;
  overflow: hidden;
  height: 31px;
  display: inline-block;
}

.pagination.animated-btns li:first-of-type a:hover i, .pagination.animated-btns li:last-of-type a:hover i {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.pagination.animated-btns li:first-of-type a:hover span, .pagination.animated-btns li:last-of-type a:hover span {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.pager .disabled > a, .pager .disabled > a:focus, .pager .disabled > a:hover, .pager .disabled > span {
  color: #76828E !important;
}

/*Member sidebar*/
.members-sidebar {
  background: #fff;
  padding: 20px;
  overflow: hidden;
  position: fixed;
  top: 56px;
  bottom: 0;
  width: 240px !important;
  z-index: 605;
  right: -245px;
  -webkit-box-shadow: -1px 1px 5px 0px rgba(0, 0, 0, 0.13);
          box-shadow: -1px 1px 5px 0px rgba(0, 0, 0, 0.13);
  -webkit-transition: all, .5s;
          transition: all, .5s;
}

.members-sidebar .messages {
  margin-top: 30px;
}

.members-sidebar .member-name {
  font-weight: 500;
}

.members-sidebar li {
  padding: 10px 0;
  font-weight: 400;
}

.members-sidebar li .status {
  display: inline-block;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  margin-right: 8px;
  background-color: #E7EBEC;
}

.members-sidebar li .online {
  background-color: #4caf50;
}

.members-sidebar li .not-available {
  background-color: #fdbe00;
}

.members-sidebar .members-group {
  font-size: 16px;
  padding-top: 30px;
}

.members-sidebar-open {
  right: 0 !important;
}

.close-members-sidebar {
  cursor: pointer;
  font-size: 18px;
}

/*Skins*/
.gn-menu-main {
  background: #428bca;
  color: #fff;
  box-shadow: 1px 2px 1px #c3c6ca;
}

.gn-menu-main ul.gn-menu {
  background: #fff;
}

.gn-menu-main ul.gn-menu a {
  color: #373a3e;
}

.gn-menu-main ul.gn-menu a.active {
  color: #fff;
}

.gn-menu-main a {
  color: #fff;
}

.gn-menu-main .navbar-right a:focus, .gn-menu-main .navbar-right a:hover {
  background-color: #4c9be8 !important;
}

.gn-menu-main .navbar-right .cs-select > span {
  background: #428bca;
  border-color: #428bca;
  color: #fff;
}

.gn-menu-main .cs-skin-elastic .cs-options span:hover, .gn-menu-main .cs-skin-elastic .cs-options li.cs-focus span, .gn-menu-main .cs-skin-elastic .cs-options .cs-selected span {
  color: #428bca;
}

.gn-menu-main .notifications > a:focus {
  background-color: #4c9be8 !important;
}

.gn-menu-main .notifications ul {
  color: #76828E;
}

.notifications .dropdown-menu { padding: 0px !important; border: none; }
.notifications .dropdown-menu li { padding: 0px !important; }
.notifications .dropdown-menu li a { font-size: 14px; padding: 4px 10px !important; }

#menu-toggle:hover span {
  background: #fff !important;
}

#menu-toggle span {
  background: #273238;
}

.no-touch .gn-menu-main a:hover,
.no-touch .gn-search-item:hover {
  background: #e3e1e1;
/*  color: #fff;*/
}

.gn-menu-wrapper {
  background: #fff;
  box-shadow: 4px 4px 6px 0px rgba(0,0,0,.28);
}

.gn-menu .arrow {
  color: #76828E;
}

.gn-submenu {
  background: #fff !important;
}

.gn-submenu li a {
  color: #76828E;
}

.gn-submenu li a:before {
  background: #b5b5b5;
}

.gn-submenu li a.active {
  color: #fff;
}

.gn-submenu li a.active:after {
  border-left: 8px solid #273238;
}

.gn-search-item:hover a {
  color: #fff !important;
}

.gn-search-item.active input.gn-search {
  background: #fff;
}

.gn-search-item.active .search-icon {
  color: #76828E !important;
}

.gn-search-item.active .search-icon:hover {
  background: #fff;
}

.gn-search-item.active:hover input.gn-search {
  color: #76828E !important;
}

.gn-search-item.active:hover input.gn-search:-moz-placeholder {
  color: #76828E !important;
}

.gn-search-item.active:hover input.gn-search::-moz-placeholder {
  color: #76828E !important;
}

.gn-search-item.active:hover input.gn-search:-ms-input-placeholder {
  color: #76828E !important;
}

.gn-search-item.active:hover input.gn-search::-webkit-input-placeholder {
  color: #76828E !important;
}

.gn-search-item input.gn-search {
  background: transparent;
  color: #76828E;
}

.gn-search-item input.gn-search:-moz-placeholder {
  color: #76828E;
}

.gn-search-item input.gn-search::-moz-placeholder {
  color: #76828E;
}

.gn-search-item input.gn-search:-ms-input-placeholder {
  color: #76828E;
}

.gn-search-item input.gn-search::-webkit-input-placeholder {
  color: #76828E;
}

.gn-search-item:hover input.gn-search {
  color: #fff !important;
}

.gn-search-item:hover input.gn-search:-moz-placeholder {
  color: #fff !important;
}

.gn-search-item:hover input.gn-search::-moz-placeholder {
  color: #fff !important;
}

.gn-search-item:hover input.gn-search:-ms-input-placeholder {
  color: #fff !important;
}

.gn-search-item:hover input.gn-search::-webkit-input-placeholder {
  color: #fff !important;
}

.bottom-bnts {
  background: #2C393F;
}

.bottom-bnts a {
  background: #2C393F;
  color: #76828E;
}

.content-tools a {
  color: #76828E;
}

.flot-tooltip {
  background: #428bca;
}

@media (max-width: 768px) {
  .footer.f-fixed {
    margin-left: 0 !important;
  }
  /*Remove not useful elements from top navigation*/
  .logo, .clock, .lang, .some-btn, .notifications {
    display: none !important;
  }
  /*Remove margins from content block*/
  .content {
    margin: 0;
    /* padding: 20px 10px 40px; */
  }
  /*Project box*/
  .sort-projects .search-project .form-control {
    padding-left: 0;
  }
  .project-box {
    width: 100%;
  }
  .project-box > div {
    width: 100%;
    margin-bottom: 10px;
  }
  .project-box .responsible, .project-box .mobile-tools {
    display: inline-block;
  }
  .project-box .desktop-tools {
    display: none;
  }
  .project-item .status-desktop {
    display: none;
  }
  .project-item .status-mobile {
    display: block;
  }
}

@media (max-width: 767px) {
  .cbp_tmtimeline > li .cbp_tmlabel {
    margin-left: 10%;
  }
  .cbp_tmtimeline > li .cbp_tmicon, .cbp_tmtimeline:before {
    left: 5%;
  }
  .cbp_tmtimeline > li .cbp_tmtime {
    display: inline;
    padding-right: 0;
    position: relative;
  }
  ul.chat-double:before {
    left: 40px;
  }
  ul.chat-double > li > .chat-panel {
    width: -webkit-calc(100% - 90px);
    width: calc(100% - 90px);
  }
  ul.chat-double > li > .chat-badge {
    left: 32px;
    margin-left: 0;
    top: 15px;
  }
  ul.chat-double > li > .chat-panel, .chat ul.chat-double > li.chat-inverted > .chat-panel {
    float: right;
  }
  ul.chat-double > li > .chat-panel:before, .chat ul.chat-double > li.chat-inverted > .chat-panel:before {
    border-left-width: 0;
    border-right-width: 10px;
    left: -10px;
    right: auto;
  }
  ul.chat-double > li > .chat-panel:after, .chat ul.chat-double > li.chat-inverted > .chat-panel:after {
    border-left-width: 0;
    border-right-width: 9px;
    left: -9px;
    right: auto;
  }
  .chat-double .more {
    margin-left: 0;
    left: 8px;
  }
  .chat-double .chat-year {
    margin-left: 0;
    left: 12px;
  }
  .chat-double .now {
    margin-left: 0;
    left: 3px;
  }
  .chat-double .chat-panel.blue-bg:after {
    border-left: 0 solid #428bca;
    border-right: 9px solid #428bca;
  }
  .chat-double .chat-panel.light-blue-bg:after {
    border-left: 0 solid #90c1f1;
    border-right: 9px solid #90c1f1;
  }
  .chat-double .chat-panel.green-bg:after {
    border-left: 0 solid #009a58;
    border-right: 9px solid #009a58;
  }
  .chat-double .chat-panel.red-bg:after {
    border-left: 0 solid #d9534f;
    border-right: 9px solid #d9534f;
  }
  .chat-double .chat-panel.yellow-bg:after {
    border-left: 0 solid #fdbe00;
    border-right: 9px solid #fdbe00;
  }
  .chat ul.chat-double > li > .chat-panel:before {
    border-left-width: 10px;
    border-right-width: 0;
    left: auto;
    right: -10px;
  }
  .chat ul.chat-double > li > .chat-panel:after {
    border-left-width: 9px;
    border-right-width: 0;
    left: auto;
    right: -9px;
  }
  .fc-calendar .fc-toolbar {
    padding: 10%;
  }
  .fc-calendar .fc-toolbar .fc-right {
    bottom: 1%;
  }
  .fc-calendar .fc-toolbar .fc-right button {
    font-size: 12px;
  }
  .fc-calendar .fc-toolbar .fc-center h2 {
    font-size: 28px;
  }
  .fc-event-container .fc-event {
    font-size: 10px;
  }
  .btn-breadcrumb .btn {
    background: transparent !important;
    border: none !important;
    color: #76828E !important;
  }
  .btn-breadcrumb .btn:before, .btn-breadcrumb .btn:last-child::after {
    content: none !important;
  }
  .btn-breadcrumb .btn:after {
    content: " \00bb" !important;
    border: none !important;
    margin-top: -10px !important;
  }
  .btn-breadcrumb .btn:last-child {
    padding: 6px 12px;
  }
  .btn-breadcrumb .btn.btn-lg:after {
    margin-top: -13px !important;
  }
  .btn-breadcrumb .btn.btn-lg:last-child {
    padding: 6px 18px !important;
  }
  .email-content, .email-new {
    max-width: 100%;
    width: 100%;
  }
  .table-inbox tr td {
    padding: 4px !important;
  }
  .inbox-checkbox {
    width: 33px;
  }
  .login h1 {
    font-size: 45px;
  }
  .login .login-form {
    padding: 15px;
  }
  .login-modal button.close {
    top: 20px;
    z-index: 999;
  }
}

@media (min-width: 992px) and (max-width: 1366px) {
  .ultra-widget .w-icon {
    font-size: 90px;
  }
  .ultra-widget .w-name {
    font-size: 16px;
  }
  .ultra-widget .w-amount {
    font-size: 32px;
  }
  .ultra-widget .w-descr {
    top: 10px;
  }
  .ultra-widget .w-descr .w-amount i {
    font-size: 51px !important;
  }
}

@media only screen and (min-width: 768px) {
  .pagination li {
    display: inline;
  }
  .pagination.divided li {
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .ultra-widget .w-icon {
    font-size: 90px;
  }
  .ultra-widget .w-name {
    font-size: 16px;
  }
  .ultra-widget .w-amount {
    font-size: 32px;
  }
  .ultra-widget .w-descr {
    top: 10px;
  }
  .ultra-widget .w-descr .w-amount i {
    font-size: 51px;
  }
}

@media only screen and (max-width: 450px) {
  .table-inbox tr td {
    white-space: nowrap !important;
  }
  .content-tools > a {
    margin-left: 18px;
    display: inline-block;
  }
  .gn-search-item input.gn-search {
    width: 100%;
  }
}

/* chat */
@media screen and (max-width: 65.375em) {
  .cbp_tmchat > li .cbp_tmtime span:last-child {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 47.2em) {
  .cbp_tmchat:before {
    display: none;
  }
  .cbp_tmchat > li .cbp_tmtime {
    width: 100%;
    position: relative;
    padding: 0 0 20px 0;
  }
  .cbp_tmchat > li .cbp_tmtime span {
    text-align: left;
  }
  .cbp_tmchat > li .cbp_tmlabel {
    margin: 0 0 30px 0;
    padding: 1em;
    font-weight: 400;
    font-size: 95%;
  }
  .cbp_tmchat > li .cbp_tmlabel:after {
    right: auto;
    left: 20px;
    border-right-color: transparent;
    border-bottom-color: #3594cb;
    top: -20px;
  }
  .cbp_tmchat > li:nth-child(odd) .cbp_tmlabel:after {
    border-right-color: transparent;
    border-bottom-color: #6cbfee;
  }
  .cbp_tmchat > li .cbp_tmicon {
    position: relative;
    float: right;
    left: auto;
    margin: -55px 5px 0 0px;
  }
}

.datepicker {
    margin-top: 1px;
}
.datepicker table {
    width: 100%;
    min-width: 240px;
}
.datepicker table thead .dow {
    width: 14.2857%;
    font: 400 12px / 17px Arial, sans-serif;
    padding-top: 2px;
    padding-bottom: 2px;
}
.datepicker table thead tr:nth-child(2) {
    border-bottom: 1px solid #eee;
}
.datepicker table thead .datepicker-switch {
    font: 400 16px / 24px Arial, sans-serif;
}
.datepicker table thead .prev,
.datepicker table thead .next {
    font-size: 14px;
    padding: 2px 10px 0;
}
.datepicker table tbody {
    border-width: 0 1px 1px 0;
    border-style: solid;
    border-color: #eee;
}
.datepicker table tbody .day {
    border-width: 0 0 1px 1px;
    border-style: solid;
    border-color: #eee;
    font-size: 14px;
}
.datepicker table tbody .day.old,
.datepicker table tbody .day.new {
    background: #f2f2f2;
    color: #bbb;
}
.datepicker table tbody tr .day:last-child {
    border-right: none;
}
.datepicker table tbody tr:last-child .day {
    border-bottom: none;
}
.datepicker table .td.active,
.datepicker table .td.active:hover {
    background: #fcf3d0;
    color: #222222;
    text-shadow: none;
}
.datepicker table td.day:hover,
.datepicker table tr td.day:hover,
.datepicker table tr:first-child th:hover {
    border-color: #eee !important;
    background-color: #2487c9;
    color: #fff;
}
.datepicker table tr td.today,
.datepicker table tr td.today.disabled {
    background: #4fbeba !important;
    border-color: #eee !important;
    color:#fff !important;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled:hover {
    filter: none;
    text-shadow: none;
    background: #2487c9 !important;
    border-color: #eee !important;
    color: #fff !important;
}
.datepicker,
.datepicker table tr td,
.datepicker table tr th,
.datepicker table tr td span {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.datepicker.dropdown-menu {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 4px;
}
.datepicker .datepicker-months tbody,
.datepicker .datepicker-years tbody {
    border: none;
}
.datepicker-inline {
    width: 250px;
    border: 1px solid #ddd;
}
.datepicker-inline table tbody .day {
    background: #ffffff;
}

.select2-container {
    padding: 0;
}
.select2-container.select2-drop-above .select2-choice,
.select2-container .select2-choice {
    background: none;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    margin: 3px 0 0;
}
.select2-container.select2-drop-above .select2-choice .select2-arrow,
.select2-container .select2-choice .select2-arrow {
    background: none;
    border: none;
}
.select2-container.select2-drop-above .select2-choice > .select2-chosen [class^="flag-"],
.select2-container .select2-choice > .select2-chosen [class^="flag-"] {
    margin: -2px 4px 0 0;
}
.select2-container-multi .select2-choices,
.select2-choices {
    border: none;
    background: none;
    padding: 1px 0;
}
.select2-container-multi .select2-choices .select2-search-choice,
.select2-choices .select2-search-choice {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: #f0f7fc;
    border: 1px solid #2487c9;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-size: 13px;
    padding: 5px 22px 4px 5px;
}
.select2-container-multi .select2-choices .select2-search-choice [class^="flag-"],
.select2-choices .select2-search-choice [class^="flag-"] {
    margin: -4px 4px 0 0;
    height: 14px;
}
.select2-container-multi .select2-search-choice-close {
    left: auto;
    right: 3px;
    color: #fff;
    background: none !important;
    top: 5px;
}
.select2-container-multi .select2-search-choice-close:after {
    font-weight: 700;
    font-size: 17px;
    right: 0;
    color: #ccc;
    content: "×";
}
.select2-container-multi .select2-search-choice-close:hover {
    text-decoration: none;
}
.select2-container-multi .select2-search-choice-close:hover:after {
    color: #222222;
}
.select2-container-multi.select2-container-active .select2-choices {
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #daecf8;
}
.select2-drop {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border-color: transparent #eee #ddd #ddd;
}
.select2-results .select2-highlighted {
    background: #f0f7fc;
    color: #222222;
}
.select2-dropdown-open.select2-drop-above .select2-choices {
    background: #fff;
    border: none;
}
.select2-drop.select2-drop-above {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border-color: #ddd #eee transparent #ddd;
}
.select2-drop.select2-drop-above.select2-drop-active {
    border-top: #ddd;
    margin-bottom: -1px;
}
.select2-results .select2-result-label {
    font-size: 13px;
}
.select2-results .select2-result-label [class^="flag-"] {
    margin: -2px 4px 0 0;
}


/* google map */

#iw-container {
	margin-bottom: 10px;
}
#iw-container .iw-title {
	font-family: 'Open Sans', sans-serif;
	font-size: 22px;
	font-weight: 400;
	padding: 10px;
	background-color: #48b5e9;
	color: white;
	margin: 0;
	border-radius: 2px 2px 0 0;
}
#iw-container .iw-content {
	font-size: 13px;
	line-height: 18px;
	font-weight: 400;
	margin-right: 1px;
	padding: 15px 5px 20px 15px;
	max-height: 140px;
	overflow-y: auto;
	overflow-x: hidden;
}
.iw-content img {
	float: right;
	margin: 0 5px 5px 10px;	
}
.iw-subTitle {
	font-size: 16px;
	font-weight: 700;
	padding: 5px 0;
}

.req:after {
    content: ' *';
    color: #c0392b;
    font-size: 14px;
    line-height: 15px;
}
.inp_error{
    border: 1px solid #C0392B !important;  
}
.email-inner-section{max-height: 350px;overflow-y: auto;overflow-x: hidden;margin-bottom: 10px;padding: 5px 10px 5px 5px;}
a.list-group-item, button.list-group-item {
    color: #000;
}
.bold { font-weight: bold; }

#misc-panel{
    position: absolute;
    top: 30px;
    left: 10px;
    width: 330px;
/*    max-height: 300px;*/
    background-color: #fff;
    margin: 10px;
/*    padding: 10px;*/
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    padding-bottom:10px;
}

#graphpanel{
    padding: 5px 5px;
    background-color: rgba(255, 255, 255, .7);
    width:800px;
    height:200px;
    position: absolute;
    bottom: 20px;
    right: 50px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    padding-bottom:10px;
}
#grapharea{
    width: 780px;
    height: 200px;
}

#misc-panel .search-row{
    padding: 5px 5px;
    background-color: #fff;
}
#misc-panel .fleet-rows {
    padding: 5px 0px;
    background-color: #F1F4F5;
    max-height: 375px;
    overflow-y: scroll;
    overflow-x: hidden;
}
#misc-panel .fleet-rows .fleet-row{
   margin: 5px 5px; 
   background-color: #fff;
   padding: 5px;
}
#misc-panel .fleet-rows .fleet-row .icons{
    padding-top: 3px;
}
#misc-panel .fleet-rows .fleet-row .icons img{
    width: 20px;
}
#misc-panel .fleet-rows .fleet-row .icons .fa{
    font-size: 20px;
    color: #5e5c5c;
    padding-right: 10px;
}
#track-fleet-panel, #history-fleet-panel{
    padding: 5px 5px;
}

.dashboard-fleets .fleet-box {
    -webkit-border-radius: 3px;
            border-radius: 3px;
    padding: 5px;
    margin-bottom: 5px;
    border: none;
    border-radius: 4px!important;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}
#area_summary_pie {
  border: none;
  padding: 2px;
  border-radius: 4px!important;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}
.dashboard-fleets .fleet-box .gps-status{
    margin-top: 10px;
    font-weight: 400;
    text-align: right;
} 

.dashboard-fleets .fleet-box .gps-status span:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

.dashboard-fleets .fleet-box .active:before{ background: #009a58; }
.dashboard-fleets .fleet-box .unactive:before { background: #d9534f; }
.dashboard-fleets .fleet-box .offline:before { background: #5e5e5e; }
.dashboard-fleets .fleet-box .reg-no{ padding:3px 0px; font-size: 13px; font-weight: bold; }
.dashboard-fleets .fleet-box .state, .dashboard-fleets .fleet-box .action-links{ padding-top:10px; }
.dashboard-fleets .fleet-box .odometer{ padding-top:5px; }
.dashboard-search h2{ margin-top:30px; }

.live-cells{ /*padding-top: 10px; padding-bottom: 10px;*/ border-bottom: 1px dotted #ddd;}
.live-cells:last-child{ border-bottom: 0px dotted #ddd;}
.live-cells .cell{ border-right: 1px dotted #ddd; padding: 5px 0px;}
.live-cells .cell:last-child{ border-right: 0px dotted #ddd;}
.live-cells .count{ text-align: center; font-size: 40px; font-weight: bold;}
.live-cells .count .fa{ font-size: 12px;}
.live-cells .labeltxt{ text-align: center; margin-top: 2px; font-size: 16px; text-transform: uppercase; }

.email-inner-section .short-track-url{ padding: 20px 20px;  text-align: center; }
.short-track-url .short-link-label{ font-size: 25px;}
.short-track-url .short-link{ font-size: 20px;}
.short-link-notes{ padding: 0px 0px; text-align: center; }
.notes-text{ font-size: 10px; font-weight: normal; }

#geoadd_workspace{ min-height: 300px; background-color: #fff; }
#geoadd_editpane{ padding: 10px; }
#geoadd_map{ height: 450px; width: 100%; }

.event_stop{ background-color: #d9534f;   height: 18px;    width: 7px;    float: left;    margin-right: 5px;}
.event_halt{ background-color: #EF9A9A;   height: 18px;    width: 7px;    float: left;    margin-right: 5px;}
.event_slowmoving{ background-color: #fdbe00;   height: 18px;    width: 7px;    float: left;    margin-right: 5px;}
.event_running{ background-color: #009a58;   height: 18px;    width: 7px;    float: left;    margin-right: 5px;}
.event_moving{ background-color: #4CAF50;   height: 18px;    width: 7px;    float: left;    margin-right: 5px;}

.fleet-container{border: 1px solid #ccc; padding: 5px;}
.fleet-list{overflow-x: auto; height: 150px;}
.fleet-list ul { list-style: none; padding-left: 10px;}
.fleet-list ul li label{ font-weight: normal !important;}

.contact-container{border: 1px solid #ccc; padding: 5px;}
.contact-list{overflow-x: auto; height: 150px;}
.contact-list ul { list-style: none; padding-left: 10px;}
.contact-list ul li label{ font-weight: normal !important; margin-bottom: 0px;}
.contact-numbers{ font-size: 10px; color: #aaa; padding-left: 15px}

.scrollable-menu {
  clear:both!important;
  font-family: 'Open Sans', sans-serif!important;
  padding-top: 0;
  max-height: 300px;
  width: 268px;
  overflow-x: visible;
  overflow-y: scroll;
}

.scrollable-menu li a{
    font-size: 14px!important;
    line-height: 1.85 !important;
    padding: 4px 20px !important;
}

.scrollable-menu li a:hover , .scrollable-menu li a:focus{
    color: #fff!important;
}

.live-cells .utilcount{
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}

.util-cells .cell{ 
    border-right: 1px dotted #ddd;
    padding-right: 5px;
    padding-left: 5px;
}
.util-cells .cell:last-child{ border-right: 0px dotted #ddd;}

.timeline {
    margin: 0 0 30px 0;
    padding: 0;
    list-style: none;
}
.timeline:before {
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0;
    width: 5px;
    background: #ddd;
    left: 45px;
    border: 1px solid #eee;
    margin: 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.timeline > li {
    position: relative;
    margin-right: 10px;
    margin-bottom: 15px;
}
.timeline > li:before,
.timeline > li:after {
    display: table;
    content: " ";
}
.timeline > li:after {
    clear: both;
}
.timeline > li > .timeline-item {
    margin-top: 10px;
    border: 0px solid #dfdfdf;
    background: #fff;
    color: #555;
    margin-left: 60px;
    margin-right: 15px;
    padding: 5px;
    position: relative;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.timeline > li > .timeline-item > .time {
    color: #999;
    float: right;
    margin: 2px 0 0 0;
}
.timeline > li > .timeline-item > .timeline-header {
    margin: 0;
    color: #555;
    border-bottom: 1px solid #f4f4f4;
    padding: 5px;
    font-size: 16px;
    line-height: 1.1;
}
.timeline > li > .timeline-item > .timeline-header > a {
    font-weight: 600;
}
.timeline > li > .timeline-item > .timeline-body,
.timeline > li > .timeline-item > .timeline-footer {
    padding: 10px;
}
.timeline > li.time-label > span {
    font-weight: 600;
    padding: 5px;
    display: inline-block;
    background-color: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.timeline > li > .fa,
.timeline > li > .glyphicon,
.timeline > li > .ion {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    width: 30px;
    height: 30px;
    font-size: 15px;
    line-height: 30px;
    position: absolute;
    color: #666;
    background: #eee;
    border-radius: 50%;
    text-align: center;
    left: 18px;
    top: 0;
}
.time-label {
    margin-bottom: -38px!important;
    z-index: 2;
}

.mr-0{
    margin-right: 0px!important;
}
.ml-0{
    margin-left: 0px!important;
}
.mt-0{
    margin-top: 0px!important;
}
.mb-0{
    margin-bottom: 0px!important;
}

.mr-3{
    margin-right: 3rem!important;
}
.ml-3{
    margin-left: 3rem!important;
}
.mt-3{
    margin-top: 3rem!important;
}
.mb-3{
    margin-bottom: 3rem!important;
}

#historyModal .close {
    margin: 0;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 23px;
    height: 23px;
    border-radius: 23px;
    font-size: 1.5rem!important;
    opacity: 1;
    z-index: 500;
    background: #ffffff!important;
}  
#historyModal .close:hover {
    opacity: 1;
}
#historyModal .modal-dialog{
    overflow-y: initial !important
}
#historyModal .modal-body{
    height: 85vh;
    overflow-y: auto;
    background: linear-gradient(to right, transparent 0%, transparent calc(5% - -1.19px), #dddddd calc(0% - 0.8px), #dddddd calc(0% + -0.2px), transparent calc(6% + -3.19px), transparent 100%);
}

#misc-btn{
    position: absolute;
    top: 40px;
    left: 10px;
    width: 40px;
    /* max-height: 300px; */
    background-color: #fff;
    margin: 10px;
    padding: 13px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    padding-bottom: 10px;
    font-size: 16px;
}

.misc-btn{
    cursor: pointer;
}

#filter-btn-grp{
    padding: 6px 8px 8px 6px;
    white-space: nowrap;
    overflow: auto;
}
#filter-btn-grp .btn{
    padding: 5px 17px;
    margin: 2px;
    font-size: 13px;
}
.search-row .input-group{
    display: flex;
}

.search-row .input-group-addon{
    padding: 10px 20px 10px 18px;
}

.search-row .input-group-addon .fa{
    margin: -5px;
}

.scrollbar::-webkit-scrollbar{
    width: 6px;
    height: 6px;
    background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar-thumb{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #c1c1c1;
}

.btn-group[data-toggle="buttons"] label.active{
    background-color: #009a58;
    color: #ffffff;
}

.p-0{
    padding: 2px;
}

.hidepanel{
    border-radius: 4px;
    height: 31px;
}

.nowrap{
    white-space: nowrap;
}

#arraival-report-result .dataTables_wrapper{
    margin:0px;
}
.p-l-r-10{
    padding-left: 10px;
    padding-right: 10px;
}
#nasp-dropdown{
    min-width: 270px; 
}
.tableBodyScroll tbody {
    display:block;
    max-height:500px;
    overflow-y:scroll;
}
.tableBodyScroll thead,.tableBodyScroll tbody tr {
    display:table;
    width:100%;
    table-layout:fixed;
}
#routeModal .close {
    position: absolute;
    z-index: 500;
    right: 13px;
    color: #000;
    opacity: 1;
    background: #fff;
    border-radius: 10px;
}
.custom-leaflet-control {
    width: 34px;
    height: 34px;
    background-size: 30px 30px;
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(136, 174, 204);
    border-radius: 4px;
}
.custom-leaflet-control:hover {
    background-color: rgb(244, 244, 244);
    cursor: pointer;
}
.font-normal {
    font-weight: normal!important;
}

.slide-in {
  z-index: 10;
  position: absolute;
  overflow: hidden;
  height: 70px;
}
.slide-in.from-right {
  right: 0;
}
.slide-in-content {
  color: #fff;
  padding: 10px 20px;
  margin: 8px 0px 0px 10px;
  background: #d9534f;
  font-weight: bold;
  transition: all .5s ease;
  border-top-left-radius: 50px 50px;
  border-bottom-left-radius: 50px 50px;
  -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;
  -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;
  box-shadow: rgba(0,0,0,0.8) 0 0 10px;
}
.slide-in-content a, .slide-in-content a:focus{
    color: #fff;
    vertical-align: super;
}
.slide-in.from-right .slide-in-content {
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
}
.slide-in.show .slide-in-content {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}
.sticky-t-col {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 10;
}
.sticky-t-row {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 50;
}
.sticky-t-row-col {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 100;
}
.active .sticky-t-row,
.active .sticky-t-row-col {
    background-color: #f5f5f5;
}
.table-hover tr:hover .sticky-t-col{
    background-color: #f5f5f5!important;
}
.px-0 {
    padding-left: 0px;
    padding-right: 0px;
}
.popover-overflow {
    padding-right: 20px;
    max-height: 300px;
    overflow: auto;
}
#role-ur-list {
    height: 350px;
    overflow: auto;
}
.profile-logout .dropdown-menu li a {
    padding: 0.35em 1em!important;
}
.profile-logout .dropdown-menu li a:hover,
.profile-logout .dropdown-menu li a:focus {
    color: #fff;
}
#edit-profile-tabs .tab-pane {
    -webkit-box-shadow: unset;
    box-shadow: unset;
}
#edit-profile-tabs .nav-tabs li a {
    padding: 0.5em 1em!important;
    background: #eee!important;
    margin: 0px;
    color: #4d4d4d;
    letter-spacing: 0.01rem;
    font-size: 1.14rem;
    text-transform: uppercase;
    font-weight: bold;
    padding: 11px 34px!important;
    border: none;
}
#edit-profile-tabs .nav-tabs li.active a {
    /* background: #428bca!important; */
    /* color: #fff!important; */
    color: #368ee0!important;
    margin: 0px!important;
    border: none!important;
    margin-right: 0px!important;
    padding: 10px 34px!important;
    background-color: rgba(54, 142, 224, .03)!important;
    letter-spacing: 0.01rem;
    font-size: 1.14rem;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.428571429;
}
.nav-tabs > li, .nav-tabs-2 > li {
    border-bottom: 0.3rem solid #eeeeee;
    margin: 0 6px 0 0;
    outline: 0;
}
.nav-tabs > li.active, .nav-tabs-2 > li.active {
    border-bottom: 0.3rem solid #368ee0;
}
#edit-profile-tabs .nav-tabs {
    /* border-bottom: 1px solid #eee; */
    margin-bottom: 20px;
    background: #fbfbfb;
}
.d-flex {
    display: flex;
}

.resize-none{
  resize : none;
}
.py-sm {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.font-normal {
  font-weight: normal;
}
.b_b_d {
    border-bottom: 1px dashed #E8E8E8;
    padding-bottom: 5px;
}
.overflow-y-auto{
  overflow-y: auto !important;
}
.height-auto{
  height: auto;
}   

.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
  padding: 6px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px dashed #DDDDDD;
}
#nasp-list li {
  width: 100%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 3px 0px !important;
  font-size: 13px!important;
}
#nasp-list li.active {
  background-color: #eee;
}
#ns-list-div .nasp-item > a:focus {
  color: #333!important;
}
#ns-list-div .nasp-item > a,
#ns-list-div .nasp-item > a:hover {
  color : #333;
  text-decoration: none;
  display: block;
  line-height: 1.15 !important;
}
#ns-list-div > li:hover,
#ns-list-div > li:focus,
#ns-list-div > li:active {
    background: #368ee0;
    color: #fff;
    filter: none;
}
#ns-list-div{  
  max-height: 280px;
  overflow: auto;
  min-width: 233px;
}
.popover {
  border-radius: 4px;
}
textarea.form-control {
  resize: vertical;
}
.modal-content {
  border-radius: 4px;
  -webkit-box-shadow: 0 11px 15px -7px rgba(0,0,0,.2), 0 24px 38px 3px rgba(0,0,0,.14), 0 9px 46px 8px rgba(0,0,0,.12);
  box-shadow: 0 11px 15px -7px rgba(0,0,0,.2), 0 24px 38px 3px rgba(0,0,0,.14), 0 9px 46px 8px rgba(0,0,0,.12);
  border: 1px solid #cccccc;
}
.modal-backdrop {
  opacity: 1;
  background-color: rgba(0,0,0,.32);
}

.gn-menu-main > li > a {
  padding: 0;
}
.gn-icon-menu i {
  font-size: 24px;
}
.gn-icon-menu.gn-selected > .hamburger {
  display: none;
}
.gn-icon-menu.gn-selected > .cross {
  display: block;
}
.gn-icon-menu > .cross {
  display: none;
}

.email-content, .email-new {
  -webkit-transition: none;
    transition: none;
}
.email-new.email-active {
  right: calc(50% - 350px)!important;
  height: auto;
  margin-top: 0;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  border-radius: 4px;
  z-index: 1300;
  -webkit-box-shadow: 0 11px 15px -7px rgba(0,0,0,.2), 0 24px 38px 3px rgba(0,0,0,.14), 0 9px 46px 8px rgba(0,0,0,.12);
  box-shadow: 0 11px 15px -7px rgba(0,0,0,.2), 0 24px 38px 3px rgba(0,0,0,.14), 0 9px 46px 8px rgba(0,0,0,.12);
}
.email-new.email-active + .floating-dialog-overlay {
  position: fixed !important;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1299;
  background-color: rgba(0,0,0,.32);
}
.email-new.email-active .email-body {
  border-radius: 4px;
}
.email-content .email-header, 
.email-new .email-header {
  padding: 1px 80px 10px 20px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.email-header h1 {
  font-size: 20px;
}
.email-header .close-button,
.email-header .close-button:hover,
.email-header .close-button:focus,
.email-header .close-button:active {
  background-color: transparent!important;
  border-color: transparent!important;
  -webkit-box-shadow: none;
  box-shadow: none;
  right: 15px;
}
.email-inner.big-box {
  padding: 20px 20px 10px;
}
.email-inner.big-box .email-inner-section {
  margin-bottom: 20px;
  margin-left: -7px;
  margin-right: -10px;
}
#navigation {
  /* height: 52px; */
  /* max-height: 52px; */
  background: #0078d7;
  transition: height linear .3s;
}
#navigation.affix {
  -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
#navigation #brand {
  color: #fff;
  font-size: 19px;
  padding: 12px 30px;
  text-decoration: none;
  display: inline-block;
}
#navigation > ul {
  margin-bottom: 0;
}
#navigation .main-nav,
#navigation .right-nav {
  display: inline-flex;
  list-style-type: none;
  padding-inline-start: 10px;
}
#navigation .main-nav > li {
  position: relative;
}
#navigation #nav-toggle,
#navigation .main-nav > li > a,
#navigation .right-nav > li > a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 16px!important;
  height: 52px;
}
#navigation .main-nav > li.active {
  background: #fff;
  color: #222222;
}
#navigation .main-nav > li.active > a,
#navigation .main-nav > li.active > a:hover,
#navigation .main-nav > li.active > a:focus {
  background: #fff;
  color: #222222;
}
#navigation .main-nav > li > a {
  font-weight: 700;
  white-space: nowrap;
}
#navigation .main-nav > li:hover .dropdown-menu {
    display: block;
}
#navigation #nav-toggle:hover,
#navigation .main-nav > li > a:hover,
#navigation .right-nav > li > a:hover {
    text-decoration: none;
    background: #1e74c5;
}
#navigation .main-nav > li > a > i {
  display: none;
}
.dropdown-menu {
  margin: 0!important;
  border: none;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.dropdown-menu > li > a {
    padding: 6px 15px;
    font-size: 13px;
    filter: none;
}
#navigation .dropdown-menu > li > a:hover,
#navigation .dropdown-menu > li > a:focus,
#navigation .dropdown-menu > li > a:active {
    background: #368ee0;
    color: #fff;
    filter: none;
}
#nasp-dropdown {
    min-width: 270px;
    padding-bottom: 0;
}
#navigation #nav-toggle {
  font-size: 20px;
  display: none;
  padding: 17px 16px 14px 16px!important;
}
@media (max-width: 768px) {
  #navigation:not(.opened) {
    height: 52px;
    max-height: 52px;
    /* overflow: hidden; */
  }
  #navigation:not(.opened) .main-nav {
    /* display: none; */
    display: block;
    height: 0;
    overflow: hidden;
  }
  #navigation.opened .main-nav {
    display: block;
    height: auto;
    padding-inline-start: 0;
  }
  #navigation #nav-toggle {
    display: flex;
    float: left;
    align-items: center;
    padding: 16px!important;
  }
  #navigation #brand {
    padding: 12px 12px;
    max-width: 55%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #navigation .main-nav > li.active > a,
  #navigation .main-nav > li.active > a:hover,
  #navigation .main-nav > li.active > a:focus {
    background: #0078d7;
    color: #fff;
  }
}

.heading_b {
  font-size: 16px;
  margin: 0 0 10px;
  border-bottom: 1px dashed #ddd;
  padding: 0 8px 4px;
}

#profile-other-apps h5 {
  font-size: 16px;
}

.hide-select2-loading .select2-container-multi .select2-choices .select2-search-field input.select2-active {
  background: none! important;
}
.h-auto {
  height: auto;
}
.bs-stepper .step-trigger {
  font-size: 1.35rem!important;
}

#geofence-map-box {
  position: relative;
}
#geofence-map-autocomplete-box {
  position: absolute;
  right: 0;
  margin: 10px;
  width: 300px;
  z-index: 1000;
}
.fleet-vehicle-marker {
  height: auto!important;
}
.modal .close-icon .close {
  margin: 0;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 23px;
  height: 23px;
  border-radius: 23px;
  font-size: 1.5rem!important;
  opacity: 1;
  z-index: 500;
  background: #ffffff!important;
}  
.modal .close-icon .close:hover {
  opacity: 1;
}