@charset "UTF-8";

.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: #ea650d;
  margin: 0 auto;
}

.la-ball-scale-multiple.la-dark {
  color: #333;
}

.la-ball-scale-multiple > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.la-ball-scale-multiple {
  width: 32px;
  height: 32px;
}

.la-ball-scale-multiple > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
          animation: ball-scale-multiple 1s 0s linear infinite;
}

.la-ball-scale-multiple > div:nth-child(2) {
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.la-ball-scale-multiple > div:nth-child(3) {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.la-ball-scale-multiple.la-sm {
  width: 16px;
  height: 16px;
}

.la-ball-scale-multiple.la-sm > div {
  width: 16px;
  height: 16px;
}

.la-ball-scale-multiple.la-2x {
  width: 64px;
  height: 64px;
}

.la-ball-scale-multiple.la-2x > div {
  width: 64px;
  height: 64px;
}

.la-ball-scale-multiple.la-3x {
  width: 96px;
  height: 96px;
}

.la-ball-scale-multiple.la-3x > div {
  width: 96px;
  height: 96px;
}

/*
 * Animation
 */
@-webkit-keyframes ball-scale-multiple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  5% {
    opacity: .75;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes ball-scale-multiple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  5% {
    opacity: .75;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/*Timer Loader*/
.refresh-preloader {
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  position: absolute;
  display: none;
  z-index: 100;
}

.refresh-preloader .la-timer {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.la-timer,
.la-timer > div {
  position: relative;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.la-timer {
  display: block;
  font-size: 0;
  color: #fff;
}

.la-timer.la-dark {
  color: #BBC1C7;
}

.la-timer > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.la-timer {
  width: 32px;
  height: 32px;
}

.la-timer > div {
  width: 32px;
  height: 32px;
  background: transparent;
  border-width: 2px;
  -webkit-border-radius: 100%;
          border-radius: 100%;
}

.la-timer > div:before,
.la-timer > div:after {
  position: absolute;
  top: 14px;
  left: 14px;
  display: block;
  width: 2px;
  margin-top: -1px;
  margin-left: -1px;
  content: "";
  background: currentColor;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  -webkit-transform-origin: 1px 1px 0;
      -ms-transform-origin: 1px 1px 0;
          transform-origin: 1px 1px 0;
  -webkit-animation: timer-loader 1250ms infinite linear;
          animation: timer-loader 1250ms infinite linear;
  -webkit-animation-delay: -625ms;
          animation-delay: -625ms;
}

.la-timer > div:before {
  height: 12px;
}

.la-timer > div:after {
  height: 8px;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-delay: -7.5s;
          animation-delay: -7.5s;
}

.la-timer.la-sm {
  width: 16px;
  height: 16px;
}

.la-timer.la-sm > div {
  width: 16px;
  height: 16px;
  border-width: 1px;
}

.la-timer.la-sm > div:before,
.la-timer.la-sm > div:after {
  top: 7px;
  left: 7px;
  width: 1px;
  margin-top: -.5px;
  margin-left: -.5px;
  -webkit-border-radius: 1px;
          border-radius: 1px;
  -webkit-transform-origin: .5px .5px 0;
      -ms-transform-origin: .5px .5px 0;
          transform-origin: .5px .5px 0;
}

.la-timer.la-sm > div:before {
  height: 6px;
}

.la-timer.la-sm > div:after {
  height: 4px;
}

.la-timer.la-2x {
  width: 64px;
  height: 64px;
}

.la-timer.la-2x > div {
  width: 64px;
  height: 64px;
  border-width: 4px;
}

.la-timer.la-2x > div:before,
.la-timer.la-2x > div:after {
  top: 28px;
  left: 28px;
  width: 4px;
  margin-top: -2px;
  margin-left: -2px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  -webkit-transform-origin: 2px 2px 0;
      -ms-transform-origin: 2px 2px 0;
          transform-origin: 2px 2px 0;
}

.la-timer.la-2x > div:before {
  height: 24px;
}

.la-timer.la-2x > div:after {
  height: 16px;
}

.la-timer.la-3x {
  width: 96px;
  height: 96px;
}

.la-timer.la-3x > div {
  width: 96px;
  height: 96px;
  border-width: 6px;
}

.la-timer.la-3x > div:before,
.la-timer.la-3x > div:after {
  top: 42px;
  left: 42px;
  width: 6px;
  margin-top: -3px;
  margin-left: -3px;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  -webkit-transform-origin: 3px 3px 0;
      -ms-transform-origin: 3px 3px 0;
          transform-origin: 3px 3px 0;
}

.la-timer.la-3x > div:before {
  height: 36px;
}

.la-timer.la-3x > div:after {
  height: 24px;
}

/*
 * Animation
 */
@-webkit-keyframes timer-loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes timer-loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
  font-weight: 400;
}

h5 {
  font-size: 12px;
}

h6 {
  font-size: 10px;
}

.text-primary {
  color: #ea650d;
}

.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-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: 60px;
  font-size: 20px;
  font-weight: 300;
  padding: 0;
  margin-top: -5px;
  display: block;
}
.gn-menu-main .logo img{width: 45px; height: 45px;}

/*
.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-hidden {
  display: block;
}

.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: "ElisWGL-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #9c8f8f;
  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;
}

/*Boxes*/
.content {
  margin: 0 0 0 66px;
  /*margin: 0;*/
  padding: 20px 30px 66px;
  position: relative;
  background: #F1F4F5;
  -webkit-transition: margin, .4s;
          transition: margin, .4s;
}

.content-box {
  position: relative;
  background: #fff;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  margin-bottom: 5px;
  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;
}

.content-visible {
  overflow: visible !important;
}

.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;
}

/*Dropdown*/
.dropdown, .dropup {
  display: inline-block;
}

.dropdown .dropdown-menu, .dropup .dropdown-menu, .btn-group .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 {
  padding: 8px 20px;
}

.dropdown .dropdown-menu.pull-right, .dropup .dropdown-menu.pull-right, .btn-group .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.dropdown .dropdown-menu, .btn-group .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 {
  -webkit-transform-origin: top right;
      -ms-transform-origin: top right;
          transform-origin: top right;
}

.dropdown.notifications .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 {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.notifications .dropdown-menu, .clock .dropdown-menu {
  min-width: 240px;
  padding: 10px;
  background: #fff !important;
}

.clock .dropdown-menu {
  color: #76828E;
  left: -20px;
}

.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;}

/*!
 * bootstrap-vertical-tabs - v1.2.1
 * https://dbtek.github.io/bootstrap-vertical-tabs
 * 2014-11-07
 * Copyright (c) 2014 İsmail Demirbilek
 * License: MIT
 */

/*Contacts Page*/

.modal {
  z-index: 1950;
}

.list-primary {
  border-left: 3px solid #ea650d;
}

.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;
}
.panel-box p {
  margin: 20px 0;
  font-weight: 400;
}

a.thumbnail.active, a.thumbnail:focus, a.thumbnail:hover {
  border-color: #ea650d;
}

.input-group-addon {
  border-color: #E7EBEC;
}

.form-inline .form-group {
  margin-right: 20px;
}

.form-inline .btn {
  margin-right: 10px;
}

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;
}

.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;
}

.list-group-item {
  border-color: #E7EBEC;
}

.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: #ea650d;
  background-color: #ea650d;
}

.profile-sidebar {
  padding: 20px 0 10px 0;
  background: #fff;
  -webkit-border-radius: 3px;
          border-radius: 3px;
}

.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;
  }
}

.smk-alert-content .fa {
  font-size: 20px;
  float: left;
  margin-right: 14px;
}

/* 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;
}

/* 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;
}

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;
}

.ns-type-error {
  background: #E9585B !important;
}

.ns-type-warning {
  background: #e4ad06 !important;
}

.ns-type-success {
  background: #348e67 !important;
}

.readed {
  position: absolute;
  color: #76828E;
  bottom: 5px;
  left: -25px;
}

.ultra-widget {
  position: relative;
}

.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: #ea650d;
}

.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: #ea650d;
  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;
}



/*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 #ea650d;
}

.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: #ea650d;
}

.panel.panel-primary > .panel-heading {
  border-color: #ea650d;
  background: #ea650d;
  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: #ea650d;
}

.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: #ea650d;
}

.label-info {
  background-color: #90c1f1;
}

.label-gray {
  background-color: #273238;
}

/*Metis Menu*/
.metismenu .fa.arrow:before {
  content: "\f105";
}

/*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: #ea650d;
  border-color: #ea650d;
}

.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: #ea650d;
}

.radio-success input[type="radio"]:checked + i::before {
  border-color: #ea650d;
}

.radio-success input[type="radio"]:checked + i::after {
  background-color: #ea650d;
}

.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(#ea650d), to(#ea650d)), -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2));
  background-image: -webkit-linear-gradient(#cc0033, #cc0033), -webkit-linear-gradient(#d2d2d2, #d2d2d2);
  background-image: linear-gradient(#cc0033, #cc0033), 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;
  }
}

.breadcrumb {
  -webkit-border-radius: 0;
          border-radius: 0;
  background-color: transparent;
}

.breadcrumb.breadcrumb-arrow > li + li:before {
  content: "\00bb\00a0";
}

.breadcrumb a {
  color: #ea650d;
}

.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: #ea650d;
  border-color: #ea650d !important;
}

.pagination li.active a:hover, .pagination li.active a:focus {
  background: #ea650d;
  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: auto;
  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 .listCheckBoxes {
  margin-top: 30px;
}

.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;
}

.picker .picker-label {
  max-width: 140px;
}

/*Skins*/
.gn-menu-main {
  background: #ea650d;
  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: #ea650d !important;
}

.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: #ea650d;
}

.gn-menu-main .notifications > a:focus {
  background-color: #ea650d !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: #ea650d;
  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 i{padding: 0 5px 0 0}

.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;
}

.flot-tooltip {
  background: #ea650d;
}

@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;
  }
  .gn-menu-hidden {
    display: none;
  }
}

@media (max-width: 767px) {
  .login .login-form {padding: 15px;}
}

@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;
  }
  #menu-toggle {
    display: none !important;
  }
  .gn-menu-hidden {
    display: 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;
  }
  .gn-search-item input.gn-search {
    width: 100%;
  }
}