:root {
    --bg-primary: #33a6e1;
    --bg-success: #27c24c;
}

html,
body{
    height:100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body{
    padding:0;
    margin:0;
    font-family: 'Open Sans';
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    line-height: 18px;
    color: #58666e;
    background: #f0f3f4;
}
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

::selection {
    background: #dce8ee; /* WebKit/Blink Browsers */
}
::-moz-selection {
    background: #dce8ee; /* Gecko Browsers */
}

p{
    margin: 0 0 16px 0;
}

.visible-xs{
    display:none;
}

.v-table{
    display:table;
    position:absolute;
    height:100%;
    width:100%;
    top:0
}
.v-cell{
    display:table-cell;
    vertical-align:middle
}
.v-cell > div{
    margin-top:-5%
}

/* WRAPS */
.pos-rlt {
    position: relative;
}
.pos-stc {
    position: static!important;
}
.pos-abt {
    position: absolute;
}
.pos-fix {
    position: fixed;
}
.show {
    visibility: visible;
}
.line {
    width: 100%;
    height: 2px;
    margin: 10px 0;
    overflow: hidden;
    font-size: 0;
}
.line-xs {
    margin: 0;
}
.line-lg {
    margin-top: 15px;
    margin-bottom: 15px;
}
.line-dashed {
    background-color: transparent;
    border-style: dashed!important;
    border-width: 0;
}
.no-line {
    border-width: 0;
}
.no-border, .no-borders,
.no-border:focus{
    border-color: transparent;
    border-width: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.no-radius {
    border-radius: 0!important;
}
.block {
    display: block;
}
.block.hide {
    display: none;
}
.inline {
    display: inline-block!important;
}
.none {
    display: none;
}
.pull-none {
    float: none;
}
.rounded {
    border-radius: 500px;
}
.clear {
    display: block;
    overflow: hidden;
}
.no-bg {
    color: inherit;
    background-color: transparent;
}
.no-select {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}
.l-h {
    line-height: 1.42857143;
}
.l-h-0x {
    line-height: 0;
}
.l-h-1x {
    line-height: 1.2;
}
.l-h-2x {
    line-height: 2.5em;
}
.l-s-1x {
    letter-spacing: 1em;
}
.l-s-2x {
    letter-spacing: 2em;
}
.l-s-3x {
    letter-spacing: 3em;
}
.font-normal {
    font-weight: normal;
}
.font-thin {
    font-weight: 300;
}
.font-bold {
    font-weight: 700;
}
.text-3x {
    font-size: 3em;
}
.text-2x {
    font-size: 2em;
}
.text-lg {
    font-size: 18px;
}
.text-md {
    font-size: 16px;
}
.text-base {
    font-size: 14px;
}
.text-sm {
    font-size: 13px;
}
.text-xs {
    font-size: 12px;
}
.text-xxs {
    text-indent: -9999px;
}
.text{
    line-height:22px
}
.text-ellipsis {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.text-nowrap{
    white-space:nowrap
}
.text-u-c {
    text-transform: uppercase;
}
.text-l-t {
    text-decoration: line-through;
}
.text-u-l {
    text-decoration: underline;
}
.text-active, .active>.text, .active>.auto .text {
    display: none!important;
}
.active>.text-active, .active>.auto .text-active {
    display: inline-block!important;
}
.box-shadow {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
}
.box-shadow-lg {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
}
.text-shadow {
    font-size: 170px;
    text-shadow: 0 1px 0 #d4dcdf, 0 2px 0 #fcfdfd, 0 5px 10px rgba(0, 0, 0, 0.125), 0 10px 20px rgba(0, 0, 0, 0.2);
}
.no-shadow {
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
}
.wrap-xs{
    padding:5px;
}
.wrap-sm{
    padding:10px;
}
.wrap{
    padding:20px;
}
.wrap-lg{
    padding:30px;
}
.wrap-xl{
    padding:40px;
}
.wrap-h{
    padding-left:20px;
    padding-right:20px;
}
.wrap-v{
    padding-top:20px;
    padding-bottom:20px;
}
.p-lg {
    padding-right: 30px;
    padding-left: 30px;
}
.p {
    padding-right: 20px;
    padding-left: 20px;
}
.p-v {
    padding-top: 15px;
    padding-bottom: 15px;
}
.no-p {
    padding: 0!important;
}

/* CURSORS */
.cursor-pointer{
    cursor:pointer;
}
.cursor-wait *{
    cursor:wait
}
/* BORDERS */
.b {
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.b-a {
    border: 1px solid #d4dcdf;
}
.b-t {
    border-top: 1px solid #d4dcdf;
}
.b-r {
    border-right: 1px solid #d4dcdf;
}
.b-b {
    border-bottom: 1px solid #d4dcdf;
}
.b-l {
    border-left: 1px solid #d4dcdf;
}
.b-none{
    border:0
}
.b-t-none{
    border-top:0
}
.b-r-none{
    border-right:0
}
.b-b-none{
    border-bottom:0
}
.b-l-none{
    border-left:0
}
.b-light {
    border-color: #edf1f2;
}
.b-dark {
    border-color: #3a3f51;
}
.b-black {
    border-color: #3a3f51;
}
.b-primary {
    border-color: #2097d5;
}
.b-success {
    border-color: var(--bg-success);
}
.b-info {
    border-color: #23b7e5;
}
.b-warning {
    border-color: #fad733;
}
.b-danger {
    border-color: #f05050;
}
.b-white {
    border-color: #fff;
}
.b-dashed {
    border-style: dashed!important;
}
.b-l-light {
    border-left-color: #edf1f2;
}
.b-l-dark {
    border-left-color: #3a3f51;
}
.b-l-black {
    border-left-color: #3a3f51;
}
.b-l-primary {
    border-left-color: #7266ba;
}
.b-l-success {
    border-left-color: var(--bg-success);
}
.b-l-info {
    border-left-color: #23b7e5;
}
.b-l-warning {
    border-left-color: #fad733;
}
.b-l-danger {
    border-left-color: #f05050;
}
.b-l-white {
    border-left-color: #fff;
}
.b-l-2x {
    border-left-width: 2px;
}
.b-l-3x {
    border-left-width: 3px;
}
.b-l-4x {
    border-left-width: 4px;
}
.b-l-5x {
    border-left-width: 5px;
}
.b-2x {
    border-width: 2px;
}
.b-3x {
    border-width: 3px;
}
.b-4x {
    border-width: 4px;
}
.b-5x {
    border-width: 5px;
}

/* BORDER RADIUSES */
.r {
    border-radius: 2px 2px 2px 2px;
}
.r-2x {
    border-radius: 4px;
}
.r-3x {
    border-radius: 6px;
}
.r-l {
    border-radius: 2px 0 0 2px;
}
.r-r {
    border-radius: 0 2px 2px 0;
}
.r-t {
    border-radius: 2px 2px 0 0;
}
.r-b {
    border-radius: 0 0 2px 2px;
}

/* paddingS */
.p-xxs {
    padding: 2px 4px;
}
.p-xs {
    padding: 5px;
}
.p-sm {
    padding: 10px;
}
.p {
    padding: 15px;
}
.p-md {
    padding: 20px;
}
.p-lg {
    padding: 30px;
}
.p-xl {
    padding: 50px;
}
.p-n {
    padding: 0!important;
}
.p-l-none {
    padding-left: 0!important;
}
.p-l-xs {
    padding-left: 5px;
}
.p-l-sm {
    padding-left: 10px;
}
.p-l {
    padding-left: 15px;
}
.p-l-md {
    padding-left: 20px;
}
.p-l-lg {
    padding-left: 30px;
}
.p-l-xl {
    padding-left: 40px;
}
.p-l-xxl {
    padding-left: 50px;
}
.p-l-n-xxs {
    padding-left: -1px;
}
.p-l-n-xs {
    padding-left: -5px;
}
.p-l-n-sm {
    padding-left: -10px;
}
.p-l-n {
    padding-left: -15px;
}
.p-l-n-md {
    padding-left: -20px;
}
.p-l-n-lg {
    padding-left: -30px;
}
.p-l-n-xl {
    padding-left: -40px;
}
.p-l-n-xxl {
    padding-left: -50px;
}
.p-t-none {
    padding-top: 0!important;
}
.p-t-xxs {
    padding-top: 1px;
}
.p-t-xs {
    padding-top: 5px;
}
.p-t-sm {
    padding-top: 10px;
}
.p-t {
    padding-top: 15px;
}
.p-t-md {
    padding-top: 20px;
}
.p-t-lg {
    padding-top: 30px;
}
.p-t-xl {
    padding-top: 40px;
}
.p-t-xxl {
    padding-top: 50px;
}
.p-t-n-xxs {
    padding-top: -1px;
}
.p-t-n-xs {
    padding-top: -5px;
}
.p-t-n-sm {
    padding-top: -10px;
}
.p-t-n {
    padding-top: -15px;
}
.p-t-n-md {
    padding-top: -20px;
}
.p-t-n-lg {
    padding-top: -30px;
}
.p-t-n-xl {
    padding-top: -40px;
}
.p-t-n-xxl {
    padding-top: -50px;
}
.p-r-none {
    padding-right: 0!important;
}
.p-r-xxs {
    padding-right: 1px;
}
.p-r-xs {
    padding-right: 5px;
}
.p-r-sm {
    padding-right: 10px;
}
.p-r {
    padding-right: 15px;
}
.p-r-md {
    padding-right: 20px;
}
.p-r-lg {
    padding-right: 30px;
}
.p-r-xl {
    padding-right: 40px;
}
.p-r-xxl {
    padding-right: 50px;
}
.p-r-n-xxs {
    padding-right: -1px;
}
.p-r-n-xs {
    padding-right: -5px;
}
.p-r-n-sm {
    padding-right: -10px;
}
.p-r-n {
    padding-right: -15px;
}
.p-r-n-md {
    padding-right: -20px;
}
.p-r-n-lg {
    padding-right: -30px;
}
.p-r-n-xl {
    padding-right: -40px;
}
.p-r-n-xxl {
    padding-right: -50px;
}
.p-b-none {
    padding-bottom: 0!important;
}
.p-b-xxs {
    padding-bottom: 1px;
}
.p-b-xs {
    padding-bottom: 5px;
}
.p-b-sm {
    padding-bottom: 10px;
}
.p-b {
    padding-bottom: 15px;
}
.p-b-md {
    padding-bottom: 20px;
}
.p-b-lg {
    padding-bottom: 30px;
}
.p-b-xl {
    padding-bottom: 40px;
}
.p-b-xxl {
    padding-bottom: 50px;
}
.p-b-n-xxs {
    padding-bottom: -1px;
}
.p-b-n-xs {
    padding-bottom: -5px;
}
.p-b-n-sm {
    padding-bottom: -10px;
}
.p-b-n {
    padding-bottom: -15px;
}
.p-b-n-md {
    padding-bottom: -20px;
}
.p-b-n-lg {
    padding-bottom: -30px;
}
.p-b-n-xl {
    padding-bottom: -40px;
}
.p-b-n-xxl {
    padding-bottom: -50px;
}


/* MARGINS */
.m-xxs {
    margin: 2px 4px;
}
.m-xs {
    margin: 5px;
}
.m-sm {
    margin: 10px;
}
.m {
    margin: 15px;
}
.m-md {
    margin: 20px;
}
.m-lg {
    margin: 30px;
}
.m-xl {
    margin: 50px;
}
.m-n {
    margin: 0!important;
}
.m-l-none {
    margin-left: 0!important;
}
.m-l-xs {
    margin-left: 5px;
}
.m-l-sm {
    margin-left: 10px;
}
.m-l {
    margin-left: 15px;
}
.m-l-md {
    margin-left: 20px;
}
.m-l-lg {
    margin-left: 30px;
}
.m-l-xl {
    margin-left: 40px;
}
.m-l-xxl {
    margin-left: 50px;
}
.m-l-n-xxs {
    margin-left: -1px;
}
.m-l-n-xs {
    margin-left: -5px;
}
.m-l-n-sm {
    margin-left: -10px;
}
.m-l-n {
    margin-left: -15px;
}
.m-l-n-md {
    margin-left: -20px;
}
.m-l-n-lg {
    margin-left: -30px;
}
.m-l-n-xl {
    margin-left: -40px;
}
.m-l-n-xxl {
    margin-left: -50px;
}
.m-t-none {
    margin-top: 0!important;
}
.m-t-xxs {
    margin-top: 1px;
}
.m-t-xs {
    margin-top: 5px;
}
.m-t-sm {
    margin-top: 10px;
}
.m-t {
    margin-top: 15px;
}
.m-t-md {
    margin-top: 20px;
}
.m-t-lg {
    margin-top: 30px;
}
.m-t-xl {
    margin-top: 40px;
}
.m-t-xxl {
    margin-top: 50px;
}
.m-t-n-xxs {
    margin-top: -1px;
}
.m-t-n-xs {
    margin-top: -5px;
}
.m-t-n-sm {
    margin-top: -10px;
}
.m-t-n {
    margin-top: -15px;
}
.m-t-n-md {
    margin-top: -20px;
}
.m-t-n-lg {
    margin-top: -30px;
}
.m-t-n-xl {
    margin-top: -40px;
}
.m-t-n-xxl {
    margin-top: -50px;
}
.m-r-none {
    margin-right: 0!important;
}
.m-r-xxs {
    margin-right: 1px;
}
.m-r-xs {
    margin-right: 5px;
}
.m-r-sm {
    margin-right: 10px;
}
.m-r {
    margin-right: 15px;
}
.m-r-md {
    margin-right: 20px;
}
.m-r-lg {
    margin-right: 30px;
}
.m-r-xl {
    margin-right: 40px;
}
.m-r-xxl {
    margin-right: 50px;
}
.m-r-n-xxs {
    margin-right: -1px;
}
.m-r-n-xs {
    margin-right: -5px;
}
.m-r-n-sm {
    margin-right: -10px;
}
.m-r-n {
    margin-right: -15px;
}
.m-r-n-md {
    margin-right: -20px;
}
.m-r-n-lg {
    margin-right: -30px;
}
.m-r-n-xl {
    margin-right: -40px;
}
.m-r-n-xxl {
    margin-right: -50px;
}
.m-b-none {
    margin-bottom: 0!important;
}
.m-b-xxs {
    margin-bottom: 1px;
}
.m-b-xs {
    margin-bottom: 5px;
}
.m-b-sm {
    margin-bottom: 10px;
}
.m-b {
    margin-bottom: 15px;
}
.m-b-md {
    margin-bottom: 20px;
}
.m-b-lg {
    margin-bottom: 30px;
}
.m-b-xl {
    margin-bottom: 40px;
}
.m-b-xxl {
    margin-bottom: 50px;
}
.m-b-n-xxs {
    margin-bottom: -1px;
}
.m-b-n-xs {
    margin-bottom: -5px;
}
.m-b-n-sm {
    margin-bottom: -10px;
}
.m-b-n {
    margin-bottom: -15px;
}
.m-b-n-md {
    margin-bottom: -20px;
}
.m-b-n-lg {
    margin-bottom: -30px;
}
.m-b-n-xl {
    margin-bottom: -40px;
}
.m-b-n-xxl {
    margin-bottom: -50px;
}
/* AVATAR */
.avatar {
    position: relative;
    display: block;
    white-space: nowrap;
    border-radius: 500px;
    text-align:center
}
.avatar img{
    width: 100%;
    border-radius: 500px;
}
.avatar i {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    margin: 2px;
    border-style: solid;
    border-width: 2px;
    border-radius: 100%}
.avatar i.right {
    right: 0;
    left: auto;
}
.avatar i.bottom {
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
}
.avatar i.left {
    top: auto;
    bottom: 0;
}
.avatar i.on {
    background-color: var(--bg-success);
}
.avatar i.off {
    background-color: #98a6ad;
}
.avatar i.busy {
    background-color: #f05050;
}
.avatar i.away {
    background-color: #fad733;
}
.avatar.thumb-md i {
    width: 12px;
    height: 12px;
    margin: 3px;
}
.avatar.thumb-sm i {
    margin: 1px;
}
.avatar.thumb-xs i {
    margin: 0;
}

.thumbnail .icon,
.image-preview .icon{
    padding-bottom: 100%;
    display: block;
    font-size: 32px;
}
.thumbnail .icon:before,
.image-preview .icon:before{
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -20px;
    height: 40px;
}
/* THUMBNAIL */
.thumb-xl {
    display: inline-block;
    width: 128px;
}
.thumb-lg {
    display: inline-block;
    width: 96px;
}
.thumb-md {
    display: inline-block;
    width: 64px;
}
.thumb {
    display: inline-block;
    width: 50px;
    height:50px;
    line-height:50px
}
.thumb-sm {
    display: inline-block;
    width: 40px;
}
.thumb-xs {
    display: inline-block;
    width: 36px;
    height:36px;
    line-height:36px;
}
.thumb-xxs {
    display: inline-block;
    width: 30px;
}
.thumb-wrapper {
    padding: 2px;
    border: 1px solid #dee5e7;
}
.thumb img, .thumb-xs img, .thumb-sm img, .thumb-md img, .thumb-lg img, .thumb-btn img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}
.img-full {
    width: 100%}
.img-full img {
    width: 100%}
/* DEFINED SIZES */
.w-1x {
    width: 1em;
}
.w-2x {
    width: 2em;
}
.w-3x {
    width: 3em;
}
.w-xxs {
    width: 60px;
}
.w-xs {
    width: 90px;
}
.w-sm {
    width: 150px;
}
.w {
    width: 200px;
}
.w-md {
    width: 240px;
}
.w-lg {
    width: 280px;
}
.w-xl {
    width: 320px;
}
.w-xxl {
    width: 360px;
}

.w-max-1x {
    max-width: 1em;
}
.w-max-2x {
    max-width: 2em;
}
.w-max-3x {
    max-width: 3em;
}
.w-max-xxs {
    max-width: 60px;
}
.w-max-xs {
    max-width: 90px;
}
.w-max-sm {
    max-width: 150px;
}
.w-max{
    max-width: 200px;
}
.w-max-md {
    max-width: 240px;
}
.w-max-lg {
    max-width: 280px;
}
.w-max-xl {
    width: 320px;
}
.w-max-xxl {
    max-width: 360px;
}

.w-full {
    width: 100%
}
.w-auto {
    width: auto;
}
.h{
    height:200px;
}
.h-max-1x {
    max-height: 1em;
}
.h-max-2x {
    max-height: 2em;
}
.h-max-3x {
    max-height: 3em;
}
.h-max-xxs {
    max-height: 60px;
}
.h-max-xs {
    max-height: 90px;
}
.h-max-sm {
    max-height: 150px;
}
.h-max{
    max-height: 200px;
}
.h-max-md {
    max-height: 240px;
}
.h-max-lg {
    max-height: 280px;
}
.h-max-xl {
    width: 320px;
}
.h-max-xxl {
    max-height: 360px;
}

.h-auto {
    height: auto;
}
.h-full {
    height: 100%
}

/* BG COLORS */
.bg-light {
    color: #58666e;
    background-color: #f0f3f4;
}
.bg-light.lt, .bg-light .lt {
    background-color: #f4f6f7;
}
.bg-light.lter, .bg-light .lter {
    background-color: #f6f8f8;
}
.bg-light.dk, .bg-light .dk {
    background-color: #e9eff0;
}
.bg-light.dker, .bg-light .dker {
    background-color: #e8edef;
}
.bg-light.bg, .bg-light .bg {
    background-color: #f0f3f4;
}
.bg-dark {
    color: #a6a8b1;
    background-color: #3a3f51;
}
.bg-dark.lt, .bg-dark .lt {
    background-color: #474c5e;
}
.bg-dark.lter, .bg-dark .lter {
    background-color: #54596a;
}
.bg-dark.dk, .bg-dark .dk {
    background-color: #2e3344;
}
.bg-dark.dker, .bg-dark .dker {
    background-color: #232735;
}
.bg-dark.bg, .bg-dark .bg {
    background-color: #3a3f51;
}
.bg-dark a {
    color: #c1c3c9;
}
.bg-dark a:hover {
    color: #fff;
}
.bg-dark a.list-group-item:hover, .bg-dark a.list-group-item:focus {
    background-color: inherit;
}
.bg-dark .nav>li:hover>a, .bg-dark .nav>li:focus>a, .bg-dark .nav>li.active>a {
    color: #fff;
    background-color: #2e3344;
}
.bg-dark .nav>li>a {
    color: #b4b6bd;
}
.bg-dark .nav>li>a:hover, .bg-dark .nav>li>a:focus {
    background-color: #32374a;
}
.bg-dark .nav .open>a {
    background-color: #2e3344;
}
.bg-dark .caret {
    border-top-color: #a6a8b1;
    border-bottom-color: #a6a8b1;
}
.bg-dark.navbar .nav>li.active>a {
    color: #fff;
    background-color: #2e3344;
}
.bg-dark .open>a, .bg-dark .open>a:hover, .bg-dark .open>a:focus {
    color: #fff;
}
.bg-dark .text-muted {
    color: #8b8e99!important;
}
.bg-dark .text-lt {
    color: #eaebed!important;
}
.bg-dark.auto .list-group-item, .bg-dark .auto .list-group-item {
    background-color: transparent;
    border-color: #2f3342!important;
}
.bg-dark.auto .list-group-item:hover, .bg-dark .auto .list-group-item:hover, .bg-dark.auto .list-group-item:focus, .bg-dark .auto .list-group-item:focus, .bg-dark.auto .list-group-item:active, .bg-dark .auto .list-group-item:active, .bg-dark.auto .list-group-item.active, .bg-dark .auto .list-group-item.active {
    background-color: #2e3344!important;
}
.bg-black {
    color: #7793a7;
    background-color: #1c2b36;
}
.bg-black.lt, .bg-black .lt {
    background-color: #263845;
}
.bg-black.lter, .bg-black .lter {
    background-color: #314554;
}
.bg-black.dk, .bg-black .dk {
    background-color: #131e26;
}
.bg-black.dker, .bg-black .dker {
    background-color: #0a1015;
}
.bg-black.bg, .bg-black .bg {
    background-color: #1c2b36;
}
.bg-black a {
    color: #96abbb;
}
.bg-black a:hover {
    color: #fff;
}
.bg-black a.list-group-item:hover, .bg-black a.list-group-item:focus {
    background-color: inherit;
}
.bg-black .nav>li:hover>a, .bg-black .nav>li:focus>a, .bg-black .nav>li.active>a {
    color: #fff;
    background-color: #131e26;
}
.bg-black .nav>li>a {
    color: #869fb1;
}
.bg-black .nav>li>a:hover, .bg-black .nav>li>a:focus {
    background-color: #16232d;
}
.bg-black .nav .open>a {
    background-color: #131e26;
}
.bg-black .caret {
    border-top-color: #7793a7;
    border-bottom-color: #7793a7;
}
.bg-black.navbar .nav>li.active>a {
    color: #fff;
    background-color: #131e26;
}
.bg-black .open>a, .bg-black .open>a:hover, .bg-black .open>a:focus {
    color: #fff;
}
.bg-black .text-muted {
    color: #5c798f!important;
}
.bg-black .text-lt {
    color: #c4d0d9!important;
}
.bg-black.auto .list-group-item, .bg-black .auto .list-group-item {
    background-color: transparent;
    border-color: #131e25!important;
}
.bg-black.auto .list-group-item:hover, .bg-black .auto .list-group-item:hover, .bg-black.auto .list-group-item:focus, .bg-black .auto .list-group-item:focus, .bg-black.auto .list-group-item:active, .bg-black .auto .list-group-item:active, .bg-black.auto .list-group-item.active, .bg-black .auto .list-group-item.active {
    background-color: #131e26!important;
}
.bg-primary {
    color: #f4f3f9;
    background-color: #33a6e1;
}
.bg-primary.lt, .bg-primary .lt {
    background-color: #0aaaea;
}
.bg-primary.lter, .bg-primary .lter {
    background-color: #27b2ea;
}
.bg-primary.dk, .bg-primary .dk {
    background-color: #2987c1;
}
.bg-primary.dker, .bg-primary .dker {
    background-color: #2e75ae;
}
.bg-primary.bg, .bg-primary .bg {
    background-color: #33a6e1;
}
.bg-primary a {
    color: #fff;
}
.bg-primary a:hover {
    color: #fff;
}
.bg-primary a.list-group-item:hover, .bg-primary a.list-group-item:focus {
    background-color: inherit;
}
.bg-primary .nav>li:hover>a, .bg-primary .nav>li:focus>a, .bg-primary .nav>li.active>a {
    color: #fff;
    background-color: #6051b5;
}
.bg-primary .nav>li>a {
    color: #f2f2f2;
}
.bg-primary .nav>li>a:hover, .bg-primary .nav>li>a:focus {
    background-color: #6658b8;
}
.bg-primary .nav .open>a {
    background-color: #6051b5;
}
.bg-primary .caret {
    border-top-color: #f4f3f9;
    border-bottom-color: #f4f3f9;
}
.bg-primary.navbar .nav>li.active>a {
    color: #fff;
    background-color: #6051b5;
}
.bg-primary .open>a, .bg-primary .open>a:hover, .bg-primary .open>a:focus {
    color: #fff;
}
.bg-primary .text-muted {
    color: #d6d3e6!important;
}
.bg-primary .text-lt {
    color: #fff!important;
}
.bg-primary.auto .list-group-item, .bg-primary .auto .list-group-item {
    background-color: transparent;
    border-color: #6254b2!important;
}
.bg-primary.auto .list-group-item:hover, .bg-primary .auto .list-group-item:hover, .bg-primary.auto .list-group-item:focus, .bg-primary .auto .list-group-item:focus, .bg-primary.auto .list-group-item:active, .bg-primary .auto .list-group-item:active, .bg-primary.auto .list-group-item.active, .bg-primary .auto .list-group-item.active {
    background-color: #6051b5!important;
}
.bg-success {
    color: #c6efd0;
    background-color: var(--bg-success);
}
.bg-success.lt, .bg-success .lt {
    background-color: #31d257;
}
.bg-success.lter, .bg-success .lter {
    background-color: #48d46a;
}
.bg-success.dk, .bg-success .dk {
    background-color: #20af42;
}
.bg-success.dker, .bg-success .dker {
    background-color: #1a9c39;
}
.bg-success.bg, .bg-success .bg {
    background-color: var(--bg-success);
}
.bg-success a {
    color: #eefaf1;
}
.bg-success a:hover {
    color: #fff;
}
.bg-success a.list-group-item:hover, .bg-success a.list-group-item:focus {
    background-color: inherit;
}
.bg-success .nav>li:hover>a, .bg-success .nav>li:focus>a, .bg-success .nav>li.active>a {
    color: #fff;
    background-color: #20af42;
}
.bg-success .nav>li>a {
    color: #daf5e0;
}
.bg-success .nav>li>a:hover, .bg-success .nav>li>a:focus {
    background-color: #22b846;
}
.bg-success .nav .open>a {
    background-color: #20af42;
}
.bg-success .caret {
    border-top-color: #c6efd0;
    border-bottom-color: #c6efd0;
}
.bg-success.navbar .nav>li.active>a {
    color: #fff;
    background-color: #20af42;
}
.bg-success .open>a, .bg-success .open>a:hover, .bg-success .open>a:focus {
    color: #fff;
}
.bg-success .text-muted {
    color: #9ee4af!important;
}
.bg-success .text-lt {
    color: #fff!important;
}
.bg-success.auto .list-group-item, .bg-success .auto .list-group-item {
    background-color: transparent;
    border-color: #23ad44!important;
}
.bg-success.auto .list-group-item:hover, .bg-success .auto .list-group-item:hover, .bg-success.auto .list-group-item:focus, .bg-success .auto .list-group-item:focus, .bg-success.auto .list-group-item:active, .bg-success .auto .list-group-item:active, .bg-success.auto .list-group-item.active, .bg-success .auto .list-group-item.active {
    background-color: #20af42!important;
}
.bg-info {
    color: #dcf2f8;
    background-color: #5bc0de;
}
.bg-info.lt, .bg-info .lt {
    background-color: #5cd4f3;
}
.bg-info.lter, .bg-info .lter {
    background-color: #81d7ec;
}
.bg-info.dk, .bg-info .dk {
    background-color: #5eafca;
}
.bg-info.dker, .bg-info .dker {
    background-color: #5d9cb6;
}
.bg-info.bg, .bg-info .bg {
    background-color: #5bc0de;
}
.bg-info a {
    color: #fff;
}
.bg-info a:hover {
    color: #fff;
}
.bg-info a.list-group-item:hover, .bg-info a.list-group-item:focus {
    background-color: inherit;
}
.bg-info .nav>li:hover>a, .bg-info .nav>li:focus>a, .bg-info .nav>li.active>a {
    color: #fff;
    background-color: #16aad8;
}
.bg-info .nav>li>a {
    color: #f2f2f2;
}
.bg-info .nav>li>a:hover, .bg-info .nav>li>a:focus {
    background-color: #17b2e2;
}
.bg-info .nav .open>a {
    background-color: #16aad8;
}
.bg-info .caret {
    border-top-color: #dcf2f8;
    border-bottom-color: #dcf2f8;
}
.bg-info.navbar .nav>li.active>a {
    color: #fff;
    background-color: #16aad8;
}
.bg-info .open>a, .bg-info .open>a:hover, .bg-info .open>a:focus {
    color: #fff;
}
.bg-info .text-muted {
    color: #b0e1f1!important;
}
.bg-info .text-lt {
    color: #fff!important;
}
.bg-info.auto .list-group-item, .bg-info .auto .list-group-item {
    background-color: transparent;
    border-color: #19a9d5!important;
}
.bg-info.auto .list-group-item:hover, .bg-info .auto .list-group-item:hover, .bg-info.auto .list-group-item:focus, .bg-info .auto .list-group-item:focus, .bg-info.auto .list-group-item:active, .bg-info .auto .list-group-item:active, .bg-info.auto .list-group-item.active, .bg-info .auto .list-group-item.active {
    background-color: #16aad8!important;
}
.bg-warning {
    color: #fffefa;
    background-color: #fad733;
}
.bg-warning.lt, .bg-warning .lt {
    background-color: #ffba5b;
}
.bg-warning.lter, .bg-warning .lter {
    background-color: #ffc867;
}
.bg-warning.dk, .bg-warning .dk {
    background-color: #d8a043;
}
.bg-warning.dker, .bg-warning .dker {
    background-color: #c09337;
}
.bg-warning.bg, .bg-warning .bg {
    background-color: #f0ad4e;
}
.bg-warning a {
    color: #fff;
}
.bg-warning a:hover {
    color: #fff;
}
.bg-warning a.list-group-item:hover, .bg-warning a.list-group-item:focus {
    background-color: inherit;
}
.bg-warning .nav>li:hover>a, .bg-warning .nav>li:focus>a, .bg-warning .nav>li.active>a {
    color: #fff;
    background-color: #fcd417;
}
.bg-warning .nav>li>a {
    color: #f2f2f2;
}
.bg-warning .nav>li>a:hover, .bg-warning .nav>li>a:focus {
    background-color: #fcd621;
}
.bg-warning .nav .open>a {
    background-color: #fcd417;
}
.bg-warning .caret {
    border-top-color: #fffefa;
    border-bottom-color: #fffefa;
}
.bg-warning.navbar .nav>li.active>a {
    color: #fff;
    background-color: #fcd417;
}
.bg-warning .open>a, .bg-warning .open>a:hover, .bg-warning .open>a:focus {
    color: #fff;
}
.bg-warning .text-muted {
    color: #fbf2cb!important;
}
.bg-warning .text-lt {
    color: #fff!important;
}
.bg-warning.auto .list-group-item, .bg-warning .auto .list-group-item {
    background-color: transparent;
    border-color: #f9d21a!important;
}
.bg-warning.auto .list-group-item:hover, .bg-warning .auto .list-group-item:hover, .bg-warning.auto .list-group-item:focus, .bg-warning .auto .list-group-item:focus, .bg-warning.auto .list-group-item:active, .bg-warning .auto .list-group-item:active, .bg-warning.auto .list-group-item.active, .bg-warning .auto .list-group-item.active {
    background-color: #fcd417!important;
}
.bg-danger {
    color: #fff;
    background-color: #f05050;
}
.bg-danger.lt, .bg-danger .lt {
    background-color: #f06a6a;
}
.bg-danger.lter, .bg-danger .lter {
    background-color: #f18282;
}
.bg-danger.dk, .bg-danger .dk {
    background-color: #f13636;
}
.bg-danger.dker, .bg-danger .dker {
    background-color: #f21b1b;
}
.bg-danger.bg, .bg-danger .bg {
    background-color: #f05050;
}
.bg-danger a {
    color: #fff;
}
.bg-danger a:hover {
    color: #fff;
}
.bg-danger a.list-group-item:hover, .bg-danger a.list-group-item:focus {
    background-color: inherit;
}
.bg-danger .nav>li:hover>a, .bg-danger .nav>li:focus>a, .bg-danger .nav>li.active>a {
    color: #fff;
    background-color: #f13636;
}
.bg-danger .nav>li>a {
    color: #f2f2f2;
}
.bg-danger .nav>li>a:hover, .bg-danger .nav>li>a:focus {
    background-color: #f13f3f;
}
.bg-danger .nav .open>a {
    background-color: #f13636;
}
.bg-danger .caret {
    border-top-color: #fff;
    border-bottom-color: #fff;
}
.bg-danger.navbar .nav>li.active>a {
    color: #fff;
    background-color: #f13636;
}
.bg-danger .open>a, .bg-danger .open>a:hover, .bg-danger .open>a:focus {
    color: #fff;
}
.bg-danger .text-muted {
    color: #e6e6e6!important;
}
.bg-danger .text-lt {
    color: #fff!important;
}
.bg-danger.auto .list-group-item, .bg-danger .auto .list-group-item {
    background-color: transparent;
    border-color: #ee3939!important;
}
.bg-danger.auto .list-group-item:hover, .bg-danger .auto .list-group-item:hover, .bg-danger.auto .list-group-item:focus, .bg-danger .auto .list-group-item:focus, .bg-danger.auto .list-group-item:active, .bg-danger .auto .list-group-item:active, .bg-danger.auto .list-group-item.active, .bg-danger .auto .list-group-item.active {
    background-color: #f13636!important;
}
.bg-white {
    color: #58666e;
    background-color: #fff;
}

.bg-white .text-muted {
    color: #98a6ad!important;
}
/*.bg-white .lt, .bg-white .lter, .bg-white .dk, .bg-white .dker {
    background-color: #fff;
}*/
.bg-white-only {
    background-color: #fff;
}
.bg-white-opacity {
    background-color: rgba(255, 255, 255, 0.5);
}
.bg-black-opacity {
    background-color: rgba(32, 43, 54, 0.5);
}
a.bg-light:hover {
    color: #363f44;
}
a.bg-primary:hover {
    background-color: #6254b2;
}

/* TEXT COLORS */
a.text-primary:hover {
    color: #6254b2;
}
.text-primary {
    color: #33a6e1;
}
.text-primary-lt {
    color: #8278c2;
}
.text-primary-lter {
    color: #9289ca;
}
.text-primary-dk {
    color: #6254b2;
}
.text-primary-dker {
    color: #564aa3;
}
a.bg-info:hover {
    background-color: #19a9d5;
}
a.text-info:hover {
    color: #19a9d5;
}
.text-info {
    color: #23b7e5;
}
.text-info-lt {
    color: #3abee8;
}
.text-info-lter {
    color: #51c6ea;
}
.text-info-dk {
    color: #19a9d5;
}
.text-info-dker {
    color: #1797be;
}
a.bg-success:hover {
    background-color: #23ad44;
}
a.text-success:hover {
    color: #23ad44;
}
.text-success {
    color: #16cc53;
}
.text-success-lt {
    color: #2ed556;
}
.text-success-lter {
    color: #43d967;
}
.text-success-dk {
    color: #23ad44;
}
.text-success-dker {
    color: #1e983b;
}
a.bg-warning:hover {
    background-color: #f9d21a;
}
a.text-warning:hover {
    color: #f9d21a;
}
.text-warning {
    color: #fad733;
}
.text-warning-lt {
    color: #fbdc4c;
}
.text-warning-lter {
    color: #fbe165;
}
.text-warning-dk {
    color: #f9d21a;
}
.text-warning-dker {
    color: #f4ca06;
}
a.bg-danger:hover {
    background-color: #ee3939;
}
a.text-danger:hover {
    color: #ee3939;
}
.text-danger {
    color: #f05075;
}
.text-danger-lt {
    color: #f26767;
}
.text-danger-lter {
    color: #f47f7f;
}
.text-danger-dk {
    color: #ee3939;
}
.text-danger-dker {
    color: #ec2121;
}
a.bg-dark:hover {
    background-color: #2f3342;
}
a.text-dark:hover {
    color: #2f3342;
}
.text-dark {
    color: #3a3f51;
}
.text-dark-lt {
    color: #454b60;
}
.text-dark-lter {
    color: #4f566f;
}
.text-dark-dk {
    color: #2f3342;
}
.text-dark-dker {
    color: #252833;
}
a.bg-#000000:hover {
    background-color: #131e25;
}
a.text-#000000:hover {
    color: #131e25;
}
.text-#000000 {
    color: #1c2b36;
}
.text-#000000-lt {
    color: #253847;
}
.text-#000000-lter {
    color: #2d4658;
}
.text-#000000-dk {
    color: #131e25;
}
.text-#000000-dker {
    color: #0b1014;
}
.text-white {
    color: #fff;
}
.text-black {
    color: #000;
}
.text-muted {
    color: #98a6ad;
}

/* TABLE DIV */
.hbox {
    display: table;
    width: 100%;
    height: 100%;
    border-spacing: 0;
    table-layout: fixed;
}
.hbox .col {
    display: table-cell;
    float: none;
    height: 100%;
    vertical-align: top;
}
.v-middle {
    vertical-align: middle!important;
}
.v-top {
    vertical-align: top!important;
}
.v-bottom {
    vertical-align: bottom!important;
}
.vbox {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
    /*min-height: 240px;*/
    border-spacing: 0;
}
.vbox .row-row {
    display: table-row;
    height: 100%
}

.vbox .row-row .cell {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.ie .vbox .row-row .cell {
    display: table-cell;
}
.vbox .row-row .cell .cell-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
/* PRELOADER */
#preloader{
    position:fixed;
    z-index:999999999;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#f0f3f4;
}

.preloader-wrap{
    width:200px;
    height:200px;
    position:absolute;
    left:50%;
    top:50%;
    margin:-100px 0 0 -100px;
}

#preloader .logo{
    line-height:160px;
    text-align:center;
    font-size:10em;
}

.scrollable {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.scrollable.hover {
    overflow-y: hidden!important;
}
.scrollable.hover:hover {
    overflow: visible!important;
    overflow-y: auto!important;
}
.smart .scrollable {
    overflow-y: auto!important;
}
.scroll-x, .scroll-y {
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}
.scroll-y {
    overflow-y: auto;
}
.scroll-x {
    overflow-x: auto;
}
.hover-action {
    display: none;
}
.hover-rotate {
    -webkit-transition: all .2s ease-in-out .1s;
    transition: all .2s ease-in-out .1s;
}
.hover-anchor:hover>.hover-action, .hover-anchor:focus>.hover-action, .hover-anchor:active>.hover-action {
    display: inherit;
}
.hover-anchor:hover>.hover-rotate, .hover-anchor:focus>.hover-rotate, .hover-anchor:active>.hover-rotate {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}



.container{
    margin-left:auto;
    margin-right:auto;
}
#wrapper{
    display:none;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100%;
    padding-top:50px;
}
.loaded #wrapper{
    display:block
}

#wrapper:before{
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    width: inherit;
    border: inherit;
    content: "";
}
.lock #wrapper{
    /*-webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);*/
    content:'';
}
/* HEADER */
.header{
    min-height:50px;
    position: fixed;
    top: 0;
    left:0;
    z-index:1025;
    width: 100%;
    background:var(--bg-primary)
}

.header-navbar{
    color:#fff;
    line-height:50px;
    font-size:18px;
    width: 240px;
    float:left;
    background-color:#319dd4;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-navbar .logo{
    float:left;
    font-weight:700
}

.header-navbar .logo i{
    font-size:22px;
    float:left;
    margin: 0 10px 0 0;
    color:#fff;
    line-height: 50px;
}
.header-navbar .logo a{
    color:#fff
}
.header-navbar .logo span{
    float:left;
}
.header .buttons{
    list-style:none;
    padding:0;
    margin:0;
}
.header .buttons > li{
    position: relative;
    min-width: 41px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    float: left;
    cursor: pointer;
    padding: 10px 5px;
}
.header .buttons > li a{
    color:#fff;
    display:block;
}
.header .buttons > li .active{
    background: #319dd4;
    border-radius:2px

}

.header-info{
}

/* SIDEBAR */
.sidebar{
    float:left;
    width: 240px;
    background:#1c2b36;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sidebar:before{
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    width: inherit;
    background-color: inherit;
    border: inherit;
    content: "";
    background:#1c2b36
}

.sidebar-wrap{
    color:#5f717e;

}

/* MAIN NAV */
.main-nav-wrap{
    position: relative;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
.main-nav{
    list-style:none;
    padding:5px 0 15px 0;
    margin:0;
}
.main-nav li{
    /*position:relative;*/
    min-height: 40px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.main-nav li.title{
    padding: 20px 20px 10px 20px;
    text-transform:uppercase;
}
.main-nav li .badge,
.main-nav li .label{
    margin-top:10px
}
.main-nav li.active > a{
    background-color:#16232d;
}
.main-nav li a{
    padding:0 20px;
    display:block;
    line-height: 40px;
    color:#869fb1;
    text-decoration:none!important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.main-nav li a:hover,
.main-nav li.active > a{
    color:#fff;
    text-decoration: none!Important;
}

.main-nav li a > i{
    width:25px;
    height: 32px;
    line-height: 32px;
}

.main-nav li a span i{
    width:auto;
    height:32px;
    line-height:32px;
    text-align:right;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

.main-nav li.active a span i{
    -webkit-transform: rotate(90deg); /* Safari and Chrome */
    -moz-transform: rotate(90deg);   /* Firefox */
    -ms-transform: rotate(90deg);   /* IE 9 */
    -o-transform: rotate(90deg);   /* Opera */
    transform: rotate(90deg);
}

.main-nav .main-nav-sub{
    display:none;
    list-style:none;
    margin:0;
    padding:5px 0 5px 25px;
    background:#131e26;
}

.sidebar-folded .main-nav{
    width:56px;
    float:left
}

.sidebar-folded .main-nav .main-nav-sub{
    position:absolute;
    left:56px;
    top:0;
    bottom:0;
    z-index:9999
}

.sidebar-folded .sidebar-wrap{
    width:auto;
}

.sidebar-folded .sidebar-wrap,
.sidebar-folded .main-nav-wrap{
    overflow:inherit
}

.sidebar-folded .sidebar .main-nav-wrap{
    width:auto
}

/* CONTENT */
.content{
    height:100%;
    margin-left: 240px;
    background:#f0f3f4;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.content:before,
.content:after{
    display: table;
    content: " ";
}
.content:after{
    clear:both;
}
.content-wrap{
    position:relative;
}

.content-full{
    position: absolute;
    top: 50px;
    bottom: 50px;
    width: auto!important;
    height: auto;
    padding: 0!important;
    overflow-y: auto;
    -webkit-overflow-scrolling:touch
}
.content-full.h-full {
    bottom: 0;
    height: auto;
}
.content-wrap{
    opacity:0.8;
    -webkit-transition: left 0.3s ease,top 0.3s ease;
    -moz-transition: left 0.3s ease,top 0.3s ease;
    -o-transition: left 0.3s ease,top 0.3s ease;
    -ms-transition: left 0.3s ease,top 0.3s ease;
    transition: left 0.3s ease,top 0.3s ease;
}
.content-body.ready .content-wrap{
    opacity:1
}
.content-wrap{

    float: left;
    width: 100%;
    padding-bottom: 30px;
}
.content-title{
    padding-bottom:0;
    /*-webkit-transform: translate3d(0px,0px,0px);*/
    top:-150px;
    -webkit-transition: left 0.3s ease,top 0.3s ease;
    -moz-transition: left 0.3s ease,top 0.3s ease;
    -o-transition: left 0.3s ease,top 0.3s ease;
    -ms-transition: left 0.3s ease,top 0.3s ease;
    transition: left 0.3s ease,top 0.3s ease;

}
.language-selection{
    list-style: none;
    padding: 0;
    margin: -20px -20px 20px -20px;
    background: #e4eaec;
    border-bottom: 1px solid #e0e7e8;
    height: 50px;
}
.language-selection li{
    display:inline-block;
    line-height:50px;

}
.language-selection li.active{
    background: #f1f3f4;
    border-right: 1px solid #e0e7e8;
}
.language-selection li a{
    display:block;
    padding:0 20px;
    color:#999
}
.language-selection li.active a{
    color:#666;
    font-weight:600
}
.down .content-wrap{
    padding-top:54px
}

.down .content-title{
    position:fixed;
    top:50px;
    left: 240px;
    right: 0px;
    z-index:109;
    background:#f0f3f4;
    box-shadow: -2px 0px 2px rgba(0,0,0,0.3);
    padding: 15px 20px;
}

.webapp.down{
    padding-top:70px;
}
.webapp.down .content-title{
    top:70px;
}
.down.sidebar-folded .content-title{
    left:56px
}

/** FRAME */
.down .frame .content-title{
    top:0;
    left:0;
}
.frame .content-full{
    top:0;
    bottom:0
}
/* RESPONSIVE */
@media(max-width:767px){

    .down .content-title{
        left:0;
    }
}
.content-title h1{
    font-weight:300;
    margin:0;
    line-height: 34px;
}

.content-nav{
    list-style:none;
    padding:0;
    margin:0;
}
.content-nav ul{
    list-style:none;
    padding:0 0 0 20px;
    margin:0;
}
.content-nav li{
    line-height:32px;
}
.content-nav li a{
    padding:0;
    line-height:32px;
    color:#4f575d;
}
.content-nav li a:hover,
.content-nav li a:focus{
    background:none;
}
.content-nav li.active > a{
    font-weight:600;
    color: #33a6e1;
}
/* FOOTER */

.footer{
    height:50px;
    line-height:50px;
    color:#58666e;
    margin-left: 240px;
    position:fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    background-color:#edf1f2;
    border-top:1px solid #d4dcdf;
}

/* BUTTERBAR */
.butterbar {
    position: relative;
    z-index:1;
    height: 3px;
    margin-bottom: -3px;
}
.butterbar .bar {
    position: absolute;
    width: 100%;
    height: 0;
    text-indent: -9999px;
    background-color: #1c2b36;
}
.butterbar .bar:before {
    position: absolute;
    right: 50%;
    left: 50%;
    height: 3px;
    background-color: inherit;
    content: ""}
.butterbar.active {
    -webkit-animation: changebar 2.25s infinite .75s;
    -moz-animation: changebar 2.25s infinite .75s;
    animation: changebar 2.25s infinite .75s;
}
.butterbar.active .bar {
    -webkit-animation: changebar 2.25s infinite;
    -moz-animation: changebar 2.25s infinite;
    animation: changebar 2.25s infinite;
}
.butterbar.active .bar:before {
    -webkit-animation: movingbar .75s infinite;
    -moz-animation: movingbar .75s infinite;
    animation: movingbar .75s infinite;
}
@-webkit-keyframes movingbar {
    0% {
        right: 50%;
        left: 50%}
    99.9% {
        right: 0;
        left: 0;
    }
    100% {
        right: 50%;
        left: 50%}
}@-moz-keyframes movingbar {
     0% {
         right: 50%;
         left: 50%}
     99.9% {
         right: 0;
         left: 0;
     }
     100% {
         right: 50%;
         left: 50%}
 }@keyframes movingbar {
      0% {
          right: 50%;
          left: 50%}
      99.9% {
          right: 0;
          left: 0;
      }
      100% {
          right: 50%;
          left: 50%}
  }@-webkit-keyframes changebar {
       0% {
           background-color: #16cc53;
       }
       33.3% {
           background-color: #16cc53;
       }
       33.33% {
           background-color: #f1c40f;
       }
       66.6% {
           background-color: #f1c40f;
       }
       66.66% {
           background-color: #7266ba;
       }
       99.9% {
           background-color: #7266ba;
       }
   }@-moz-keyframes changebar {
        0% {
            background-color: #16cc53;
        }
        33.3% {
            background-color: #16cc53;
        }
        33.33% {
            background-color: #f1c40f;
        }
        66.6% {
            background-color: #f1c40f;
        }
        66.66% {
            background-color: #7266ba;
        }
        99.9% {
            background-color: #7266ba;
        }
    }@keyframes changebar {
         0% {
             background-color: #16cc53;
         }
         33.3% {
             background-color: #16cc53;
         }
         33.33% {
             background-color: #f1c40f;
         }
         66.6% {
             background-color: #f1c40f;
         }
         66.66% {
             background-color: #7266ba;
         }
         99.9% {
             background-color: #7266ba;
         }
     }

/* SCROLLBARS */
::-webkit-scrollbar {
    width: 14px;
    height: 18px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0);
}
::-webkit-scrollbar-thumb {
    height: 6px;
    border: 4px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    -webkit-border-radius: 12px;
    background-color: rgba(28,43,54,0.3);
    -webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}
::-webkit-scrollbar-corner {
    background-color: transparent;
}

/* OTHER */
.gritter-image{
    border-radius: 500px;
}

/* RESPONSIVE */
@media(min-width:767px){

    .sidebar-folded .header-navbar{
        width:56px;
    }
    .sidebar-folded .sidebar{
        width:56px;
    }

    .sidebar-folded .content,
    .sidebar-folded .footer{
        margin-left:56px;
    }

    .sidebar .main-nav-wrap{
        width: 267px;
    }

    .main-nav{
        width: 249px;
    }

    .sidebar-folded .header-navbar .logo span,
    .sidebar-folded .main-nav li.title,
    .sidebar-folded .main-nav > li > a span{
        display:none;
    }

    .sidebar-folded .main-nav li a{
        line-height:48px;
        min-height:48px;
    }
    .sidebar-folded .main-nav li a > i{
        font-size:18px;
        line-height:46px;
        height:46px;
    }

    .sidebar-folded .main-nav .main-nav-sub{
        background-color:#16232d;
        width:240px;
        padding: 10px 0;
    }

    .sidebar-folded .main-nav .main-nav-sub li a{
        line-height:32px;
        min-height: 32px;
    }

    .sidebar-wrap{
        position: fixed;
        top: 50px;
        bottom: 0;
        left: 0;
        z-index: 1000;
        width: 239px;
        overflow: hidden;
    }
}

/* TABLET & MOBILE */
@media(max-width:1000px){

    /*.webapp,
    .webapp .header{
        padding-top:20px;
    }*/


    .hamburger {
        display: block;
        position: relative;
        overflow: hidden;
        margin: 0;
        padding: 0;
        width: 20px!important;
        height: 36px;
        font-size: 0;
        text-indent: -9999px;
        appearance: none;
        box-shadow: none;
        border-radius: none;
        cursor: pointer;
        background:none;
        border:0;
        margin: 8px 0 0 10px;
        /* transition: background 0.3s; */
    }

    .hamburger span {
        display: block;
        position: absolute;
        top: 16px;
        left: 0px;
        right: 0px;
        height: 2px;
        background: #fff;
        transition: background 0s 0.3s;
    }

    .hamburger span::before,
    .hamburger span::after {
        position: absolute;
        display: block;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        content: "";
        transition-duration: 0.3s, 0.3s;
        transition-delay: 0.3s, 0s;
    }

    .hamburger span::before {
        transition-property: top, transform;
        top: -6px;
    }

    .hamburger span::after {
        bottom: -6px;
        transition-property: bottom, transform;
    }


    .hamburger.active span {
        background: none;
    }

    .hamburger.active span::before {
        top: 0;
        transform: rotate(45deg);
    }

    .hamburger.active span::after {
        bottom: 0;
        transform: rotate(-45deg);
    }

    .hamburger.active span::before,
    .hamburger.active span::after {
        transition-delay: 0s, 0.3s;
    }

}
/* SMALL TABLET */
@media(min-width : 670px)
and (max-width : 1000px) {


}

/* EXTRA SMALL MOBILE */
@media(max-width:767px){

    .visible-xs{
        display:block;
    }

    .hidden-xs{
        display:none!important;
    }


    .webapp{
        -webkit-touch-callout: none;
        -webkit-tap-highlight-color: transparent;
        -webkit-user-select: none;
    }
    #wrapper{
        overflow-x: hidden;
    }

    .header-navbar{
        width:100%;
        background-color:#33a6e1
    }

    .header .buttons li{
        /* width:auto; */
    }

    .content-full{
        position:static;
        overflow-x: hidden;
        padding-bottom:30px!important;
        float:none;
    }

    .content{
        /*-webkit-transition: -webkit-transform .2s ease;*/
        -moz-transition: -moz-transform .2s ease;
        -o-transition: -o-transform .2s ease;
        transition: transform .2s ease;
    }


    .off-screen {
        position: absolute;
        top: 50px;
        bottom: 0;
        z-index: 1010;
        display: block!important;
        width: 75%!important;
        overflow-x: hidden;
        overflow-y: auto;
        visibility: visible;
        -webkit-overflow-scrolling: touch;
    }
    .off-screen+* {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1015;
        width: 100%;
        padding-top: 50px;
        overflow: hidden;
        background-color: #f0f3f4;
        -webkit-transform: translate3d(75%,0,0);
        transform: translate3d(75%,0,0);
        -webkit-transition: -webkit-transform .2s ease;
        -moz-transition: -moz-transform .2s ease;
        -o-transition: -o-transform .2s ease;
        transition: transform .2s ease;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;

    }

    .sidebar{
        float:none;
        display:none;
    }

    .footer,
    .content{
        margin-left:0;
    }

    .hbox-auto-xs{
        display:block;
        table-layout: auto
    }

    .hbox-auto-xs .vbox,
    .hbox-auto-xs>.col {
        display: block;
        width: auto;
        height: auto;
    }

    .hbox-auto-xs  .cell-inner{
        display:block;
        position:static!important
    }

    .vbox .row-row{
        display:block;
    }

    .context-menu-list{
        width: auto!Important;
        bottom: 10px;
        left: 10px!Important;
        z-index: 999999999!important;
        right: 10px;
        position: fixed;
        top: inherit!Important;
    }
}



[data-href],
[data-set-template]{
    cursor:pointer;
}