﻿html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

elements-of-type(html5-block) {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  min-height: 100%;
  min-width: 100%;
}

body {
  background-color: #fafafa;
  -webkit-touch-callout: none;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* prevent default ios & osx styling */
  overflow-x: hidden;
  font-size: 14px;
}

body ::-webkit-input-placeholder {
  color: #9e9e9e;
}

body :-moz-placeholder {
  color: #9e9e9e;
}

body ::-moz-placeholder {
  color: #9e9e9e;
}

body :-ms-input-placeholder {
  color: #9e9e9e;
}

a {
  cursor: pointer;
}

/*AVATARS*/
.avatar {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  /*margin-left: 10px;*/
  vertical-align: middle;
  cursor: pointer;
}

.avatar .indicator {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #ff3b30;
  border: solid 2px #f4f4f4;
  border-radius: 50%;
}

.avatar img {
  /*width: 34px;
        height: 34px;*/
  width: 100%;
  height: 100%;
  background-color: #e9e9e9;
  border-radius: 50%;
  border: solid 1px #e9e9e9;
}

/* LISTS */
.list-item {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  opacity: 1;
}

.list-item:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.item-title {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 106%;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -1px;
  color: #222222;
  margin-bottom: 3px;
}

.item-subtitle {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 80%;
  line-height: 1.25;
  color: #666666;
  margin-bottom: 0;
}

.item-data {
  line-height: 1.25;
  color: #222222;
}

/*APP ASIDE NAVIGATION*/
.app-menu {
  position: fixed;
  left: -230px;
  top: 0;
  width: 230px;
  min-height: 100%;
  height: 100vh;
  color: rgba(255, 255, 255, 0.7);
  background-color: #2e4862; /*#456c93;*/
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF456C93', endColorstr='#FF2D3A47');
  background-image: -owg(linear-gradient(top, #456c93 0%, #2d3a47 100%));
  background-image: -webkit(linear-gradient(top, #456c93 0%, #2d3a47 100%));
  background-image: -moz(linear-gradient(top, #456c93 0%, #2d3a47 100%));
  background-image: -o(linear-gradient(top, #456c93 0%, #2d3a47 100%));
  background-image: linear-gradient(top, #456c93 0%, #2d3a47 100%);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out false;
  -o-transition: all 0.25s ease-in-out false;
  transition: all 0.25s ease-in-out;
  z-index: 10;
  overflow: hidden;
  overflow-y: scroll;
}

.app-menu:before {
  content: "";
  display: block;
  height: 44px;
  width: 100%;
}

.app-menu.menu-toggle {
  left: 0;
}

@media (min-width: 600px) {
  .app-menu {
    left: 0;
  }

  .app-menu.menu-toggle {
    left: -230px;
  }
}

.app-menu .list-item:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.app-menu .item-title {
  color: #ffffff;
  font-weight: 400;
}

.app-menu .item-subtitle,
.app-menu .item-data {
  color: rgba(255, 255, 255, 0.7);
}

.menu-pinned {
  /*width: 230px;*/
}

@media (min-width: 600px) {
  .menu-pinned {
    width: 44px;
    left: 0;
    overflow: visible;
  }

  .menu-pinned .aside-nav .aside-title {
    display: none;
  }

  .menu-pinned .aside-subnav {
    position: absolute;
    left: 0;
    top: 0;
    width: 225px;
    background-color: #3d5f82;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out false;
    -o-transition: all 0.2s ease-in-out false;
    transition: all 0.2s ease-in-out;
  }

  .menu-pinned .aside-subnav li {
    padding: 0 10px;
  }

  .menu-pinned .aside-subnav .aside-title {
    display: inline;
  }

  .menu-pinned .open-submenu .aside-subnav {
    left: 54px;
    opacity: 1;
    visibility: visible;
  }

  .menu-pinned .aside-widget-box {
    margin-left: -10px;
    margin-right: -5px;
    padding-left: 0;
  }

  .menu-pinned .aside-widget-box .avatar {
    position: relative;
    width: 25px;
    height: 25px;
  }

  .menu-pinned .aside-widget-box .username {
    display: none;
  }

  .menu-pinned .aside-widget-box .widget-item {
    display: block;
    width: auto;
    padding: 5px 0;
  }

  .menu-pinned .aside-widget-box .badge {
    font-size: 0;
    width: 10px;
    height: 10px;
    padding: 0;
  }

  .menu-pinned .aside-widget-list-wraper {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 220px;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.15);
    /*padding-left: 10px;*/
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out false;
    -o-transition: all 0.2s ease-in-out false;
    transition: all 0.2s ease-in-out;
    background: #ffffff;
  }

  .menu-pinned .aside-widgets .aside-widget-list {
    margin: 0;
  }

  .menu-pinned .open-submenu .aside-widget-list-wraper {
    opacity: 1;
    left: 43px;
    visibility: visible;
  }
}

.menu-pin {
  display: none;
}

@media (min-width: 600px) {
  .menu-pin {
    display: block;
  }
}

.aside-nav {
  display: block;
  width: 100%;
  /*$bs: unquote($bs);*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  font-size: 13px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out false;
  -o-transition: all 0.25s ease-in-out false;
  transition: all 0.25s ease-in-out;
  /*padding-left:0.4em;
  padding-right:0.4em;*/
}

.main-aside li {
  border: none !important;
  margin-bottom: 0.4em !important;
  vertical-align: central !important;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif !important;
  border-radius: 0.4em !important;
}

.aside-nav li {
  padding: 0 5px 0 10px;
  /*$bs: unquote($bs);*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 35px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out false;
  -o-transition: all 0.2s ease-in-out false;
  transition: all 0.2s ease-in-out;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.aside-nav li.active {
  position: relative;
  /*background-color: rgba(255, 255, 255, 0.1); }*/
  background: rgba(255, 255, 255, 0.2);
}
/*.aside-nav li.active:after {
        content: "";
        width: 5px;
        position: absolute;
        right: 0;
        top: 0;
        height: 37px;
        background-color: #2d465f; }*/
.aside-nav li a {
  display: block;
  width: 100%;
  /*$bs: unquote($bs);*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  text-decoration: none;
  color: #ffffff;
  opacity: 0.8;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out false;
  -o-transition: all 0.5s ease-in-out false;
  transition: all 0.5s ease-in-out;
}

.aside-nav li a:hover,
.aside-nav li a:focus {
  text-decoration: none;
  opacity: 1;
}

.aside-nav i.fa {
  margin-right: 5px;
  /*line-height: 35px;*/
  font-size: 120%;
  vertical-align: middle;
}

.aside-nav .aside-title {
  display: inline;
}

.aside-subnav {
  max-height: 0;
  overflow: hidden;
  margin-left: -10px;
  margin-right: -5px;
  background: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out false;
  -o-transition: all 0.5s ease-in-out false;
  transition: all 0.5s ease-in-out;
}

.aside-subnav li {
  position: relative;
  padding-left: 20px;
}

.aside-subnav li:last-child {
  border-bottom: none;
}

/*ASIDE WIDGETS*/
.aside-widgets {
  color: white;
  background-color: #3a5a7b;
  border-right: solid 1px #456c93;
  margin-bottom: 0em !important;
  /*background-color:#2E4862;*/
  /*.aside-widget-list-wraper {
        position: relative;
    }*/
}

.aside-widgets .aside-widget-box {
  position: relative;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.aside-widgets .widget-item {
  position: relative;
  display: inline-block;
  width: 65px;
  padding: 5px 10px;
  line-height: 35px;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;

  flex: 1 1 25%;
}

.aside-widgets .aside-widget-list-wraper {
  flex: 0 0 100%;
}
/*.aside-widgets .widget-item:hover {
      background: rgba(0, 0, 0, 0.05); }*/
/*.aside-widgets .widget-item.active {
      background-color: rgba(69, 108, 147, 0.2); }*/
.aside-widgets .widget-item .avatar {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
}

.aside-widgets .widget-item .username {
  display: block;
  font-size: 12px;
  line-height: 15px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  position: relative;
  padding: 5px 0;
}

.aside-widgets .widget-item .badge {
  position: absolute;
  top: 5px;
  right: 5px;
}

.aside-widgets .aside-widget-list {
  margin: 0 -5px 0 -10px;
  background-color: #3a5a7b;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear false;
  -o-transition: all 0.25s linear false;
  transition: all 0.25s linear;
  /*a {
            color: $color-brand;
        }*/
}

.aside-widgets .aside-widget-list.show-aw-list {
  max-height: 144px;
  overflow: auto;
}

.aside-nav.aside-widgets li {
  border: none;
  vertical-align: central;
}

.aside-widgets-li {
  margin-top: 0em !important;
}

.open-submenu .aside-subnav {
  display: block;
  max-height: 1500px;
  background-color: #2e4862;
}

/*APP HEADER*/
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  width: 100%;
  background-color: white;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  z-index: 15;
}

.app-header:after {
  content: "";
  display: table;
  clear: both;
}

.app-header-brand {
  position: absolute;
  display: block;
  float: left;
  width: 0;
  height: 44px;
  padding: 0 15px;
  /*$bs: unquote($bs);*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 44px;
  color: white;
  font-size: 20px;
  background: transparent;
}

.app-header-brand .brand,
.app-header-brand .brand-title {
  display: none;
}

@media (min-width: 600px) {
  .app-header-brand {
    width: 230px;
    background-color: #2e4862;
  }

  .app-header-brand .brand,
  .app-header-brand .brand-title {
    display: inline;
  }
  .app-header-brand .brand-title a {
    color: #fff;
    text-decoration: none;
  }
}

.app-header-action-wrap {
  padding-left: 60px;
  padding-right: 15px;
  line-height: 42px;
}

.app-header-action-wrap:after {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 600px) {
  .app-header-action-wrap {
    padding-left: 260px;
  }
}

.t-wraper {
  width: 39.33%;
  text-align: center;
  float: left;
}

.t-wraper:first-child {
  width: 30.33%;
  text-align: left;
}

.t-wraper:last-child {
  width: 30.33%;
  text-align: right;
}

.app-menu-toggle {
  display: block;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: -18px;
  line-height: 36px;
  text-align: center;
  color: #456c93;
  background-color: #ffffff;
  box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.app-menu-toggle i.fa {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out false;
  -o-transition: all 0.25s ease-in-out false;
  transition: all 0.25s ease-in-out;
}

.app-widgets {
  float: right;
  line-height: 44px;
  list-style: none;
}

.app-widgets li {
  position: relative;
  display: inline-block;
  height: 44px;
}

.app-widgets .widget-dropdown {
  display: block;
  padding: 0 18px;
  position: relative;
  line-height: 44px;
  text-decoration: none;
  color: #666666;
  cursor: pointer;
}

.app-widgets .widget-dropdown:hover {
  text-decoration: none;
  background: rgba(0, 0, 0, 0.05);
}

.app-widgets .widget-dropdown .badge {
  position: absolute;
  top: 15px;
  right: 5px;
}

.app-widgets .username {
  display: none;
  font-size: 12px;
  font-weight: 500;
  line-height: inherit;
  vertical-align: middle;
}

@media (min-width: 600px) {
  .app-widgets .username {
    display: inline;
  }
}

.app-widgets .avatar {
  margin-left: 10px;
}

/*APP WIDGETS*/
.widget-box {
  position: fixed;
  display: block;
  background: #ffffff;
  width: 100vw;
  top: 55px;
  right: 0;
  left: 0;
  line-height: normal;
  border: solid 1px #e9e9e9;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  -webkit-transform: translateY(-20%);
  -moz-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  -o-transform: translateY(-20%);
  transform: translateY(-20%);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out false;
  -o-transition: all 0.25s ease-in-out false;
  transition: all 0.25s ease-in-out;
}

.widget-box.open {
  max-height: none;
  visibility: visible;
  opacity: 1;
  overflow: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.widget-box .widget-body {
  height: 70vh;
  overflow: auto;
}

@media (min-width: 600px) {
  .widget-box {
    position: absolute;
    width: 230px;
    left: auto;
    right: 0;
  }

  .widget-box:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    right: 39px;
    bottom: 100%;
    border-width: 0 11px 11px;
    border-bottom-color: #e9e9e9;
  }

  .widget-box:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    right: 40px;
    bottom: 100%;
    border-width: 0 10px 10px;
    border-bottom-color: #ffffff;
  }

  .widget-box.open {
    max-height: none;
    visibility: visible;
    opacity: 1;
    overflow: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  .widget-box .widget-body {
    height: 300px;
    overflow: auto;
  }
}

.wb-with-hf {
  padding-top: 40px;
  padding-bottom: 40px;
}

.wb-with-h {
  padding-top: 40px;
}

.wb-with-f {
  padding-bottom: 40px;
}

.widget-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 40px;
  line-height: 20px;
  padding: 10px;
  /*$bs: unquote($bs);*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: solid 1px #e9e9e9;
  background: #fafafa;
}

.widget-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 40px;
  line-height: 20px;
  padding: 10px;
  /*$bs: unquote($bs);*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: solid 1px #e9e9e9;
  background: #fafafa;
}

.widget-box-list {
  display: block;
  width: 100%;
  list-style: none;
  /*$bs: unquote($bs);*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.widget-box-list li {
  display: block;
  height: auto;
  /*$bs: unquote($bs);*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.42;
  border-bottom: solid 1px #e9e9e9;
}

.widget-box-list li:last-child {
  border-bottom: none;
}

.widget-box-list .widget-item {
  display: block;
  height: auto;
  padding: 5px;
  /*$bs: unquote($bs);*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*APP CONTENT*/
.app-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 44px;
  /*$bs: unquote($bs);*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out false;
  -o-transition: all 0.25s ease-in-out false;
  transition: all 0.25s ease-in-out;
}

.app-container.container-toggle {
  -webkit-transform: translateX(230px);
  -moz-transform: translateX(230px);
  -ms-transform: translateX(230px);
  -o-transform: translateX(230px);
  transform: translateX(230px);
}

@media (min-width: 600px) {
  .app-container {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    padding-left: 230px;
  }

  .app-container.container-pinned {
    padding-left: 44px;
  }

  .app-container.container-toggle {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    padding-left: 0;
  }
}

.app-content {
  position: relative;
  padding: 15px;
  /*$bs: unquote($bs);*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 100%;
}

[class*="app-content-loader"] {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 5;
}
.app-content-loader-table span {
  top: 50px !important;
}

[class*="app-content-loader"] span {
  font-size: 18px;
  color: #3a5a7b;
  position: absolute;
  top: 45vh;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.fa.fa-spinner.fa-spin {
  font-size: 1.6rem;
  vertical-align: text-top;
  margin-right: 10px;
  /* color: #4cd964; */
  animation:
    fa-spin 2s infinite linear,
    change-colors 8s infinite linear;
}
@keyframes change-colors {
  0% {
    color: #5cb85c;
  }
  25% {
    color: #3a5a7b;
  }
  50% {
    color: #d9534f;
  }
  75% {
    color: #f0ad4e;
  }
  100% {
    color: #5cb85c;
  }
}

.content-split {
  position: relative;
  padding-right: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out false;
  -o-transition: all 0.25s ease-in-out false;
  transition: all 0.25s ease-in-out;
}

@media (min-width: 992px) {
  .content-split.split {
    padding-right: 400px;
  }
}

.split-on {
  overflow: hidden;
}

@media (min-width: 992px) {
  .split-on {
    overflow: visible;
  }
}

.aside {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  /*right: -100%;*/
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out false;
  -o-transition: all 0.25s ease-in-out false;
  transition: all 0.25s ease-in-out;
  background-color: #fafafa;
}

.aside.aside-show {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  right: 0;
}

.aside .aside-header {
  position: fixed;
  top: 84px;
  width: 100%;
  height: 44px;
  padding: 5px 10px;
  background-color: #ffffff;
  text-align: center;
  z-index: 1;
  /*$bs: unquote($bs);*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.aside .aside-body {
  position: relative;
  height: 100%;
  width: 100%;
  padding-top: 44px;
  /*$bs: unquote($bs);*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.aside .aside-body.ac-tab {
  padding-top: 130px;
}

.aside .aside-content {
  height: 100%;
  width: 100%;
  /*$bs: unquote($bs);*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: auto;
}

@media (min-width: 992px) {
  .aside {
    width: 400px;
  }

  .aside .aside-header {
    width: 400px;
  }
}

.paginator {
  display: inline-block;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  border-left: solid 1px #e9e9e9;
  font-size: 0;
}

.paginator li {
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
}

.paginator a {
  display: inline-block;
  padding: 5px 10px;
  border: solid 1px #e9e9e9;
  border-left: none;
  text-decoration: none;
  height: 24px;
  line-height: 24px;
}

.paginator a:hover {
  text-decoration: none;
  background-color: #f6f6f6;
}

/*===============================================
  D. Padding Helpers
================================================= */
.pn {
  padding: 0 !important;
}

.p5 {
  padding: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.p25 {
  padding: 25px !important;
}

.p30 {
  padding: 30px !important;
}

.p35 {
  padding: 35px !important;
}

.p40 {
  padding: 40px !important;
}

.p50 {
  padding: 50px !important;
}

.ptn {
  padding-top: 0 !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.prn {
  padding-right: 0 !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pbn {
  padding-bottom: 0 !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pln {
  padding-left: 0 !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl50 {
  padding-left: 50px !important;
}

/* Axis Padding (both top/bottom or left/right) */
.pv5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.pv10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.pv15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.pv20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.pv25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.pv30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.pv40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.pv50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.ph5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.ph10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.ph15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.ph20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.ph25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.ph30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.ph40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.ph50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

/*===============================================
  E. Margin Helpers
================================================= */
/* margin center helper */
.mauto {
  margin-left: auto;
  margin-right: auto;
}

.mn {
  margin: 0 !important;
}

.m5 {
  margin: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.m25 {
  margin: 25px !important;
}

.m30 {
  margin: 30px !important;
}

.m35 {
  margin: 35px !important;
}

.m40 {
  margin: 40px !important;
}

.m50 {
  margin: 50px !important;
}

.mtn {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mrn {
  margin-right: 0 !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mbn {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mln {
  margin-left: 0 !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml50 {
  margin-left: 50px !important;
}
/* Axis Margins (both top/bottom or left/right) */
.mv5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.mv10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.mv15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.mv20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.mv25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.mv30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.mv40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.mv50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.mh5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}

.mh10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.mh15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.mh20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.mh25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}

.mh30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.mh40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.mh50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}

@media print {
  .app-header,
  .app-menu {
    display: none !important;
  }
  .app-container {
    padding: 0 !important;
  }
}
