@charset "UTF-8";
/*
 *
 *   RENAISSANCE - Responsive Admin Theme
 *   version 1.3.0
 *
*/
@import url(http://fonts.googleapis.com/css?family=Roboto:100,400,500,300,700);
.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: #903;
  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: 40px;
  height: 40px;
}

.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: 16px;
  font-weight: 400;
}

h5 {
  font-size: 12px;
}

h6 {
  font-size: 10px;
}

.text-primary {
  color: #63A8EB;
}

.text-success {
  color: #42b382;
}

.text-warning {
  color: #ffc107;
}

.text-danger {
  color: #E9585B;
}

.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: 1200;
  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 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: #fff !important;
}

.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;
  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: 50px;
  line-height: 50px;
}

.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: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #76828E;
  padding-top: 56px;
  font-size: 14px;
  position: relative;
  background: #F1F4F5;
  overflow-x: hidden;
}

.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: #42b382;
}

.dark-green {
  color: #348e67;
}

.blue {
  color: #63A8EB;
}

.light-blue {
  color: #90c1f1;
}

.yellow {
  color: #ffc107;
}

.red {
  color: #E9585B;
}

.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: #42b382 !important;
}

.blue-bg {
  background: #63A8EB !important;
}

.light-blue-bg {
  background: #90c1f1 !important;
}

.yellow-bg {
  background: #ffc107 !important;
}

.red-bg {
  background: #E9585B !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: 20px 30px 66px;
  position: relative;
  background: #F1F4F5;
  -webkit-transition: margin, .4s;
          transition: margin, .4s;
}

.content-box {
  position: relative;
  background: #903;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  margin-bottom: 30px;
  overflow: hidden;
  -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);
}

.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: 15px;
  padding-top: 20px;
  border-bottom: 0;
}

.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 {
  color: #939393;
  font-weight: 400;
  bottom: 0;
  left: 0;
  line-height: 66px;
  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: 520px;
  width: 100%;
  min-width: 280px;
}

.login h1 {
  font-size: 60px;
  font-weight: 100;
}

.login h4, .login p {
  font-weight: 400;
}

.login .login-form {
  padding: 30px 80px 120px;
}

.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: #42b382 !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: #42b382 !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: #42b382;
  color: #fff !important;
  border-color: #42b382;
}

.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: #63A8EB;
}

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: #42b382;
  -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: #63A8EB;
  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: #63A8EB;
  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 #63A8EB;
}

.list-info {
  border-left: 3px solid #90c1f1;
}

.list-success {
  border-left: 3px solid #42b382;
}

.list-warning {
  border-left: 3px solid #ffc107;
}

.list-danger {
  border-left: 3px solid #E9585B;
}

.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: #63A8EB;
}

.form-control, .form-control:focus {
  border-color: #E7EBEC;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.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: #42b382;
}

.project-item .status-desktop .unactive:before, .project-item .status-mobile .unactive:before {
  background: #E9585B;
}

.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: #63A8EB;
  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: 80px;
  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: #63A8EB;
  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: #ffc107;
}

.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: 0px 0 5px 0 rgba(66, 66, 66, 0.2);
          box-shadow: 0px 0 5px 0 rgba(66, 66, 66, 0.2);
  -webkit-transition: all, .7s;
          transition: all, .7s;
}

.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: #63A8EB !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: #63A8EB;
  background-color: #63A8EB;
}

.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: #63A8EB;
}

.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 #63A8EB;
  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: #63A8EB;
}

.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: #63A8EB;
}

.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: #63A8EB;
}

.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: 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: #ffc107;
  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: #ffc107;
  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.3s;
          animation-duration: 0.3s;
}

@-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: #42b382;
}

body .ns-effect-loadingcircle {
  background-color: #42b382 !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: #E9585B !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: #ffc107;
  -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 #63A8EB;
  border-right: 0 solid #63A8EB;
}

.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 #42b382;
  border-right: 0 solid #42b382;
}

.chat .chat-double .chat-panel.red-bg:after {
  border-left: 9px solid #E9585B;
  border-right: 0 solid #E9585B;
}

.chat .chat-double .chat-panel.yellow-bg:after {
  border-left: 9px solid #ffc107;
  border-right: 0 solid #ffc107;
}

.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: #42b382;
}

.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: #63A8EB;
}

.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: 5px;
  right: 10px;
  cursor: pointer;
}

.ultra-widget .w-refresh.w-p-icon {
  font-size: 36px;
  opacity: 0.5;
  right: 15px;
}

.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: #ffc107;
  border-color: #ffc107;
  color: #fff !important;
}

.btn.btn-warning:hover, .open > .dropdown-toggle.btn-warning:hover, .open > .dropdown-toggle.btn-warning:focus:hover {
  background-color: #ffc107;
}

.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: #ffc107;
  border-color: #ffc107;
}

.btn.btn-danger, .open > .dropdown-toggle.btn-danger, .open > .dropdown-toggle.btn-danger:focus {
  background-color: #E9585B;
  border-color: #E9585B;
  color: #fff !important;
}

.btn.btn-danger:hover, .open > .dropdown-toggle.btn-danger:hover, .open > .dropdown-toggle.btn-danger:focus:hover {
  background-color: #E9585B;
}

.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: #63A8EB;
  border-color: #63A8EB;
  color: #fff !important;
}

.btn.btn-primary:hover, .open > .dropdown-toggle.btn-primary:hover, .open > .dropdown-toggle.btn-primary:focus:hover {
  background-color: #63A8EB;
}

.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: #63A8EB;
  border-color: #63A8EB;
}

.btn.btn-success, .open > .dropdown-toggle.btn-success, .open > .dropdown-toggle.btn-success:focus {
  background-color: #42b382;
  border-color: #42b382;
  color: #fff !important;
}

.btn.btn-success:hover, .open > .dropdown-toggle.btn-success:hover, .open > .dropdown-toggle.btn-success:focus:hover {
  background-color: #42b382;
}

.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: #42b382;
  border-color: #42b382;
}

.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: #42b382;
}

.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 #42b382;
}

.panel-box.panel-danger {
  border-top: 3px solid #E9585B;
}

.panel-box.panel-warning {
  border-top: 3px solid #ffc107;
}

.panel-box.panel-primary {
  border-top: 3px solid #63A8EB;
}

.panel-box.panel-info {
  border-top: 3px solid #90c1f1;
}

.panel-box.panel-gray {
  border-top: 3px solid #273238;
}

.panel.panel-success {
  border-color: #42b382;
}

.panel.panel-success > .panel-heading {
  border-color: #42b382;
  background: #42b382;
  color: #fff;
}

.panel.panel-danger {
  border-color: #E9585B;
}

.panel.panel-danger > .panel-heading {
  border-color: #E9585B;
  background: #E9585B;
  color: #fff;
}

.panel.panel-warning {
  border-color: #ffc107;
}

.panel.panel-warning > .panel-heading {
  border-color: #ffc107;
  background: #ffc107;
  color: #fff;
}

.panel.panel-primary {
  border-color: #63A8EB;
}

.panel.panel-primary > .panel-heading {
  border-color: #63A8EB;
  background: #63A8EB;
  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: #42b382;
}

.badge-danger {
  background: #E9585B;
}

.badge-warning {
  background: #ffc107;
}

.badge-primary {
  background: #63A8EB;
}

.badge-info {
  background: #90c1f1;
}

.badge-gray {
  background: #273238;
}

/*Labels*/
.label-warning {
  background-color: #ffc107;
}

.label-danger {
  background-color: #E9585B;
}

.label-primary {
  background-color: #42b382;
}

.label-success {
  background-color: #63A8EB;
}

.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: #ffc107;
}

/*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: #63A8EB;
  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: #ffc107;
  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: #63A8EB;
  -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-webfontd845.eot?86805246");
  src: url("../fonts/meteocons/meteocons-webfontd845.eot?86805246#iefix") format("embedded-opentype"), url("../fonts/meteocons/meteocons-webfontd845.woff?86805246") format("woff"), url("../fonts/meteocons/meteocons-webfontd845.ttf?86805246") format("truetype"), url("../fonts/meteocons/meteocons-webfontd845.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: #63A8EB;
}

/*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: #63A8EB;
}

input.switcher-success:checked + label:before {
  background-color: #63c59b;
}

input.switcher-success:checked + label:after {
  margin-left: 16px;
  background-color: #42b382;
}

input.switcher-danger:checked + label:before {
  background-color: #f5b2b4;
}

input.switcher-danger:checked + label:after {
  margin-left: 16px;
  background-color: #E9585B;
}

input.switcher-warning:checked + label:before {
  background-color: #ffdb6d;
}

input.switcher-warning:checked + label:after {
  margin-left: 16px;
  background-color: #ffc107;
}

/*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: #42b382;
  border-color: #42b382;
}

.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: #E9585B;
  border-color: #E9585B;
}

.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: #ffc107;
  border-color: #ffc107;
}

.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: #63A8EB;
  border-color: #63A8EB;
}

.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: #42b382;
}

.radio-primary input[type="radio"]:checked + i::before {
  border-color: #42b382;
}

.radio-primary input[type="radio"]:checked + i::after {
  background-color: #42b382;
}

.radio-danger input[type="radio"] + i::after {
  background-color: #E9585B;
}

.radio-danger input[type="radio"]:checked + i::before {
  border-color: #E9585B;
}

.radio-danger input[type="radio"]:checked + i::after {
  background-color: #E9585B;
}

.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: #ffc107;
}

.radio-warning input[type="radio"]:checked + i::before {
  border-color: #ffc107;
}

.radio-warning input[type="radio"]:checked + i::after {
  background-color: #ffc107;
}

.radio-success input[type="radio"] + i::after {
  background-color: #63A8EB;
}

.radio-success input[type="radio"]:checked + i::before {
  border-color: #63A8EB;
}

.radio-success input[type="radio"]:checked + i::after {
  background-color: #63A8EB;
}

.example-item {
  margin-bottom: 20px;
}

label {
  font-weight: 400;
}

.help-text {
  padding: 3px 0;
}

.form-control.material {
  padding-left: 0;
  border: 0;
  -webkit-border-radius: 0;
          border-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#63A8EB), to(#63A8EB)), -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2));
  background-image: -webkit-linear-gradient(#63A8EB, #63A8EB), -webkit-linear-gradient(#d2d2d2, #d2d2d2);
  background-image: linear-gradient(#63A8EB, #63A8EB), 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: #63A8EB;
}

.progress-bar-danger {
  background-color: #E9585B;
}

.progress-bar-success {
  background-color: #42b382;
}

.progress-bar-warning {
  background-color: #ffc107;
}

.breadcrumb {
  -webkit-border-radius: 0;
          border-radius: 0;
  background-color: transparent;
}

.breadcrumb.breadcrumb-arrow > li + li:before {
  content: "\00bb\00a0";
}

.breadcrumb a {
  color: #63A8EB;
}

.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: #63A8EB;
  border-color: #63A8EB !important;
}

.pagination li.active a:hover, .pagination li.active a:focus {
  background: #63A8EB;
  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: #ffc107;
}

.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: #63A8EB;
  color: #fff;
}

.gn-menu-main ul.gn-menu {
  background: #273238;
}

.gn-menu-main ul.gn-menu a {
  color: #76828E;
}

.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: #63A8EB;
  border-color: #63A8EB;
  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: #63A8EB;
}

.gn-menu-main .notifications > a:focus {
  background-color: #4c9be8 !important;
}

.gn-menu-main .notifications ul {
  color: #76828E;
}

#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: #4c9be8;
  color: #fff;
}

.gn-menu-wrapper {
  background: #273238;
}

.gn-menu .arrow {
  color: #76828E;
}

.gn-submenu {
  background: #313f47 !important;
}

.gn-submenu li a {
  color: #76828E;
}

.gn-submenu li a:before {
  background: #273238;
}

.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: #63A8EB;
}

@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 #63A8EB;
    border-right: 9px solid #63A8EB;
  }
  .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 #42b382;
    border-right: 9px solid #42b382;
  }
  .chat-double .chat-panel.red-bg:after {
    border-left: 0 solid #E9585B;
    border-right: 9px solid #E9585B;
  }
  .chat-double .chat-panel.yellow-bg:after {
    border-left: 0 solid #ffc107;
    border-right: 9px solid #ffc107;
  }
  .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;
  }
}

/*# sourceMappingURL=maps/style.css.map */
