@charset "UTF-8";
/**
m         margin
   -OR-
p         padding

2. Direction
t         top
b         bottom
r         right
l         left

v         vertical
h         horizontal

(none)    No direction specified means *all* directions (like in `margin: 8px;`)

3. Delimiter
-         positive value
--        negative value
Example:

.mt-xs  { margin-top: 16px }
.mt--xs { margin-top: -16px }

4. Size
a          auto
0          0
xxxs       4px
xxs        8px
xs         16px
s          24px
m          36px
l          48px
xl         72px
xxl        96px
xxxl       144px
**/
/* margin-top */
.mt-a {
  margin-top: auto !important;
}

/* margin-right */
.mr-a {
  margin-right: auto !important;
}

/* margin-bottom */
.mb-a {
  margin-bottom: auto !important;
}

/* margin-left */
.ml-a {
  margin-left: auto !important;
}

/* horizontal margins */
.mh-a {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* vertical margins */
.mv-a {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

/* all margins */
.m-a {
  margin: auto !important;
}

/* margin-top */
.mt-0 {
  margin-top: 0 !important;
}

/* margin-right */
.mr-0 {
  margin-right: 0 !important;
}

/* margin-bottom */
.mb-0 {
  margin-bottom: 0 !important;
}

/* margin-left */
.ml-0 {
  margin-left: 0 !important;
}

/* horizontal margins */
.mh-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* vertical margins */
.mv-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* all margins */
.m-0 {
  margin: 0 !important;
}

/* margin-top */
.mt-xxxs {
  margin-top: 4px !important;
}

/* margin-right */
.mr-xxxs {
  margin-right: 4px !important;
}

/* margin-bottom */
.mb-xxxs {
  margin-bottom: 4px !important;
}

/* margin-left */
.ml-xxxs {
  margin-left: 4px !important;
}

/* horizontal margins */
.mh-xxxs {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

/* vertical margins */
.mv-xxxs {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

/* all margins */
.m-xxxs {
  margin: 4px !important;
}

/* margin-top */
.mt-xxs {
  margin-top: 8px !important;
}

/* margin-right */
.mr-xxs {
  margin-right: 8px !important;
}

/* margin-bottom */
.mb-xxs {
  margin-bottom: 8px !important;
}

/* margin-left */
.ml-xxs {
  margin-left: 8px !important;
}

/* horizontal margins */
.mh-xxs {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

/* vertical margins */
.mv-xxs {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

/* all margins */
.m-xxs {
  margin: 8px !important;
}

/* margin-top */
.mt-xs {
  margin-top: 16px !important;
}

/* margin-right */
.mr-xs {
  margin-right: 16px !important;
}

/* margin-bottom */
.mb-xs {
  margin-bottom: 16px !important;
}

/* margin-left */
.ml-xs {
  margin-left: 16px !important;
}

/* horizontal margins */
.mh-xs {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

/* vertical margins */
.mv-xs {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

/* all margins */
.m-xs {
  margin: 16px !important;
}

/* margin-top */
.mt-s {
  margin-top: 24px !important;
}

/* margin-right */
.mr-s {
  margin-right: 24px !important;
}

/* margin-bottom */
.mb-s {
  margin-bottom: 24px !important;
}

/* margin-left */
.ml-s {
  margin-left: 24px !important;
}

/* horizontal margins */
.mh-s {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

/* vertical margins */
.mv-s {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

/* all margins */
.m-s {
  margin: 24px !important;
}

/* margin-top */
.mt-m {
  margin-top: 36px !important;
}

/* margin-right */
.mr-m {
  margin-right: 36px !important;
}

/* margin-bottom */
.mb-m {
  margin-bottom: 36px !important;
}

/* margin-left */
.ml-m {
  margin-left: 36px !important;
}

/* horizontal margins */
.mh-m {
  margin-left: 36px !important;
  margin-right: 36px !important;
}

/* vertical margins */
.mv-m {
  margin-top: 36px !important;
  margin-bottom: 36px !important;
}

/* all margins */
.m-m {
  margin: 36px !important;
}

/* margin-top */
.mt-l {
  margin-top: 48px !important;
}

/* margin-right */
.mr-l {
  margin-right: 48px !important;
}

/* margin-bottom */
.mb-l {
  margin-bottom: 48px !important;
}

/* margin-left */
.ml-l {
  margin-left: 48px !important;
}

/* horizontal margins */
.mh-l {
  margin-left: 48px !important;
  margin-right: 48px !important;
}

/* vertical margins */
.mv-l {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

/* all margins */
.m-l {
  margin: 48px !important;
}

/* margin-top */
.mt-xl {
  margin-top: 60px !important;
}

/* margin-right */
.mr-xl {
  margin-right: 60px !important;
}

/* margin-bottom */
.mb-xl {
  margin-bottom: 60px !important;
}

/* margin-left */
.ml-xl {
  margin-left: 60px !important;
}

/* horizontal margins */
.mh-xl {
  margin-left: 60px !important;
  margin-right: 60px !important;
}

/* vertical margins */
.mv-xl {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

/* all margins */
.m-xl {
  margin: 60px !important;
}

/* margin-top */
.mt-xxl {
  margin-top: 96px !important;
}

/* margin-right */
.mr-xxl {
  margin-right: 96px !important;
}

/* margin-bottom */
.mb-xxl {
  margin-bottom: 96px !important;
}

/* margin-left */
.ml-xxl {
  margin-left: 96px !important;
}

/* horizontal margins */
.mh-xxl {
  margin-left: 96px !important;
  margin-right: 96px !important;
}

/* vertical margins */
.mv-xxl {
  margin-top: 96px !important;
  margin-bottom: 96px !important;
}

/* all margins */
.m-xxl {
  margin: 96px !important;
}

/* margin-top */
.mt-xxxl {
  margin-top: 144px !important;
}

/* margin-right */
.mr-xxxl {
  margin-right: 144px !important;
}

/* margin-bottom */
.mb-xxxl {
  margin-bottom: 144px !important;
}

/* margin-left */
.ml-xxxl {
  margin-left: 144px !important;
}

/* horizontal margins */
.mh-xxxl {
  margin-left: 144px !important;
  margin-right: 144px !important;
}

/* vertical margins */
.mv-xxxl {
  margin-top: 144px !important;
  margin-bottom: 144px !important;
}

/* all margins */
.m-xxxl {
  margin: 144px !important;
}

/* NEGATIVE MARGINS */
/* margin-top */
.mt--xxxs {
  margin-top: -4px !important;
}

/* margin-right */
.mr--xxxs {
  margin-right: -4px !important;
}

/* margin-bottom */
.mb--xxxs {
  margin-bottom: -4px !important;
}

/* margin-left */
.ml--xxxs {
  margin-left: -4px !important;
}

/* horizontal margins */
.mh--xxxs {
  margin-left: -4px !important;
  margin-right: -4px !important;
}

/* vertical margins */
.mv--xxxs {
  margin-top: -4px !important;
  margin-bottom: -4px !important;
}

/* all margins */
.m--xxxs {
  margin: -4px !important;
}

/* margin-top */
.mt--xxs {
  margin-top: -8px !important;
}

/* margin-right */
.mr--xxs {
  margin-right: -8px !important;
}

/* margin-bottom */
.mb--xxs {
  margin-bottom: -8px !important;
}

/* margin-left */
.ml--xxs {
  margin-left: -8px !important;
}

/* horizontal margins */
.mh--xxs {
  margin-left: -8px !important;
  margin-right: -8px !important;
}

/* vertical margins */
.mv--xxs {
  margin-top: -8px !important;
  margin-bottom: -8px !important;
}

/* all margins */
.m--xxs {
  margin: -8px !important;
}

/* margin-top */
.mt--xs {
  margin-top: -16px !important;
}

/* margin-right */
.mr--xs {
  margin-right: -16px !important;
}

/* margin-bottom */
.mb--xs {
  margin-bottom: -16px !important;
}

/* margin-left */
.ml--xs {
  margin-left: -16px !important;
}

/* horizontal margins */
.mh--xs {
  margin-left: -16px !important;
  margin-right: -16px !important;
}

/* vertical margins */
.mv--xs {
  margin-top: -16px !important;
  margin-bottom: -16px !important;
}

/* all margins */
.m--xs {
  margin: -16px !important;
}

/* margin-top */
.mt--s {
  margin-top: -24px !important;
}

/* margin-right */
.mr--s {
  margin-right: -24px !important;
}

/* margin-bottom */
.mb--s {
  margin-bottom: -24px !important;
}

/* margin-left */
.ml--s {
  margin-left: -24px !important;
}

/* horizontal margins */
.mh--s {
  margin-left: -24px !important;
  margin-right: -24px !important;
}

/* vertical margins */
.mv--s {
  margin-top: -24px !important;
  margin-bottom: -24px !important;
}

/* all margins */
.m--s {
  margin: -24px !important;
}

/* margin-top */
.mt--m {
  margin-top: -36px !important;
}

/* margin-right */
.mr--m {
  margin-right: -36px !important;
}

/* margin-bottom */
.mb--m {
  margin-bottom: -36px !important;
}

/* margin-left */
.ml--m {
  margin-left: -36px !important;
}

/* horizontal margins */
.mh--m {
  margin-left: -36px !important;
  margin-right: -36px !important;
}

/* vertical margins */
.mv--m {
  margin-top: -36px !important;
  margin-bottom: -36px !important;
}

/* all margins */
.m--m {
  margin: -36px !important;
}

/* margin-top */
.mt--l {
  margin-top: -48px !important;
}

/* margin-right */
.mr--l {
  margin-right: -48px !important;
}

/* margin-bottom */
.mb--l {
  margin-bottom: -48px !important;
}

/* margin-left */
.ml--l {
  margin-left: -48px !important;
}

/* horizontal margins */
.mh--l {
  margin-left: -48px !important;
  margin-right: -48px !important;
}

/* vertical margins */
.mv--l {
  margin-top: -48px !important;
  margin-bottom: -48px !important;
}

/* all margins */
.m--l {
  margin: -48px !important;
}

/* margin-top */
.mt--xl {
  margin-top: -60px !important;
}

/* margin-right */
.mr--xl {
  margin-right: -60px !important;
}

/* margin-bottom */
.mb--xl {
  margin-bottom: -60px !important;
}

/* margin-left */
.ml--xl {
  margin-left: -60px !important;
}

/* horizontal margins */
.mh--xl {
  margin-left: -60px !important;
  margin-right: -60px !important;
}

/* vertical margins */
.mv--xl {
  margin-top: -60px !important;
  margin-bottom: -60px !important;
}

/* all margins */
.m--xl {
  margin: -60px !important;
}

/* margin-top */
.mt--xxl {
  margin-top: -96px !important;
}

/* margin-right */
.mr--xxl {
  margin-right: -96px !important;
}

/* margin-bottom */
.mb--xxl {
  margin-bottom: -96px !important;
}

/* margin-left */
.ml--xxl {
  margin-left: -96px !important;
}

/* horizontal margins */
.mh--xxl {
  margin-left: -96px !important;
  margin-right: -96px !important;
}

/* vertical margins */
.mv--xxl {
  margin-top: -96px !important;
  margin-bottom: -96px !important;
}

/* all margins */
.m--xxl {
  margin: -96px !important;
}

/* margin-top */
.mt--xxxl {
  margin-top: -144px !important;
}

/* margin-right */
.mr--xxxl {
  margin-right: -144px !important;
}

/* margin-bottom */
.mb--xxxl {
  margin-bottom: -144px !important;
}

/* margin-left */
.ml--xxxl {
  margin-left: -144px !important;
}

/* horizontal margins */
.mh--xxxl {
  margin-left: -144px !important;
  margin-right: -144px !important;
}

/* vertical margins */
.mv--xxxl {
  margin-top: -144px !important;
  margin-bottom: -144px !important;
}

/* all margins */
.m--xxxl {
  margin: -144px !important;
}

/* padding-top */
.pt-a {
  padding-top: auto !important;
}

/* padding-right */
.pr-a {
  padding-right: auto !important;
}

/* padding-bottom */
.pb-a {
  padding-bottom: auto !important;
}

/* padding-left */
.pl-a {
  padding-left: auto !important;
}

/* horizontal paddings */
.ph-a {
  padding-left: auto !important;
  padding-right: auto !important;
}

/* vertical paddings */
.pv-a {
  padding-top: auto !important;
  padding-bottom: auto !important;
}

/* all paddings */
.p-a {
  padding: auto !important;
}

/* padding-top */
.pt-0 {
  padding-top: 0 !important;
}

/* padding-right */
.pr-0 {
  padding-right: 0 !important;
}

/* padding-bottom */
.pb-0 {
  padding-bottom: 0 !important;
}

/* padding-left */
.pl-0 {
  padding-left: 0 !important;
}

/* horizontal paddings */
.ph-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* vertical paddings */
.pv-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* all paddings */
.p-0 {
  padding: 0 !important;
}

/* padding-top */
.pt-xxxs {
  padding-top: 4px !important;
}

/* padding-right */
.pr-xxxs {
  padding-right: 4px !important;
}

/* padding-bottom */
.pb-xxxs {
  padding-bottom: 4px !important;
}

/* padding-left */
.pl-xxxs {
  padding-left: 4px !important;
}

/* horizontal paddings */
.ph-xxxs {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

/* vertical paddings */
.pv-xxxs {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

/* all paddings */
.p-xxxs {
  padding: 4px !important;
}

/* padding-top */
.pt-xxs {
  padding-top: 8px !important;
}

/* padding-right */
.pr-xxs {
  padding-right: 8px !important;
}

/* padding-bottom */
.pb-xxs {
  padding-bottom: 8px !important;
}

/* padding-left */
.pl-xxs {
  padding-left: 8px !important;
}

/* horizontal paddings */
.ph-xxs {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

/* vertical paddings */
.pv-xxs {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

/* all paddings */
.p-xxs {
  padding: 8px !important;
}

/* padding-top */
.pt-xs {
  padding-top: 16px !important;
}

/* padding-right */
.pr-xs {
  padding-right: 16px !important;
}

/* padding-bottom */
.pb-xs {
  padding-bottom: 16px !important;
}

/* padding-left */
.pl-xs {
  padding-left: 16px !important;
}

/* horizontal paddings */
.ph-xs {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

/* vertical paddings */
.pv-xs {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

/* all paddings */
.p-xs {
  padding: 16px !important;
}

/* padding-top */
.pt-s {
  padding-top: 24px !important;
}

/* padding-right */
.pr-s {
  padding-right: 24px !important;
}

/* padding-bottom */
.pb-s {
  padding-bottom: 24px !important;
}

/* padding-left */
.pl-s {
  padding-left: 24px !important;
}

/* horizontal paddings */
.ph-s {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* vertical paddings */
.pv-s {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

/* all paddings */
.p-s {
  padding: 24px !important;
}

/* padding-top */
.pt-m {
  padding-top: 36px !important;
}

/* padding-right */
.pr-m {
  padding-right: 36px !important;
}

/* padding-bottom */
.pb-m {
  padding-bottom: 36px !important;
}

/* padding-left */
.pl-m {
  padding-left: 36px !important;
}

/* horizontal paddings */
.ph-m {
  padding-left: 36px !important;
  padding-right: 36px !important;
}

/* vertical paddings */
.pv-m {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}

/* all paddings */
.p-m {
  padding: 36px !important;
}

/* padding-top */
.pt-l {
  padding-top: 48px !important;
}

/* padding-right */
.pr-l {
  padding-right: 48px !important;
}

/* padding-bottom */
.pb-l {
  padding-bottom: 48px !important;
}

/* padding-left */
.pl-l {
  padding-left: 48px !important;
}

/* horizontal paddings */
.ph-l {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

/* vertical paddings */
.pv-l {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

/* all paddings */
.p-l {
  padding: 48px !important;
}

/* padding-top */
.pt-xl {
  padding-top: 60px !important;
}

/* padding-right */
.pr-xl {
  padding-right: 60px !important;
}

/* padding-bottom */
.pb-xl {
  padding-bottom: 60px !important;
}

/* padding-left */
.pl-xl {
  padding-left: 60px !important;
}

/* horizontal paddings */
.ph-xl {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

/* vertical paddings */
.pv-xl {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* all paddings */
.p-xl {
  padding: 60px !important;
}

/* padding-top */
.pt-xxl {
  padding-top: 96px !important;
}

/* padding-right */
.pr-xxl {
  padding-right: 96px !important;
}

/* padding-bottom */
.pb-xxl {
  padding-bottom: 96px !important;
}

/* padding-left */
.pl-xxl {
  padding-left: 96px !important;
}

/* horizontal paddings */
.ph-xxl {
  padding-left: 96px !important;
  padding-right: 96px !important;
}

/* vertical paddings */
.pv-xxl {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

/* all paddings */
.p-xxl {
  padding: 96px !important;
}

/* padding-top */
.pt-xxxl {
  padding-top: 144px !important;
}

/* padding-right */
.pr-xxxl {
  padding-right: 144px !important;
}

/* padding-bottom */
.pb-xxxl {
  padding-bottom: 144px !important;
}

/* padding-left */
.pl-xxxl {
  padding-left: 144px !important;
}

/* horizontal paddings */
.ph-xxxl {
  padding-left: 144px !important;
  padding-right: 144px !important;
}

/* vertical paddings */
.pv-xxxl {
  padding-top: 144px !important;
  padding-bottom: 144px !important;
}

/* all paddings */
.p-xxxl {
  padding: 144px !important;
}

/* widths */
.wa {
  width: auto !important;
}

.w0 {
  width: 0 !important;
}

.w5 {
  width: 5% !important;
}

.w10 {
  width: 10% !important;
}

.w25 {
  width: 25% !important;
}

.w33 {
  width: 33.33333% !important;
}

.w50 {
  width: 50% !important;
}

.w66 {
  width: 66.66667% !important;
}

.w100 {
  width: 100% !important;
}

/* (Static Variables) */
/*
 * Animations/Transitions
 */
/*
 * Bootstrap Widths
 */
/*
 * Named Colours
 */
/*
 * UI Component Sizes
 */
/* (Non-Static Variables) */
/*
 * Backgrounds
 */
/*
 * Buttons
 */
/*
 * Fonts
 */
/*
 * Heights/Widths
 */
/*
 * Icons
 */
/*
 * User Presence
 */
/* (Static Variables) */
/*
 * Animations/Transitions
 */
/*
 * Bootstrap Widths
 */
/*
 * Named Colours
 */
/*
 * UI Component Sizes
 */
/* (Non-Static Variables) */
/*
 * Backgrounds
 */
/*
 * Buttons
 */
/*
 * Fonts
 */
/*
 * Heights/Widths
 */
/*
 * Icons
 */
/*
 * User Presence
 */
/**
 * Flexbox
 */
html body#darkTheme .material-icons:not([class*=text-]) {
  color: #fff;
}
html body#darkTheme .primaryButton {
  display: inline-flex;
  align-items: center;
  color: #fff;
  border-radius: 5px;
  background-color: #bb86fc;
  border: 0;
  padding: 10px 25px;
}
html body#darkTheme .primaryButton:hover {
  background-color: #ad6dfb;
}
html body#darkTheme .primaryButton:focus {
  outline: 0;
}
html body#darkTheme .btnIconRound {
  background: none;
}
html body#darkTheme .btnIconRound i {
  font-size: 35px;
}
html body#darkTheme .btn-ghost {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  font-size: 0.9em;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0;
  padding: 0.5em 1em;
  min-width: 5em;
  font-family: "Roboto", "sans-serif";
  text-shadow: none;
  background: transparent;
  border-color: #bb86fc;
  color: #bb86fc;
}
html body#darkTheme .btn-ghost:hover {
  background: #ad6dfb;
  color: #fff;
}
html body#darkTheme .btn-ghost > .material-icons {
  color: #bb86fc;
}
html body#darkTheme .btn.btn-primary.floating-action-button {
  position: relative;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  background-color: #00dac5;
  border-color: #00dac5;
  padding: 20px;
  margin-bottom: 0;
  min-width: unset;
  min-height: unset;
}
html body#darkTheme .btn.btn-primary.floating-action-button:hover {
  background-color: #00c1ae;
}
html body#darkTheme .btn.btn-primary.floating-action-button:focus {
  outline: 0;
}
html body#darkTheme .btn.btn-primary.floating-action-button.with-shadow {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.1), 0px 6px 10px 0px rgba(0, 0, 0, 0.1), 0px 1px 18px 0px rgba(0, 0, 0, 0.1);
}
html body#darkTheme .btn.btn-primary.floating-action-button-small {
  position: relative;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  background-color: #00dac5;
  border-color: #00dac5;
  padding: 15px;
  margin-bottom: 15px;
  min-width: unset;
  min-height: unset;
}
html body#darkTheme .btn.btn-primary.floating-action-button-small:hover {
  background-color: #00c1ae;
}
html body#darkTheme .btn.btn-primary.floating-action-button-small:focus {
  outline: 0;
}
html body#darkTheme .btn.btn-primary.floating-action-button-small.with-shadow {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.1), 0px 6px 10px 0px rgba(0, 0, 0, 0.1), 0px 1px 18px 0px rgba(0, 0, 0, 0.1);
}
html body#darkTheme .btn.addMargin {
  margin-right: 5px;
}
html body#darkTheme .navbar-main-menu header .account > div > ul {
  background-color: #353535;
}
html body#darkTheme .navbar-main-menu header .account > div > ul li span {
  color: #fff;
}
html body#darkTheme .navbar-main-menu header .account > div > ul li i {
  color: #fff;
}
html body#darkTheme .navbar-main-menu .side-menu .side-sub-menu {
  background-color: #070a15;
}
html body#darkTheme .navbar-main-menu .side-menu .side-sub-menu .menu .menu-item {
  color: #fff;
}
html body#darkTheme .navbar-main-menu .side-menu .side-sub-menu .menu .menu-item:hover {
  color: #070a15;
}
html body#darkTheme .navbar-main-menu .side-menu .side-sub-menu .menu .menu-item:hover .material-icons {
  color: #070a15;
}
html body#darkTheme .navbar-main-menu .side-menu .side-sub-menu .menu .menu-item .material-icons {
  color: #fff;
}
html body#darkTheme .navbar-main-menu .side-menu .side-sub-menu .menu .menu-item.active {
  background-color: #bb86fc;
}
html body#darkTheme .navbar-main-menu .side-menu .side-sub-menu .menu .menu-item.active:hover {
  background-color: #bb86fc;
}
html body#darkTheme .navbar-main-menu .side-menu .side-sub-menu .menu .menu-item-group-header {
  color: #fff;
}
html body#darkTheme .navbar-main-menu .side-menu .side-sub-menu .menu .menu-item-group-header:hover {
  color: #070a15;
}
html body#darkTheme .navbar-main-menu .side-menu .side-sub-menu .menu .menu-item-group-header:hover .material-icons {
  color: #070a15;
}
html body#darkTheme .navbar-main-menu .side-menu .side-sub-menu .menu .menu-item-group-header .material-icons {
  color: #fff;
}
html body#darkTheme .navbar-main-menu .side-menu .side-sub-menu .menu .menu-item-group-header.active {
  background-color: #bb86fc;
}
html body#darkTheme .navbar-main-menu .side-menu .side-sub-menu .menu .menu-item-group-header.active:hover {
  background-color: #bb86fc;
}
html body#darkTheme .navbar-main-menu .side-menu .side-sub-menu .application {
  border-color: #fff;
}
html body#darkTheme .navbar-main-menu .side-menu .side-sub-menu .application span {
  color: #bb86fc;
}
html body#darkTheme .navbar-main-menu .side-menu .side-main-menu {
  border-right: 1px solid #ededee;
}
html body#darkTheme #view {
  background: #070a15;
  color: #fff;
}
html body#darkTheme #view .detail-wrapper .detail-info {
  border-color: #ededee;
  background: #070a15;
}
html body#darkTheme #view .detail-wrapper .detail-info fieldset .edit-icon,
html body#darkTheme #view .detail-wrapper .detail-info fieldset .form-control {
  color: #ededee;
}
html body#darkTheme #view .detail-wrapper .detail-info fieldset.user-profile-avatar .user-avatar .material-icons {
  color: #bb86fc;
}
html body#darkTheme #view .detail-wrapper .detail-info fieldset.user-profile-avatar .change-avatar {
  background: #353535;
}
html body#darkTheme #view .detail-wrapper .detail-views {
  background: #070a15;
}
html body#darkTheme #view .detail-wrapper .detail-views section {
  background: #070a15;
  color: #fff;
}
html body#darkTheme #view .detail-wrapper .detail-views section > div > h3 {
  color: #fff;
}
html body#darkTheme #view .detail-wrapper .detail-views ul {
  background: #070a15;
}
html body#darkTheme #view .detail-wrapper .detail-views ul li a {
  color: #ededee;
}
html body#darkTheme #view .detail-wrapper .detail-views ul li.active a {
  color: #bb86fc;
}
html body#darkTheme #view .detail-wrapper .detail-views .dashboard-metric {
  background: #424242;
  border: 1px solid #424242;
}
html body#darkTheme #view .detail-wrapper .detail-views .dashboard-metric > div {
  color: #fff;
}
html body#darkTheme #view .detail-wrapper .detail-views .dashboard-metric .report-navigation-button {
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  background-color: #bb86fc;
  border: 0;
  padding: 5px;
}
html body#darkTheme #view .detail-wrapper .detail-views .dashboard-metric .report-navigation-button i {
  color: #fff;
  font-size: 2em;
}
html body#darkTheme #view .detail-wrapper .detail-views .dashboard-metric .report-navigation-button[disabled] {
  background-color: #353535;
}
html body#darkTheme #view .detail-wrapper .detail-settings {
  background: #070a15;
}
html body#darkTheme #view .detail-wrapper .detail-settings .settings li.active {
  border-left: 3px solid #bb86fc;
}
html body#darkTheme #view .detail-wrapper .detail-settings .settings li a {
  color: #fff;
}
html body#darkTheme #view .detail-wrapper .detail-settings .settings li.active a {
  color: #bb86fc;
}
html body#darkTheme #view .dialplan-builder .dialplan-components {
  background-color: #ededee;
}
html body#darkTheme #view .dialplan-builder .dialplan .dialplan-pages::-webkit-scrollbar-track {
  background: #353535;
}
html body#darkTheme #view .dialplan-builder .dialplan .dialplan-pages::-webkit-scrollbar-thumb {
  background-color: #bb86fc; /* color of the scroll thumb */
  border: 3px solid #353535; /* creates padding around scroll thumb */
}
html body#darkTheme .form-control {
  color: #fff;
  background-color: #070a15;
}
html body#darkTheme select.form-control option {
  -webkit-appearance: none;
}
html body#darkTheme .user-avatar .material-icons {
  color: #bb86fc;
}
html body#darkTheme .snq-table > tbody > tr > td,
html body#darkTheme .snq-table > tbody > tr > th,
html body#darkTheme .snq-table > tfoot > tr > td,
html body#darkTheme .snq-table > tfoot > tr > th,
html body#darkTheme .snq-table > thead > tr > td,
html body#darkTheme .snq-table > thead > tr > th {
  background-color: #070a15;
}
html body#darkTheme .snq-table > tbody > tr > td:hover,
html body#darkTheme .snq-table > tbody > tr > th:hover,
html body#darkTheme .snq-table > tfoot > tr > td:hover,
html body#darkTheme .snq-table > tfoot > tr > th:hover,
html body#darkTheme .snq-table > thead > tr > td:hover,
html body#darkTheme .snq-table > thead > tr > th:hover {
  color: #fff;
}
html body#darkTheme .snq-table > tbody > tr > td a,
html body#darkTheme .snq-table > tbody > tr > th a,
html body#darkTheme .snq-table > tfoot > tr > td a,
html body#darkTheme .snq-table > tfoot > tr > th a,
html body#darkTheme .snq-table > thead > tr > td a,
html body#darkTheme .snq-table > thead > tr > th a {
  color: #ad6dfb;
}
html body#darkTheme .snq-table tbody tr {
  color: #fff;
}
html body#darkTheme .snq-table tbody tr:hover {
  color: #fff;
}
html body#darkTheme .snq-table tbody tr .text-success {
  color: #fff;
}
html body#darkTheme label,
html body#darkTheme .snq-table-headers > th {
  color: #bb86fc;
  margin: 5px;
}
html body#darkTheme .side-main-menu li.active {
  background: #bb86fc;
}
html body#darkTheme .page-content-header {
  color: #fff;
  background: #070a15;
  border-bottom: 1px solid #ededee;
}
html body#darkTheme .page-content-header.report-filter form select {
  color: #fff;
}
html body#darkTheme .page-content-header.report-filter form select.form-control {
  color: #fff;
}
html body#darkTheme .page-content-header.report-filter form input.form-control {
  color: #fff;
}
html body#darkTheme .page-content-header.report-filter form input::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
html body#darkTheme .page-content-header .form-control {
  border-bottom: 1px solid #fff;
}
html body#darkTheme .page-content-header .filter .dropdown-menu {
  background: #353535;
}
html body#darkTheme .page-content-header .filter .dropdown-menu li {
  color: #fff;
  padding: 7px;
  font-size: 13px;
}
html body#darkTheme .page-content-header .filter .dropdown-menu li:hover {
  background: #424242;
}
html body#darkTheme .page-content-header ul.actions .material-icons {
  color: #bb86fc;
}
html body#darkTheme .page-content-header ul li.flexible > a {
  color: #bb86fc;
}
html body#darkTheme .page-content-header ul li.flexible i {
  color: #fff;
}
html body#darkTheme .page-content-header ul li .go-back > i {
  color: #bb86fc;
}
html body#darkTheme .page-content-header ul li.input-group .input-group-addon .material-icons {
  color: #fff;
}
html body#darkTheme .page-content-header.multi-select > ul {
  color: #fff;
  background: #353535;
}
html body#darkTheme .snq-table .snq-table-pagination th .material-icons {
  background: #bb86fc;
}
html body#darkTheme .snq-table .snq-table-pagination th select {
  background: #353535;
  color: #fff;
}
html body#darkTheme .modal.synq-modal .modal-header {
  background-color: #bb86fc;
}
html body#darkTheme .modal.synq-modal .alert {
  background-color: #e8bf79;
  color: #070a15;
}
html body#darkTheme .user-extension {
  background: #353535;
}
html body#darkTheme .user-extension strong {
  color: #fff;
}
html body#darkTheme .user-extension .options {
  border-color: #353535;
}
html body#darkTheme .user-extension .options .option-group header {
  color: #fff;
}
html body#darkTheme .user-extension .options .option-group header > a {
  color: #bb86fc;
}
html body#darkTheme .user-extension .options .option-group header > a:hover {
  color: #ad6dfb;
}
html body#darkTheme .modal-content {
  background: #070a15;
  border: none;
}
html body#darkTheme .modal.synq-modal .modal-body {
  color: #fff;
}
html body#darkTheme .modal.synq-modal .modal-body .form-control {
  color: #fff;
  margin: 5px;
}
html body#darkTheme .modal.synq-modal .modal-body .input-group-addon {
  background: none;
  color: #fff;
}
html body#darkTheme .btn.btn-warning {
  background: #353535;
  border: none;
  color: #fff;
}
html body#darkTheme .btn.btn-primary {
  background: #bb86fc;
  border: none;
}
html body#darkTheme .btn.btn-primary:hover {
  background: #ad6dfb;
}
html body#darkTheme .btn.btn-menu {
  background: none;
  width: 75px;
}
html body#darkTheme .btn.btn-menu i {
  color: #fff;
}
html body#darkTheme .btn.btn-menu:focus {
  outline: none;
}
html body#darkTheme .btn.btn-menu:active {
  box-shadow: none;
}
html body#darkTheme .btn.btn-menu.closed i {
  color: #fff;
  background: #353535;
  border-radius: 25px;
  padding: 10px;
}
html body#darkTheme .btn.btn-icon {
  font-size: 1.33em;
  padding: 6px;
  border-radius: 5px;
  border: 1.5px solid #bb86fc;
  background: #bb86fc;
  min-width: auto;
}
html body#darkTheme .btn.btn-icon i {
  color: #070a15;
}
html body#darkTheme .btn.btn-link {
  color: #bb86fc;
  margin-top: 20px;
  padding-left: 5px;
}
html body#darkTheme .form-horizontal .add-entity {
  color: #fff;
}
html body#darkTheme .navbar-main-menu > header {
  background: #070a15;
}
html body#darkTheme .navbar-main-menu > header .applications div {
  color: #fff;
}
html body#darkTheme .navbar-main-menu > header .applications div .material-icons:not([class*=text-]) {
  color: #fff;
}
html body#darkTheme #nav-application > header {
  background: #070a15;
}
html body#darkTheme #nav-application > header .applications div {
  color: #fff;
}
html body#darkTheme #nav-application > header .applications div .material-icons:not([class*=text-]) {
  color: #fff;
}
html body#darkTheme .queueName {
  color: #bb86fc;
}
html body#darkTheme .queueInfo {
  color: #fff;
}
html body#darkTheme .queueDescription {
  color: #fff;
}
html body#darkTheme .userfullName {
  color: #bb86fc;
}
html body#darkTheme #fab-wrapper {
  position: absolute;
  top: 5px;
  right: 5px;
  flex-direction: column;
  align-items: center;
  display: flex;
  z-index: 20;
}
html body#darkTheme #fab-wrapper.horizontal {
  flex-direction: row-reverse;
}
html body#darkTheme #fab-wrapper.horizontal .fab-actions {
  flex-direction: row-reverse;
}
html body#darkTheme #fab-wrapper.horizontal .fab-actions button {
  transform: translateX(60px);
}
html body#darkTheme #fab-wrapper.horizontal.fabOpen .fab-actions button {
  transform: translateX(0);
  margin-right: 4px;
  margin-top: 0;
}
html body#darkTheme #fab-wrapper button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 0;
  border-radius: 5px;
  background-color: #bb86fc;
  box-shadow: 0px 2px 4px 0px #9f9f9f;
}
html body#darkTheme #fab-wrapper button i#icon-small {
  font-size: 1.5em;
  color: #fff;
}
html body#darkTheme #fab-wrapper .fab-trigger {
  z-index: 24;
}
html body#darkTheme #fab-wrapper .fab-actions {
  display: flex;
  height: auto;
  flex-direction: column;
}
html body#darkTheme #fab-wrapper .fab-actions button {
  z-index: 23;
  opacity: 0;
  transform: translateY(-60px);
}
html body#darkTheme #fab-wrapper .fab-actions button:nth-child(1) {
  transition: all 0.2s cubic-bezier(0.55, 0, 0.55, 0.2);
}
html body#darkTheme #fab-wrapper .fab-actions button:nth-child(2) {
  transition: all 0.4s cubic-bezier(0.55, 0, 0.55, 0.2);
}
html body#darkTheme #fab-wrapper .fab-actions button:nth-child(3) {
  transition: all 0.6s cubic-bezier(0.55, 0, 0.55, 0.2);
}
html body#darkTheme #fab-wrapper.fabOpen .fab-actions button {
  opacity: 1;
  transform: translateY(0);
  margin-top: 4px;
}
html body#darkTheme .dropdown-menu {
  background: #353535 !important;
}
html body#darkTheme .dropdown-menu li a:hover {
  background: #424242;
  color: #bb86fc !important;
}
html body#darkTheme .field-edit .edit-icon-wrapper i {
  color: #fff;
}
html body#darkTheme .sticky-action {
  position: fixed;
  background: #070a15;
  width: calc(100% - 580px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 99;
  height: 60px;
  bottom: 0;
  border-top: 1px solid #e6e6e6;
}
html body#darkTheme .sticky-action .btn:not(:last-child) {
  margin: 0 10px;
}
html body#darkTheme .metricDashboard-main {
  background: #070a15;
}
html body#darkTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.available, html body#darkTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.busy, html body#darkTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.away {
  background-color: #bb86fc;
  color: #fff;
}
html body#darkTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.available:hover, html body#darkTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.busy:hover, html body#darkTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.away:hover {
  background-color: #ad6dfb;
  box-shadow: none;
}
html body#darkTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.offline {
  color: #fff;
  background-color: #353535;
  border: 1px solid #353535;
}
html body#darkTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.offline:hover {
  background-color: #424242;
  box-shadow: none;
}
html body#darkTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox .metricDashboard-userBox-header .metricDashboard-userAvatar {
  background-color: #fff;
  color: #070a15;
}
html body#darkTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox .metricDashboard-userBox-header .metricDashboard-userInfo {
  margin-left: 5%;
}
html body#darkTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox .metricDashboard-userStats {
  margin-top: 10%;
}
html body#darkTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox .metricDashboard-userStats .metricDashboard-userStats-row {
  display: flex;
}
html body#darkTheme .metricDashboard-main .metricDashboard-userDetails {
  background: #353535;
}
html body#darkTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-userBox-header .metricDashboard-userAvatar {
  background-color: #bb86fc;
  color: #fff;
}
html body#darkTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-userBox-header .metricDashboard-userInfo {
  text-transform: uppercase;
}
html body#darkTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-userStats .metricDashboard-userStats-row .metricDashboard-userStats-row-title {
  color: #787878;
}
html body#darkTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-pbxQueues {
  background: #424242;
  border: 1px solid #424242;
  margin-top: 5px;
  border-radius: 4px;
}
html body#darkTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-pbxQueues a {
  color: #bb86fc;
}
html body#darkTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-sectionTitle {
  color: #fff;
}
html body#darkTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox {
  background: #424242;
  border: 1px solid #424242;
}
html body#darkTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-callData .metricDashboard-callData-mainTitle {
  text-transform: uppercase;
}
html body#darkTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-callData .metricDashboard-callData-row {
  display: flex;
}
html body#darkTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-callData .metricDashboard-callData-row .metricDashboard-callData-row-title {
  color: #787878;
}
html body#darkTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-Conversations .metricDashboard-Conversations-mainTitle {
  text-transform: uppercase;
}
html body#darkTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-Conversations .metricDashboard-Conversations-row .metricDashboard-Conversations-row-title {
  color: #787878;
}
html body#darkTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-navigationButtons .report-navigation-button {
  background-color: #bb86fc;
}
html body#darkTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-navigationButtons .report-navigation-button i {
  color: #fff;
  font-size: 2em;
}
html body#darkTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-navigationButtons .report-navigation-button[disabled] {
  background-color: #353535;
}
html body#darkTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-navigationButtons .report-navigation-button[disabled] i {
  color: #fff;
}
html body#darkTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-navigationButtons .metricDashboard-navigationButtons-index {
  text-transform: uppercase;
}
html body#darkTheme .userExtensions .userExtensions-header {
  color: #bb86fc;
}
html body#darkTheme .userExtensions .material-icons {
  color: #bb86fc;
}
html body#darkTheme #callReport {
  margin-top: 30px;
}
html body#darkTheme #callReport .callReportTabs {
  list-style: none;
}
html body#darkTheme #callReport .callReportTabs .callReportTab {
  text-transform: uppercase;
  margin-right: 100px;
}
html body#darkTheme #callReport .callReportTabs .callReportTab a {
  color: #787878;
}
html body#darkTheme #callReport .callReportTabs .callReportTab.active a {
  color: #fff;
}
html body#darkTheme #callReport .callReportTable .tableHead {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-transform: uppercase;
  color: #758dbe;
  height: 60px;
  border-bottom: 1px solid #e6e6e6;
  align-items: center;
}
html body#darkTheme #callReport .callReportTable .tableHead div {
  padding: 0 20px;
  color: #bb86fc;
}
html body#darkTheme #routing-rules .header-row {
  -webkit-flex-direction: row;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
  padding: 15px;
}
html body#darkTheme #routing-rules .header-row button {
  outline: none;
  text-transform: uppercase;
}
html body#darkTheme #routing-rules .header-row button .caret {
  margin-left: 10px;
}
html body#darkTheme #routing-rules .header-row .render-range {
  margin: 0 15px;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 16px;
}
html body#darkTheme #routing-rules .header-row #today-navi {
  margin-left: 5px;
}
html body#darkTheme #routing-rules .header-row #menu-navi {
  display: flex;
  align-items: center;
}
html body#darkTheme #routing-rules #calendar .dayName {
  color: #fff;
  text-transform: uppercase;
}
html body#darkTheme #routing-rules #calendar .dayName.weekendDay {
  color: #fff;
}
html body#darkTheme #routing-rules #calendar .dayNumber.weekendDayNumber {
  color: #fff;
}
html body#darkTheme #routing-rules #calendar .tui-full-calendar-weekday-grid .tui-full-calendar-holiday-sat, html body#darkTheme #routing-rules #calendar .tui-full-calendar-weekday-grid .tui-full-calendar-holiday-sun {
  background: #353535;
}
html body#darkTheme #routing-rules #calendar .isToday {
  color: #070a15;
  background: #bb86fc;
  border-radius: 50%;
}
html body#darkTheme #routing-rules #calendar .tui-full-calendar-month-dayname-item {
  background: #070a15;
}

html body#lightTheme .primaryButton {
  display: inline-flex;
  align-items: center;
  color: #fff;
  border-radius: 5px;
  background-color: #286aff;
  border: 0;
  padding: 10px 25px;
}
html body#lightTheme .primaryButton:hover {
  background-color: #0f58ff;
}
html body#lightTheme .primaryButton:focus {
  outline: 0;
}
html body#lightTheme .btn {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  font-size: 0.9em;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0;
  padding: 0.5em 1em;
  min-width: 5em;
  font-family: "Roboto", "sans-serif";
  text-shadow: none;
}
html body#lightTheme .btn.btn-primary {
  background: #286aff;
  border-color: #286aff;
  color: #fff;
}
html body#lightTheme .btn.btn-primary:hover {
  background: #0f58ff;
}
html body#lightTheme .btn.btn-primary > .material-icons {
  color: #fff;
}
html body#lightTheme .btn.btn-icon {
  font-size: 1.33em;
  padding: 3px;
  border-radius: 5px;
  border: 1.5px solid #286aff;
  background: #286aff;
  min-width: auto;
}
html body#lightTheme .btn.btn-icon i {
  color: #fff;
}
html body#lightTheme .btn.btnIconRound {
  background: none;
}
html body#lightTheme .btn.btnIconRound i {
  color: #286aff;
  font-size: 35px;
}
html body#lightTheme .btn.btn-link {
  color: #286aff;
  margin-top: 20px;
  padding-left: 5px;
}
html body#lightTheme .btn.btn-ghost {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  font-size: 0.9em;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0;
  padding: 0.5em 1em;
  min-width: 5em;
  font-family: "Roboto", "sans-serif";
  text-shadow: none;
  background: transparent;
  border-color: #286aff;
  color: #286aff;
}
html body#lightTheme .btn.btn-ghost:hover {
  background: #0f58ff;
  color: #fff;
}
html body#lightTheme .btn.btn-ghost > .material-icons {
  color: #286aff;
}
html body#lightTheme .btn.floating-action-button {
  position: relative;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  background-color: #00dac5;
  border-color: #00dac5;
  padding: 20px;
  margin-bottom: 0;
  min-width: unset;
  min-height: unset;
}
html body#lightTheme .btn.floating-action-button:hover {
  background-color: #00c1ae;
}
html body#lightTheme .btn.floating-action-button:focus {
  outline: 0;
}
html body#lightTheme .btn.floating-action-button.with-shadow {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.1), 0px 6px 10px 0px rgba(0, 0, 0, 0.1), 0px 1px 18px 0px rgba(0, 0, 0, 0.1);
}
html body#lightTheme .btn.floating-action-button-small {
  position: relative;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  background-color: #00dac5;
  border-color: #00dac5;
  padding: 15px;
  margin-bottom: 15px;
  min-width: unset;
  min-height: unset;
}
html body#lightTheme .btn.floating-action-button-small:hover {
  background-color: #00c1ae;
}
html body#lightTheme .btn.floating-action-button-small:focus {
  outline: 0;
}
html body#lightTheme .btn.floating-action-button-small.with-shadow {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.1), 0px 6px 10px 0px rgba(0, 0, 0, 0.1), 0px 1px 18px 0px rgba(0, 0, 0, 0.1);
}
html body#lightTheme .btn.addMargin {
  margin-right: 5px;
}
html body#lightTheme .tableButton {
  display: inline-flex;
  align-items: center;
  color: #fff;
  border-radius: 5px;
  background-color: #286aff;
  border: 0;
  padding: 10px 25px;
}
html body#lightTheme .tableButton:hover {
  background-color: #0f58ff;
}
html body#lightTheme .tableButton:focus {
  outline: 0;
}
html body#lightTheme .side-main-menu li.active {
  background: #286aff;
}
html body#lightTheme .theme-color-label,
html body#lightTheme label,
html body#lightTheme .snq-table-headers > th {
  color: #758dbe;
  margin: 5px;
  text-transform: uppercase;
}
html body#lightTheme .side-sub-menu .menu-item.active {
  background-color: #286aff;
}
html body#lightTheme .menu-item-group > .menu-item {
  color: #758dbe;
}
html body#lightTheme .menu-item-group > .menu-item:hover {
  color: #070a15;
}
html body#lightTheme .snq-table .snq-table-pagination th .material-icons {
  background: #286aff;
}
html body#lightTheme .snq-table a {
  color: #286aff;
}
html body#lightTheme .modal.synq-modal .modal-header {
  background-color: #286aff;
}
html body#lightTheme .modal.synq-modal .alert {
  background-color: #e8bf79;
  color: #070a15;
}
html body#lightTheme .page-content-header input {
  color: #070a15;
}
html body#lightTheme .page-content-header input::-webkit-input-placeholder {
  color: #758dbe;
}
html body#lightTheme .page-content-header input::-ms-input-placeholder {
  color: #758dbe;
}
html body#lightTheme .page-content-header input::-moz-placeholder {
  color: #758dbe;
}
html body#lightTheme .page-content-header input:-moz-placeholder {
  color: #758dbe;
}
html body#lightTheme .page-content-header.multi-select {
  background: #ededee;
}
html body#lightTheme #view .dialplan-builder .dialplan-components {
  background-color: #ededee;
}
html body#lightTheme #view .dialplan-builder .dialplan .dialplan-pages::-webkit-scrollbar-track {
  background: #ededee;
}
html body#lightTheme #view .dialplan-builder .dialplan .dialplan-pages::-webkit-scrollbar-thumb {
  background-color: #286aff; /* color of the scroll thumb */
  border: 3px solid #ededee; /* creates padding around scroll thumb */
}
html body#lightTheme .user-extension header {
  border: 1px solid #ededee;
  border-bottom: 0px;
}
html body#lightTheme .user-extension .option-group header {
  border: none;
}
html body#lightTheme .user-extension .option-group header > a {
  color: #286aff;
}
html body#lightTheme .user-extension .option-group header > a:hover {
  color: #0f58ff;
}
html body#lightTheme .snq-table tbody tr .text-success {
  color: #070a15;
}
html body#lightTheme .queueName {
  color: #286aff;
}
html body#lightTheme .userfullName {
  color: #286aff;
}
html body#lightTheme #fab-wrapper {
  position: absolute;
  top: 5px;
  right: 5px;
  flex-direction: column;
  align-items: center;
  display: flex;
  z-index: 20;
}
html body#lightTheme #fab-wrapper.horizontal {
  flex-direction: row-reverse;
}
html body#lightTheme #fab-wrapper.horizontal .fab-actions {
  flex-direction: row-reverse;
}
html body#lightTheme #fab-wrapper.horizontal .fab-actions button {
  transform: translateX(60px);
}
html body#lightTheme #fab-wrapper.horizontal.fabOpen .fab-actions button {
  transform: translateX(0);
  margin-right: 4px;
  margin-top: 0;
}
html body#lightTheme #fab-wrapper button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 0;
  border-radius: 5px;
  background-color: #286aff;
  box-shadow: 0px 2px 4px 0px #9f9f9f;
}
html body#lightTheme #fab-wrapper button i#icon-small {
  font-size: 1.5em;
  color: #fff;
}
html body#lightTheme #fab-wrapper .fab-trigger {
  z-index: 24;
}
html body#lightTheme #fab-wrapper .fab-actions {
  display: flex;
  height: auto;
  flex-direction: column;
}
html body#lightTheme #fab-wrapper .fab-actions button {
  z-index: 23;
  opacity: 0;
  transform: translateY(-60px);
}
html body#lightTheme #fab-wrapper .fab-actions button:nth-child(1) {
  transition: all 0.2s cubic-bezier(0.55, 0, 0.55, 0.2);
}
html body#lightTheme #fab-wrapper .fab-actions button:nth-child(2) {
  transition: all 0.4s cubic-bezier(0.55, 0, 0.55, 0.2);
}
html body#lightTheme #fab-wrapper .fab-actions button:nth-child(3) {
  transition: all 0.6s cubic-bezier(0.55, 0, 0.55, 0.2);
}
html body#lightTheme #fab-wrapper.fabOpen .fab-actions button {
  opacity: 1;
  transform: translateY(0);
  margin-top: 4px;
}
html body#lightTheme .snq-table > tbody > tr > td.row-actions > ul.dropdown-menu {
  background: #fff;
}
html body#lightTheme .snq-table > tbody > tr > td.row-actions > ul > li:hover {
  background: #ededee;
}
html body#lightTheme .sticky-action {
  position: fixed;
  background: white;
  width: calc(100% - 580px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 99;
  height: 60px;
  bottom: 0;
  border-top: 1px solid #e6e6e6;
}
html body#lightTheme .sticky-action .btn:not(:last-child) {
  margin: 0 10px;
}
html body#lightTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.available, html body#lightTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.busy, html body#lightTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.away {
  background-color: #286aff;
  color: #fff;
}
html body#lightTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.available:hover, html body#lightTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.busy:hover, html body#lightTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.away:hover {
  background-color: #0f58ff;
  box-shadow: none;
}
html body#lightTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.offline {
  color: #070a15;
  background-color: #ededee;
  border: 1px solid #e6e6e6;
}
html body#lightTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.offline:hover {
  background-color: #e0e0e2;
  box-shadow: none;
}
html body#lightTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox .metricDashboard-userBox-header .metricDashboard-userAvatar {
  background-color: #fff;
  color: #070a15;
}
html body#lightTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox .metricDashboard-userBox-header .metricDashboard-userInfo {
  margin-left: 5%;
}
html body#lightTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox .metricDashboard-userStats {
  margin-top: 10%;
}
html body#lightTheme .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox .metricDashboard-userStats .metricDashboard-userStats-row {
  display: flex;
}
html body#lightTheme .metricDashboard-main .metricDashboard-userDetails {
  background: #f8f8f8;
}
html body#lightTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-userBox-header .metricDashboard-userAvatar {
  background-color: #286aff;
  color: #fff;
}
html body#lightTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-userBox-header .metricDashboard-userInfo {
  text-transform: uppercase;
}
html body#lightTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-userStats .metricDashboard-userStats-row .metricDashboard-userStats-row-title {
  color: #758dbe;
}
html body#lightTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-pbxQueues {
  background: #fff;
  border: 1px solid #e6e6e6;
}
html body#lightTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-pbxQueues a {
  color: #286aff;
}
html body#lightTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-sectionTitle {
  color: #070a15;
}
html body#lightTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox {
  background: #fff;
  border: 1px solid #e6e6e6;
}
html body#lightTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-callData .metricDashboard-callData-mainTitle {
  text-transform: uppercase;
}
html body#lightTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-callData .metricDashboard-callData-row .metricDashboard-callData-row-title {
  color: #758dbe;
}
html body#lightTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-Conversations .metricDashboard-Conversations-mainTitle {
  text-transform: uppercase;
}
html body#lightTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-Conversations .metricDashboard-Conversations-row .metricDashboard-Conversations-row-title {
  color: #758dbe;
}
html body#lightTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-navigationButtons .report-navigation-button {
  background-color: #286aff;
}
html body#lightTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-navigationButtons .report-navigation-button i {
  color: #fff;
  font-size: 2em;
}
html body#lightTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-navigationButtons .report-navigation-button[disabled] {
  background-color: #ededee;
}
html body#lightTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-navigationButtons .report-navigation-button[disabled] i {
  color: #070a15;
}
html body#lightTheme .metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-navigationButtons .metricDashboard-navigationButtons-index {
  text-transform: uppercase;
}
html body#lightTheme .userExtensions {
  display: flex;
  align-items: center;
}
html body#lightTheme .userExtensions .material-icons {
  color: #286aff;
}
html body#lightTheme #routing-rules #calendar .isToday {
  background: #286aff;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  background: #f4f8f9;
  color: #001c40;
  font-family: "Roboto", "sans-serif";
  font-size: 13px;
  height: 100%;
  padding: 0 0 0 20em;
  scrollbar-face-color: #313743;
  scrollbar-track-color: #474f60;
  width: 100%;
}
body::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}
body::-webkit-scrollbar-thumb {
  background: #313743;
}
body::-webkit-scrollbar-track {
  background: #474f60;
}
body::-webkit-scrollbar-button {
  display: none;
}
body .list-none {
  list-style-type: none;
}
body.login-page {
  padding: 0;
}
body.login-page #view {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  font-size: 3em;
}
body.login-page #view > .login-form {
  display: -webkit-flex;
  display: flex;
  background: #ffffff;
  -webkit-flex: 0 0 33%;
  -ms-flex: 0 0 33%;
  flex: 0 0 33%;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 0 2em;
}
body.login-page #view > .login-form > footer {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 0 0 10%;
  -ms-flex: 0 0 10%;
  flex: 0 0 10%;
  -webkit-flex-direction: column;
  flex-direction: column;
  font-size: 0.333em;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-bottom: 1.143em;
  text-align: center;
}
body.login-page #view > .login-form > header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 0 0 35%;
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
  -webkit-flex-direction: column;
  flex-direction: column;
  color: #5951ff;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  text-align: center;
}
body.login-page #view > .login-form > header > div {
  font-size: 0.333em;
  padding-top: 1em;
}
body.login-page #view > .login-form > header > .branding img {
  width: 300px;
}
body.login-page #view > .login-form > header > .user-avatar {
  border-color: #2aade3;
  border-style: solid;
  border-width: 1px;
  margin: 0.381em 0;
  min-width: 2.4em;
  min-height: 2.4em;
}
body.login-page #view > .login-form > header > .user-avatar > img {
  border-color: #2aade3;
  border-style: solid;
  border-width: 1px;
}
body.login-page #view > .login-form > header > .user-avatar > .material-icons {
  color: #2aade3;
  font-size: 1em;
  -webkit-transform: translateY(-0.045em);
  -o-transform: translateY(-0.045em);
  -ms-transform: translateY(-0.045em);
  -moz-transform: translateY(-0.045em);
  transform: translateY(-0.045em);
}
body.login-page #view > .login-form > section {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 0 0 55%;
  -ms-flex: 0 0 55%;
  flex: 0 0 55%;
  -webkit-flex-direction: column;
  flex-direction: column;
  font-size: 0.333em;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
body.login-page #view > .login-form > section > div {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 1.5em 0 0;
  position: relative;
  width: 100%;
}
body.login-page #view > .login-form > section > div:last-child {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
body.login-page #view > .login-form > section > div + div {
  margin-top: 2em;
}
body.login-page #view > .login-form > section > div > button {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: #2aade3;
  border: none;
  color: #ffffff;
  font-family: "Roboto", "sans-serif";
  font-size: 0.9em;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0;
  padding: 1em 4em;
  text-transform: uppercase;
}
body.login-page #view > .login-form > section > div > button:disabled, body.login-page #view > .login-form > section > div > button:disabled:hover {
  background: #a6a6a6;
  cursor: auto;
}
body.login-page #view > .login-form > section > div > button:first-child:last-child {
  width: 100%;
}
body.login-page #view > .login-form > section > div > button:hover {
  background: #1ca1d7;
}
body.login-page #view > .login-form > section > div > button > .material-icons {
  font-size: 1.2em;
  margin-right: 0.333em;
}
body.login-page #view > .login-form > section > div > input {
  border-color: #a6a6a6;
  border-style: solid;
  border-width: 0 0 1px;
  color: #a6a6a6;
  padding: 0.8em 0;
  position: relative;
  width: 100%;
}
body.login-page #view > .login-form > section > div > input + label {
  color: #a6a6a6;
  display: block;
  font-weight: 400;
  left: 0;
  position: absolute;
  top: calc(50% + 0.75em);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 400ms ease, font-weight 0ms ease 400ms;
  -o-transition: 400ms ease, font-weight 0ms ease 400ms;
  -ms-transition: 400ms ease, font-weight 0ms ease 400ms;
  -moz-transition: 400ms ease, font-weight 0ms ease 400ms;
  transition: 400ms ease, font-weight 0ms ease 400ms;
}
body.login-page #view > .login-form > section > div > input:focus, body.login-page #view > .login-form > section > div > input.ng-not-empty {
  border-color: #5951ff;
  color: #5951ff;
  outline: none;
}
body.login-page #view > .login-form > section > div > input:focus + label, body.login-page #view > .login-form > section > div > input.ng-not-empty + label {
  color: #5951ff;
  font-weight: 500;
  top: 0;
  -webkit-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}
body.login-page #view > .login-info,
body.login-page #view > ng-include > .login-info {
  display: -webkit-flex;
  display: flex;
  background: linear-gradient(rgba(17, 33, 67, 0.6), rgba(17, 33, 67, 0.6)), url(../img/login.jpg);
  background-position: right bottom;
  background-size: cover;
  color: #ffffff;
  -webkit-flex: 0 0 67%;
  -ms-flex: 0 0 67%;
  flex: 0 0 67%;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 1.333em 2em;
}
body.login-page #view > .login-info > *,
body.login-page #view > ng-include > .login-info > * {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
body.login-page #view > .login-info > *.login-info-bottom,
body.login-page #view > ng-include > .login-info > *.login-info-bottom {
  font-weight: 200;
  padding: 0 4.5em;
}
body.login-page #view > .login-info > *.login-info-top,
body.login-page #view > ng-include > .login-info > *.login-info-top {
  font-weight: bold;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  text-transform: uppercase;
}
body.login-page #view > .login-info > *.login-info-top > img,
body.login-page #view > ng-include > .login-info > *.login-info-top > img {
  margin: 0.667em 0;
  max-height: 2.19em;
  max-width: 10em;
}
body:not(.login-page) #view > .login-form,
body:not(.login-page) #view > .login-info {
  display: none;
}
body > #connection-lost,
body > ng-include > #connection-lost {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: rgba(244, 248, 249, 0.8);
  color: inherit;
  -webkit-flex-direction: column;
  flex-direction: column;
  font-family: inherit;
  font-size: 3em;
  font-style: inherit;
  font-weight: inherit;
  height: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000;
}
body > #connection-lost > .material-icons,
body > ng-include > #connection-lost > .material-icons {
  font-size: 3em;
}
body > #connection-lost > small,
body > ng-include > #connection-lost > small {
  font-size: 0.667em;
}
body > #connection-lost > strong,
body > ng-include > #connection-lost > strong {
  color: #667d90;
}

@-webkit-keyframes spinning {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinning {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinning {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.snq-animate.spinning {
  animation: 1s linear infinite 0s spinning;
  -webkit-animation: 1s linear infinite 0s spinning;
}

.btn {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  font-size: 0.9em;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0;
  padding: 0.5em 1em;
  min-width: 5em;
  font-family: "Roboto", "sans-serif";
  text-shadow: none;
}
.btn.btn-primary {
  background: #5951ff;
  border-color: #5951ff;
  color: #fff;
}
.btn.btn-primary:hover {
  background: #4138ff;
}
.btn.btn-primary > .material-icons {
  color: #fff;
}
.btn.btn-icon {
  font-size: 1.33em;
  padding: 3px;
  border-radius: 5px;
  border: 1.5px solid #5951ff;
  background: #5951ff;
}
.btn.btn-icon i {
  color: #fff;
}
.btn.btn-menu {
  background: none;
  width: 75px;
}
.btn.btn-menu i {
  color: #070a15;
}
.btn.btn-menu:focus {
  outline: none;
}
.btn.btn-menu:active {
  box-shadow: none;
}
.btn.btn-menu.closed i {
  color: #070a15;
  padding: 10px;
}
.btn.btnIconRound {
  background: none;
}
.btn.btnIconRound i {
  color: #5951ff;
  font-size: 35px;
}
.btn.btn-link {
  color: #5951ff;
  text-transform: uppercase;
  margin-top: 20px;
  padding-left: 5px;
}
.btn.btn-ghost {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  font-size: 0.9em;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0;
  padding: 0.5em 1em;
  min-width: 5em;
  font-family: "Roboto", "sans-serif";
  text-shadow: none;
  background: transparent;
  border-color: #5951ff;
  color: #5951ff;
}
.btn.btn-ghost:hover {
  background: #4138ff;
  color: #fff;
}
.btn.btn-ghost > .material-icons {
  color: #5951ff;
}
.btn.btn-brand-blue {
  background: #2aade3;
  border-color: #2aade3;
  color: #ffffff;
}
.btn.btn-warning {
  background: #ffffff;
  border-color: #a0a0a0;
  color: #001c40;
}
.btn.btn-warning:hover {
  background: #f2f2f2;
}
.btn > .material-icons {
  color: inherit;
}
.btn > .material-icons.snq-animate {
  color: inherit;
  font-size: 1.428em;
  margin-right: 0.15em;
}

.flexbox {
  display: -webkit-flex;
  display: flex;
}

.flexbox-inline {
  display: -webkit-inline-flex;
  display: inline-flex;
}

.form-control {
  background: transparent;
  border-style: solid;
  border-width: 0 0 1px;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #333333;
  font-family: "Roboto", sans-serif;
  outline: none;
}
.form-control:focus {
  border-bottom-width: 2px;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: none;
}

span.form-control {
  border-color: transparent;
}

select.form-control {
  padding-left: 8px;
}

.modal-footer {
  border-top: 0;
}
.modal-footer .refresh-dids {
  padding: 2px;
}

.modal-backdrop {
  background-color: #ffffff;
}

.form-horizontal [onclick],
.form-horizontal [ng-click],
.form-horizontal [data-ng-click] {
  cursor: pointer;
}
.form-horizontal .add-entity {
  display: inline-block;
  margin-bottom: 0;
  padding-top: 7px;
  color: #5951ff;
}
.form-horizontal .form-group input[type=checkbox],
.form-horizontal .form-group input[type=radio] {
  margin-top: 9px;
}
.form-horizontal .form-group .input-group[class*=col-] {
  padding-left: 15px;
  padding-right: 15px;
}
.form-horizontal .form-group .input-group .input-group-addon {
  background: rgba(175, 175, 175, 0.15);
  border-left: none;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border-right: none;
  border-top: none;
  font-size: 0.9em;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.form-horizontal .form-group .input-group .input-group-addon > .material-icons {
  font-size: 1.286em;
}
.form-horizontal .form-group .form-control[placeholder=City] {
  width: 80% !important;
}
.form-horizontal .form-group .form-control[placeholder=Country] {
  width: 72% !important;
}
.form-horizontal .form-group .form-control[placeholder=State] {
  width: 20% !important;
}
.form-horizontal .form-group .form-control[placeholder="Zip Code"] {
  width: 28% !important;
}
.form-horizontal .form-group [class*=col-] > .form-control-feedback {
  right: 15px;
}
.form-horizontal .form-group [class*=col-] > .snq-checkbox {
  margin-top: 10px;
}

#header {
  background: #f4f8f9;
  border: none;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #001c40;
  font-family: "Roboto", "sans-serif";
  display: block;
  height: 5.571em;
  left: 20em;
  padding: 0;
  width: calc(100% - 24em);
  z-index: 2;
}
#header .material-icons {
  color: inherit;
}
#header > ul {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
#header > ul > li {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  -webkit-flex: 1 1 3.402%;
  -ms-flex: 1 1 3.402%;
  flex: 1 1 3.402%;
  -webkit-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 4em;
}
#header > ul > li:last-child {
  padding: 0 1.214em;
}
#header > ul > li.menu {
  background: #e8bf79;
  cursor: pointer;
  -webkit-flex: 0 0 4em;
  -ms-flex: 0 0 4em;
  flex: 0 0 4em;
}
#header > ul > li.page-add {
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-flex: 0 0 15.998em;
  -ms-flex: 0 0 15.998em;
  flex: 0 0 15.998em;
}
#header > ul > li.search {
  -webkit-flex-direction: row;
  flex-direction: row;
  min-width: 49.356em;
}
#header > ul > li.search > input {
  background: none;
  border-color: #ffffff;
  border-style: solid;
  border-width: 0 0 0.1em;
  color: #ffffff;
  margin-left: 0.5em;
  width: calc(100% - 24px - 0.5em);
}
#header > ul > li.search > input:focus {
  outline: none;
}
#header > ul > li.search > input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
}
#header > ul > li.search > input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
}
#header > ul > li.search > input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
}
#header > ul > li.search > input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
}
#header > ul > li.title {
  -webkit-align-items: left;
  align-items: left;
  min-width: 31.676em;
  padding: 0 2.999794em;
}

input[type=file]:focus,
input[type=checkbox]:focus,
input[type=radio]:focus {
  outline: none;
}

#login-form {
  background: rgba(89, 81, 255, 0.5);
  border: none;
  -webkit-border-radius: 1em;
  -o-border-radius: 1em;
  -ms-border-radius: 1em;
  -moz-border-radius: 1em;
  border-radius: 1em;
  color: #ffffff;
  display: inline-block;
  font-family: "Roboto", "sans-serif";
  padding: 1.214em;
}
#login-form > .form-actions > button {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  background: #5e97f7;
  border: none;
  -webkit-border-radius: 1em;
  -o-border-radius: 1em;
  -ms-border-radius: 1em;
  -moz-border-radius: 1em;
  border-radius: 1em;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 33%;
  padding: 1em 0.5em;
}
#login-form > .form-actions > button:active, #login-form > .form-actions > button:hover {
  background: #307dfc;
}
#login-form > .form-actions > button > .material-icons.snq-animate {
  color: inherit;
  margin-right: 0.15em;
}
#login-form > .form-group {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: left;
  justify-content: left;
  width: 100%;
}
#login-form > .form-group > label {
  display: block;
  width: 100%;
}
#login-form > header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  border: none;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-size: 2.7855em;
  height: 1.39275em;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 1em;
  width: 100%;
}
#login-form > header .material-icons {
  font-size: 1em;
  margin-right: 0.667em;
}
#login-form input {
  color: #e6e6e6;
}
#login-form input::-webkit-input-placeholder {
  color: #c6c6c6;
}
#login-form input::-ms-input-placeholder {
  color: #c6c6c6;
}
#login-form input::-moz-placeholder {
  color: #c6c6c6;
}
#login-form input:-moz-placeholder {
  color: #c6c6c6;
}
#login-form .material-icons {
  color: inherit;
}

.material-icons {
  background: none;
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}
.material-icons:not([class*=text-]) {
  color: #070a15;
}
.material-icons:not(.disabled)[onclick], .material-icons:not(.disabled)[ng-click], .material-icons:not(.disabled)[data-ng-click] {
  cursor: pointer;
}
.material-icons.icon-secondary {
  border-color: #ffffff;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border-width: 1px;
}
.material-icons.icon-secondary:not([class*=text-]) {
  color: #ffffff;
}
.material-icons.icon-tertiary {
  background: #ffffff;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.material-icons.icon-tertiary:not([class*=text-]) {
  color: #001c40;
}
.material-icons.icon-critical {
  background: #ee6e73;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.material-icons.icon-critical:not([class*=text-]) {
  color: #ffffff;
}
.material-icons.icon-favourite {
  color: #e8bf79;
}
.material-icons.text-inherit {
  color: inherit;
}

.modal.synq-modal.synq-avatar-modal .avatar-list {
  max-height: 9.643em;
}
.modal.synq-modal.synq-avatar-modal .avatar-list > div {
  font-weight: normal;
  vertical-align: baseline;
}
.modal.synq-modal.synq-avatar-modal .avatar-list > div:nth-child(6) ~ div {
  margin-top: 15px;
}
.modal.synq-modal.synq-avatar-modal .avatar-list > div.selected > img {
  border-color: #ee6e73;
}
.modal.synq-modal.synq-avatar-modal .avatar-list > div > img {
  border: 2px solid transparent;
  height: 4.286em;
  max-height: 4.286em;
}
.modal.synq-modal.synq-avatar-modal .avatar-list > div > input {
  display: none;
}
.modal.synq-modal.synq-queue-policy-modal .extension-list > div,
.modal.synq-modal.synq-queue-policy-modal .skill-list > div, .modal.synq-modal.synq-ring-group-policy-modal .extension-list > div,
.modal.synq-modal.synq-ring-group-policy-modal .skill-list > div {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.modal.synq-modal.synq-queue-policy-modal .extension-list > div > label,
.modal.synq-modal.synq-queue-policy-modal .skill-list > div > label, .modal.synq-modal.synq-ring-group-policy-modal .extension-list > div > label,
.modal.synq-modal.synq-ring-group-policy-modal .skill-list > div > label {
  font-weight: normal;
  padding-left: 0;
}
.modal.synq-modal.synq-user-device-modal .codec-list > div {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.modal.synq-modal.synq-user-device-modal .codec-list > div > label {
  font-weight: normal;
  padding-left: 0;
}
.modal.synq-modal > .form-actions {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.modal.synq-modal > .form-actions > * ~ * {
  margin-left: 7px !important;
}
.modal.synq-modal .modal-body .form-error {
  text-align: center;
  color: #ee6e73;
  padding-bottom: 7px;
}
.modal.synq-modal .modal-body .form-control {
  font-size: 10pt;
  color: inherit;
  padding: 0;
}
.modal.synq-modal .modal-body .input-group-addon {
  background-color: #ffffff;
  border: 0;
}
.modal.synq-modal .modal-body .control-label {
  font-weight: 400;
  text-align: left;
  font-size: 8pt;
  width: 100%;
}
.modal.synq-modal .modal-body .control-list-label {
  padding-top: 8px;
}
.modal.synq-modal .modal-body .control-button-add {
  padding-top: 5px;
}
.modal.synq-modal .modal-body a {
  color: #5951ff;
}
.modal.synq-modal .modal-header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: #716bff;
  border: none;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #ffffff;
  font-family: "Roboto", "sans-serif";
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 30px 15px;
  text-transform: uppercase;
  font-weight: 300;
}
.modal.synq-modal .modal-body-title {
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 500;
}
.modal.synq-modal .modal-body-help-text {
  color: #758dbe;
}

.navbar-main-menu > header,
#nav-application > header {
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  height: 70px;
  display: flex;
  border-bottom: 1px solid #cccccc;
}
.navbar-main-menu > header > .branding,
#nav-application > header > .branding {
  width: 208px;
  height: 100%;
  display: flex;
  align-items: center;
}
.navbar-main-menu > header > .branding > img,
#nav-application > header > .branding > img {
  max-height: 80%;
  max-width: 100%;
  margin-left: 25px;
}
.navbar-main-menu > header > .applications,
#nav-application > header > .applications {
  width: calc(100% - 308px);
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex-direction: row;
  align-items: center;
}
.navbar-main-menu > header > .applications > div,
#nav-application > header > .applications > div {
  width: 85px;
  text-align: center;
  padding: 12px 10px 8px 10px;
  color: #070a15;
  cursor: pointer;
  font-size: 12px;
}
.navbar-main-menu > header > .applications > div.disabled,
#nav-application > header > .applications > div.disabled {
  opacity: 0.5;
  cursor: auto;
}
.navbar-main-menu > header > .applications > div:first-child,
#nav-application > header > .applications > div:first-child {
  padding-right: 15px;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
  width: 10%;
  justify-content: space-around;
}
.navbar-main-menu > header > .applications > .menu-item > .secondary-menu,
#nav-application > header > .applications > .menu-item > .secondary-menu {
  width: 200px;
  list-style-type: none;
  background-color: #ffffff;
  padding: 10px;
  box-shadow: 1px 1px 2px black;
}
.navbar-main-menu > header > .applications > .menu-item > .secondary-menu > li,
#nav-application > header > .applications > .menu-item > .secondary-menu > li {
  padding: 5px;
  text-align: left;
  cursor: pointer;
}
.navbar-main-menu > header > .applications > .menu-item > .secondary-menu > li > span,
.navbar-main-menu > header > .applications > .menu-item > .secondary-menu > li > a > span,
#nav-application > header > .applications > .menu-item > .secondary-menu > li > span,
#nav-application > header > .applications > .menu-item > .secondary-menu > li > a > span {
  top: -7px;
  position: relative;
  left: 5px;
}
.navbar-main-menu > header > .account,
#nav-application > header > .account {
  width: 100px;
  text-align: right;
  padding-right: 20px;
  padding-top: 12px;
  position: relative;
}
.navbar-main-menu > header > .account > header > span,
#nav-application > header > .account > header > span {
  cursor: pointer;
}
.navbar-main-menu > header > .account > div,
#nav-application > header > .account > div {
  width: 200px;
  position: absolute;
  right: 15px;
  top: auto;
}
.navbar-main-menu > header > .account > div > ul,
#nav-application > header > .account > div > ul {
  list-style-type: none;
  background-color: #ffffff;
  padding: 10px;
  box-shadow: 1px 1px 2px black;
}
.navbar-main-menu > header > .account > div > ul > li,
#nav-application > header > .account > div > ul > li {
  padding: 5px;
  text-align: left;
  cursor: pointer;
}
.navbar-main-menu > header > .account > div > ul > li a,
#nav-application > header > .account > div > ul > li a {
  text-decoration: none;
  color: #001c40;
}
.navbar-main-menu > header > .account > div > ul > li > span,
.navbar-main-menu > header > .account > div > ul > li > a > span,
#nav-application > header > .account > div > ul > li > span,
#nav-application > header > .account > div > ul > li > a > span {
  top: -7px;
  position: relative;
  left: 5px;
}

#nav-application-hover {
  position: fixed;
  margin: 0;
  left: 19.4em !important;
  top: 0 !important;
  border-radius: 0;
  height: 100%;
}
#nav-application-hover .popover-content {
  margin: 0;
  padding: 0;
  border-radius: 0;
  height: 100%;
}
#nav-application-hover .arrow {
  display: none;
}
#nav-application-hover .app-description {
  padding: 1em;
  text-align: center;
}

#nav-application {
  background: #ffffff;
  border: none;
  color: #5951ff;
  overflow: hidden;
  padding: 0;
  width: 25em;
  z-index: 4;
  position: fixed;
  -webkit-transition: 400ms ease;
  -o-transition: 400ms ease;
  -ms-transition: 400ms ease;
  -moz-transition: 400ms ease;
  transition: 400ms ease;
}
#nav-application.ng-hide {
  display: block !important;
  -webkit-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%);
}
#nav-application .brand-name {
  margin-right: 1em;
}
#nav-application > .menu {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: left;
  align-items: left;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin: 0;
  max-height: calc(100% - 8.357em);
  overflow: hidden;
  padding: 0.5em 1.214em 1.5em;
  -webkit-transform: translateX(-1.214em);
  -o-transform: translateX(-1.214em);
  -ms-transform: translateX(-1.214em);
  -moz-transform: translateX(-1.214em);
  transform: translateX(-1.214em);
  width: calc(100% + 2.428em);
}
#nav-application > .menu.vertical-scroll-visible .menu-item,
#nav-application > .menu.vertical-scroll-visible .menu-item-group-header {
  padding-right: 0;
}
#nav-application > .menu .menu-item {
  display: block;
  -webkit-flex: 1 0;
  -ms-flex: 1 0;
  flex: 1 0;
  width: 100%;
  height: 5.25em;
  color: #001c40;
  cursor: pointer;
  padding: 1.3em 0.667em 0.5em 1.214em;
  text-decoration: none !important;
  font-weight: bold;
}
#nav-application > .menu .menu-item:hover, #nav-application > .menu .menu-item.active, #nav-application > .menu .menu-item.active:hover {
  background: #5951ff;
  color: #ffffff;
}
#nav-application > .menu .menu-item:hover > .material-icons, #nav-application > .menu .menu-item.active > .material-icons, #nav-application > .menu .menu-item.active:hover > .material-icons {
  color: #ffffff !important;
}
#nav-application > .menu .menu-item:hover > span, #nav-application > .menu .menu-item.active > span, #nav-application > .menu .menu-item.active:hover > span {
  left: -2px;
}
#nav-application > .menu .menu-item div {
  margin-left: 1.3em;
}
#nav-application > .menu .menu-item div > .name {
  font-weight: 500;
}
#nav-application > .menu .menu-item div > .description {
  font-size: 0.85em;
  margin-left: 1.5em;
}
#nav-application > .menu .menu-item > .material-icons {
  font-size: 1.286em;
  color: #001c40;
  position: relative;
  top: 0.2em;
  float: left;
}
#nav-application > .menu .menu-item > .material-icons + span {
  margin-left: 1.1em;
}

.navbar-main-menu {
  border: none;
  overflow: hidden;
  padding: 0;
  padding-top: 70px;
  width: 20em;
  z-index: 3;
}
.navbar-main-menu > .side-menu {
  background-color: yellow;
}
.navbar-main-menu > .side-menu > .side-main-menu {
  background-color: #070a15;
  position: absolute;
  height: 100vh;
  width: 75px;
  z-index: 999999;
}
.navbar-main-menu > .side-menu > .side-main-menu.expanded {
  width: 176px;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu {
  margin: 0;
  max-height: calc(100% - 8.357em);
  overflow: hidden;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu.vertical-scroll-visible .menu-item,
.navbar-main-menu > .side-menu > .side-main-menu > .menu.vertical-scroll-visible .menu-item-group-header {
  padding-right: 0;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group-header {
  display: block;
  list-style-type: none;
  margin: 0;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item > li,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group > li,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group-header > li {
  padding: 25px 0 25px 0;
  cursor: pointer;
  margin-left: -15px;
  margin-right: -2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item > li > i,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group > li > i,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group-header > li > i {
  color: #ffffff;
  font-size: 32px;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item > li > span,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group > li > span,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group-header > li > span {
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item > li.active,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group > li.active,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group-header > li.active {
  border-left: 3px solid transparent !important;
  color: #5951ff;
  background: #5951ff;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item > li.active > i,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group > li.active > i,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group-header > li.active > i {
  margin-left: 2px;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item > li:hover,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group > li:hover,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group-header > li:hover {
  background: #1a254e;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group {
  background: whitesmoke;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group-header {
  color: #001c40;
  cursor: pointer;
  padding: 0em 0em 0.5em 1.214em;
  text-decoration: none !important;
  font-weight: bold;
  margin-left: -1px;
  padding-right: 2px;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item.active, .navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item.active:hover,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group-header.active,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group-header.active:hover {
  color: #000000;
  border-left: 3px solid #bfe6f7 !important;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item.active > .material-icons, .navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item.active:hover > .material-icons,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group-header.active > .material-icons,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group-header.active:hover > .material-icons {
  color: #000000 !important;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item.active > span, .navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item.active:hover > span,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group-header.active > span,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group-header.active:hover > span {
  left: -2px;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item > .material-icons,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group-header > .material-icons {
  font-size: 1.286em;
  color: #a3a7b0;
  position: relative;
  top: 0.2em;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item > .material-icons + span,
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group-header > .material-icons + span {
  margin-left: 1.1em;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group {
  overflow: hidden;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group > .menu-item {
  padding-left: 3.842em;
}
.navbar-main-menu > .side-menu > .side-main-menu > .menu .menu-item-group-header > .collapse-indicator {
  float: right;
}
.navbar-main-menu > .side-menu > .side-sub-menu {
  position: absolute;
  left: 70px;
  height: 100vh;
  border-right: 1px solid #ededee;
  background-color: #fff;
  z-index: 99999;
  width: calc(100% - 70px);
}
.navbar-main-menu > .side-menu > .side-sub-menu > .application {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  margin: 0;
  padding: 0;
  padding: 0 1.214em 0 1.214em !important;
  width: calc(100% + 2.428em);
  height: 3.5em !important;
  border-bottom: 1px solid;
  font-size: 16px;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .application > .material-icons {
  font-size: 1.286em;
  color: #5951ff;
  position: relative;
  padding-left: 4px !important;
  padding-right: 1em;
  font-weight: bold;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .application > span {
  color: #5951ff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .project {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  margin: 0;
  padding: 0;
  padding: 0 1.214em 0 1.214em !important;
  width: calc(100% + 2.428em);
  height: 5.571em !important;
  border-style: solid;
  border-color: #667d90 !important;
  border-width: 1px 0 0px !important;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .project > span {
  padding-left: 0.5em;
  width: 12em;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .project > .material-icons {
  font-size: 1em;
  color: #a6a6a6;
  padding-left: 4px !important;
  padding-right: 1em;
  font-weight: bold;
  float: right;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .project > .material-icons:hover {
  color: #ffffff;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .menu {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: left;
  align-items: left;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin: 0;
  max-height: calc(100% - 8.357em);
  overflow: hidden;
  padding: 0em 1.214em 1.5em;
  -webkit-transform: translateX(-1.214em);
  -o-transform: translateX(-1.214em);
  -ms-transform: translateX(-1.214em);
  -moz-transform: translateX(-1.214em);
  transform: translateX(-1.214em);
  width: calc(100% + 2.428em);
}
.navbar-main-menu > .side-menu > .side-sub-menu > .menu.vertical-scroll-visible .menu-item,
.navbar-main-menu > .side-menu > .side-sub-menu > .menu.vertical-scroll-visible .menu-item-group-header {
  padding-right: 0;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item,
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item-group,
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item-group-header {
  display: block;
  -webkit-flex: 1 0;
  -ms-flex: 1 0;
  flex: 1 0;
  width: 100%;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item,
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item-group-header {
  color: #070a15;
  cursor: pointer;
  padding: 0.75em 0.667em 0.75em 1.214em;
  text-decoration: none !important;
  display: flex;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item:hover,
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item-group-header:hover {
  background: #ededee;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item.active, .navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item.active:hover,
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item-group-header.active,
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item-group-header.active:hover {
  color: #ffffff;
  font-weight: 500;
  background-color: #5951ff;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item.active > .material-icons, .navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item.active:hover > .material-icons,
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item-group-header.active > .material-icons,
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item-group-header.active:hover > .material-icons {
  color: #ffffff !important;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item.active > span, .navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item.active:hover > span,
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item-group-header.active > span,
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item-group-header.active:hover > span {
  left: -2px;
  color: #ffffff;
  font-weight: 400;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item > .material-icons,
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item-group-header > .material-icons {
  font-size: 1.286em;
  color: #070a15;
  position: relative;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item > .material-icons + span,
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item-group-header > .material-icons + span {
  margin-left: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item-group {
  overflow: hidden;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item-group > .menu-item {
  padding-left: 3.842em;
  color: #758dbe;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item-group > .menu-item:hover {
  color: #070a15;
}
.navbar-main-menu > .side-menu > .side-sub-menu > .menu .menu-item-group-header > .collapse-indicator {
  float: right;
}

.navbar-fixed-left {
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  left: 0;
  position: fixed;
  top: 0;
}

.navbar-sidebar {
  height: 100%;
}

.page-content-header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: left;
  align-items: left;
  background: #f5f8f9;
  border-bottom: 1px solid #e6e6e6;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  height: 5.571em;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.607em 1.214em;
  width: 100%;
  color: #070a15;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-content-header > div > ul > li.dropdown-content {
  position: absolute;
  top: 120px;
  right: 10px;
  box-shadow: 1px 1px 2px black;
  list-style-type: none;
  background-color: #ffffff;
  padding: 5px;
  cursor: pointer;
  text-align: center;
  padding: 12px;
  font-size: 10px;
}
.page-content-header > div > ul > li.dropdown-content:hover {
  background-color: #eef6ff;
  color: #4557e5;
}
.page-content-header .form-control {
  border-bottom: 1px solid #070a15;
}
.page-content-header > * {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  height: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  max-width: 100%;
  padding: 0;
}
.page-content-header > *.full-width {
  max-width: 100%;
}
.page-content-header > *:first-child {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.page-content-header > *:last-child:not(:first-child) {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.page-content-header > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-content-header > ul > li {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0;
  max-width: 75%;
  padding: 0;
}
.page-content-header > ul > li .filter > div {
  cursor: pointer;
}
.page-content-header > ul > li .filter > div > i {
  position: relative;
  top: 7px;
  color: #286aff;
}
.page-content-header > ul > li .filter .dropdown-menu > li {
  padding: 3px;
  padding-left: 6px;
  cursor: pointer;
  color: #333333;
}
.page-content-header > ul > li.flexible {
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.page-content-header > ul > li.flexible > a {
  font-size: 0.8em;
  font-weight: bold;
  color: #286aff;
}
.page-content-header > ul > li.flexible > small {
  font-size: 1em;
}
.page-content-header > ul > li.flexible > span {
  font-size: 1.5em;
}
.page-content-header > ul > li.flexible > span {
  margin: 0;
}
.page-content-header > ul > li.input-group {
  -webkit-flex-direction: row;
  flex-direction: row;
}
.page-content-header > ul > li.input-group > .input-group-addon {
  -webkit-align-self: center;
  align-self: center;
  background: transparent;
  border: none;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 0 0.607em;
  width: auto;
}
.page-content-header > ul > li.input-group > .input-group-addon > .material-icons {
  font-size: 1.286em;
  color: #070a15;
}
.page-content-header > ul > li.input-group:first-child > .input-group-addon {
  padding-left: 0;
}
.page-content-header > ul > li.input-group:last-child:not(:first-child) > .input-group-addon {
  padding-right: 0;
}
.page-content-header > ul > li.separator {
  background: #e6e6e6;
  height: 100%;
  margin: 0 0.607em !important;
  max-width: 1px !important;
  min-width: 1px !important;
  padding: 0 !important;
}
.page-content-header > ul > li > a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  color: #ffffff;
}
.page-content-header > ul > li > a:hover {
  text-decoration: none;
}
.page-content-header > ul > li > .material-icons {
  cursor: pointer;
}
.page-content-header > ul > li > small {
  font-weight: 300;
}
.page-content-header > ul > li .go-back {
  cursor: pointer;
  padding-right: 0.3035em;
  -webkit-transform: translateX(-2px);
  -o-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  -moz-transform: translateX(-2px);
  transform: translateX(-2px);
}
.page-content-header > ul > li .go-back > i {
  color: #286aff;
}
.page-content-header > ul.actions .material-icons {
  font-size: 1.33em;
  color: #286aff;
  padding: 6px;
  border-radius: 5px;
  border: 1.5px solid;
}
.page-content-header > ul.actions .material-icons:hover {
  color: #fff;
  background: #5951ff;
}
.page-content-header > ul.actions > button {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: #307dfc;
  border: none;
  -webkit-border-radius: 0.333em;
  -o-border-radius: 0.333em;
  -ms-border-radius: 0.333em;
  -moz-border-radius: 0.333em;
  border-radius: 0.333em;
  color: #ffffff;
  font-family: "Roboto", "sans-serif";
  font-size: 0.9em;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0;
  padding: 0.333em 1em;
}
.page-content-header > ul.actions > button:hover {
  background: #176dfc;
}
.page-content-header > ul.actions > button > .material-icons {
  font-size: 1.2em;
  margin-right: 0.333em;
  color: #ffffff !important;
}
.page-content-header > ul.actions > li {
  padding: 0 0.607em;
}
.page-content-header > ul.actions > li.disabled {
  opacity: 0.4;
}
.page-content-header > ul.actions > li.disabled > .material-icons {
  cursor: auto;
  color: #0f58ff;
}
.page-content-header > ul:first-child > li:first-child {
  padding-left: 0;
}
.page-content-header > ul:last-child > li:last-child {
  padding-right: 0;
}
.page-content-header.multi-select > ul {
  max-width: 100%;
  min-width: 100%;
  color: #667d90;
}
.page-content-header.multi-select > ul > li {
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  max-width: 33%;
  font-weight: 400;
}
.page-content-header.multi-select > ul > li:first-child {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.page-content-header.multi-select > ul > li:last-child {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.page-content-header.multi-select > ul > li:last-child > span {
  margin-left: 1.333em;
}
.page-content-header.multi-select > ul > li > span {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  font-size: 1em;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin-left: 0.333em;
}
.page-content-header.multi-select > ul > li > span > .material-icons {
  font-size: 1.25em;
}
.page-content-header.table-filter {
  -webkit-box-shadow: 0 0.5em 0.25em -0.25em #f5f8f9;
  -o-box-shadow: 0 0.5em 0.25em -0.25em #f5f8f9;
  -ms-box-shadow: 0 0.5em 0.25em -0.25em #f5f8f9;
  -moz-box-shadow: 0 0.5em 0.25em -0.25em #f5f8f9;
  box-shadow: 0 0.5em 0.25em -0.25em #f5f8f9;
  color: #ffffff;
}
.page-content-header.table-filter > ul > li > div > i {
  color: #ffffff;
}
.page-content-header.table-filter > ul > li > input {
  background-color: 1px solid #ffffff;
  color: #ffffff;
}
.page-content-header.table-filter > ul > li > input::-webkit-input-placeholder {
  color: #e6e6e6;
}
.page-content-header.table-filter > ul > li > input::-ms-input-placeholder {
  color: #e6e6e6;
}
.page-content-header.table-filter > ul > li > input::-moz-placeholder {
  color: #e6e6e6;
}
.page-content-header.table-filter > ul > li > input:-moz-placeholder {
  color: #e6e6e6;
}
.page-content-header.report-filter {
  margin-bottom: 1em;
  color: #758dbe;
  max-width: 100%;
}
.page-content-header.report-filter > form {
  max-width: 100%;
}
.page-content-header.report-filter > form input[type=datetime-local]::-webkit-calendar-picker-indicator {
  z-index: 1111111;
}
.page-content-header.report-filter > form > select.form-control,
.page-content-header.report-filter > form select,
.page-content-header.report-filter > form input.form-control {
  color: #070a15;
}
.page-content-header.report-filter > form > input[type=datetime-local]::-webkit-calendar-picker-indicator {
  color: #070a15;
}
.page-content-header.report-filter > form .snq-checkbox {
  border: 1px solid #cccccc;
  border-radius: 3px;
}
.page-content-header.report-filter > form .snq-checkbox > input {
  display: none;
}
.page-content-header.report-filter > form .snq-checkbox > label {
  padding: 8px !important;
  background: #000000 !important;
  filter: invert(1);
}
.page-content-header.report-filter > form > div .btn {
  color: #333;
  margin-top: 15px;
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.page-content-header.report-filter > form > div .btn:hover {
  background: #d6d6d6;
}
.page-content-header.report-filter > form > div .btn:focus {
  border: none;
  outline: none;
}
.page-content-header .floating-action-button {
  background-color: #d69525;
  border-radius: 100%;
  border: 0;
  position: relative;
  top: -35px;
  left: -60px;
  color: #001c40;
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.1), 0px 6px 10px 0px rgba(0, 0, 0, 0.1), 0px 1px 18px 0px rgba(0, 0, 0, 0.1);
}
.page-content-header .floating-action-button:focus {
  border: none;
  outline: none;
}
.page-content-header .floating-action-button > i {
  font-size: 3em;
  color: #001c40;
}
.page-content-header .floating-action-button:hover {
  background: #e1aa4d;
}
.page-content-header .floating-action-button-small {
  background-color: #d69525;
  border-radius: 100%;
  border: 0;
  position: relative;
  margin-right: 30px;
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.1), 0px 6px 10px 0px rgba(0, 0, 0, 0.1), 0px 1px 18px 0px rgba(0, 0, 0, 0.1);
}
.page-content-header .floating-action-button-small:focus {
  border: none;
  outline: none;
}
.page-content-header .floating-action-button-small > i {
  font-size: 2em;
  color: #ffffff;
}
.page-content-header .floating-action-button-small:hover {
  background: #e1aa4d;
}

.popover {
  color: #333333;
}

.user-avatar {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  -webkit-justify-content: center;
  justify-content: center;
  max-height: 2.858em;
  min-height: 2.858em;
  max-width: 2.858em;
  min-width: 2.858em;
  position: relative;
}
.user-avatar.user-avatar-lg, .user-avatar.user-avatar-large {
  font-size: 1.25em;
}
.user-avatar.user-avatar-sm, .user-avatar.user-avatar-small {
  font-size: 0.75em;
}
.user-avatar.user-avatar-sm > .user-presence.bordered, .user-avatar.user-avatar-small > .user-presence.bordered {
  border-width: 0.0855em;
}
.user-avatar.user-avatar-xl, .user-avatar.user-avatar-xlarge {
  font-size: 1.5em;
}
.user-avatar.user-avatar-xl > .user-presence.bordered, .user-avatar.user-avatar-xlarge > .user-presence.bordered {
  border-width: 0.121em;
}
.user-avatar.user-avatar-xs, .user-avatar.user-avatar-xmsall {
  font-size: 0.625em;
}
.user-avatar.user-avatar-xs > .user-presence.bordered, .user-avatar.user-avatar-xmsall > .user-presence.bordered {
  border-width: 0.0855em;
}
.user-avatar > img,
.user-avatar > .material-icons {
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: block;
  max-height: 2.858em;
  max-width: 2.858em;
}
.user-avatar > .material-icons {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  font-size: 3.412452em;
  -webkit-justify-content: center;
  justify-content: center;
  max-height: 0.837520938em;
  max-width: 0.837520938em;
}
.user-avatar > .user-presence {
  bottom: 0;
  display: block !important;
  font-size: inherit;
  height: 0.857em;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  -webkit-transform: translate(0.071em, 0.071em);
  -o-transform: translate(0.071em, 0.071em);
  -ms-transform: translate(0.071em, 0.071em);
  -moz-transform: translate(0.071em, 0.071em);
  transform: translate(0.071em, 0.071em);
  width: 0.857em;
}
.user-avatar > .user-presence.bordered {
  border-width: 0.171em;
}

.user-extension {
  background: #ffffff;
  margin: 1em;
  padding: 0;
  width: calc(100% - 2em);
}
.user-extension strong {
  font-weight: 400;
  color: #001c40;
}
.user-extension > header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: top;
  align-items: top;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-size: 1.1em;
  font-weight: bold;
  margin: 0;
  padding: 0.606em 78% 0.606em 0.606em;
  border-bottom: 1px solid #e6e6e6;
}
.user-extension > header > .snq-checkbox,
.user-extension > header > .snq-radio {
  font-size: 0.909em;
  margin-right: 0.667em;
}
.user-extension > .options {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-color: #e6e6e6;
  border-style: solid;
  border-width: 1px;
  margin: 0;
  padding: 0.667em 0;
  width: 100%;
}
.user-extension > .options > .option-group {
  -webkit-flex: 1 1 25%;
  -ms-flex: 1 1 25%;
  flex: 1 1 25%;
  padding: 0 0.667em;
}
.user-extension > .options > .option-group:first-child {
  -webkit-flex: 0 0 22%;
  -ms-flex: 0 0 22%;
  flex: 0 0 22%;
}
.user-extension > .options > .option-group.option-group-devices {
  -webkit-flex: 0 0 35%;
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
}
.user-extension > .options > .option-group + .option-group {
  border-color: #e6e6e6;
  border-style: solid;
  border-width: 0 0 0 1px;
}
.user-extension > .options > .option-group > header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-size: 1.1em;
  padding-bottom: 1.25em;
  font-weight: 400;
  color: #001c40;
}
.user-extension > .options > .option-group > header > a {
  color: #5951ff;
  cursor: pointer;
  font-size: 0.75em;
  font-weight: 400;
}
.user-extension > .options > .option-group > header > a:hover {
  text-decoration: none;
  color: #4138ff;
}
.user-extension > .options > .option-group > .form-group {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-left: 0.667em;
  padding-right: 0.333em;
}
.user-extension > .options > .option-group > .form-group:hover .edit-icon {
  visibility: visible;
}
.user-extension > .options > .option-group > .form-group.disabled {
  opacity: 0.667;
}
.user-extension > .options > .option-group > .form-group.disabled > div {
  opacity: 0.8;
}
.user-extension > .options > .option-group > .form-group .edit-icon {
  cursor: pointer;
  font-size: 1em;
  margin: 0 0.333em;
  -webkit-transform: translateY(0.1em);
  -o-transform: translateY(0.1em);
  -ms-transform: translateY(0.1em);
  -moz-transform: translateY(0.1em);
  transform: translateY(0.1em);
  visibility: hidden;
}
.user-extension > .options > .option-group > .form-group > div {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  opacity: 0.667;
  width: 100%;
}
.user-extension > .options > .option-group > .form-group > div .edit-icon {
  -webkit-transform: none;
  -o-transform: none;
  -ms-transform: none;
  -moz-transform: none;
  transform: none;
}
.user-extension > .options > .option-group > .form-group > label {
  font-weight: normal;
  padding: 0;
  width: 66.667%;
}
.user-extension > .options > .option-group > .form-group > label > small {
  display: block;
}
.user-extension > .options > .option-group > .form-group > .snq-checkbox,
.user-extension > .options > .option-group > .form-group > .snq-radio {
  margin-top: 1px;
}
.user-extension > .options > .option-group > .form-group > .snq-checkbox > label,
.user-extension > .options > .option-group > .form-group > .snq-radio > label {
  margin-right: 0;
}
.user-extension .user-extension-device + .user-extension-device {
  margin-top: 1em;
}
.user-extension .user-extension-device > div {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  font-size: 0.8em;
  width: 100%;
}
.user-extension .user-extension-device > div.headers {
  color: #a6a6a6;
}
.user-extension .user-extension-device > div > div {
  -webkit-flex: 1 1 calc((100% - 3.4em) / 4);
  -ms-flex: 1 1 calc((100% - 3.4em) / 4);
  flex: 1 1 calc((100% - 3.4em) / 4);
}
.user-extension .user-extension-device > div > div:first-child {
  margin-left: 1.7em;
}
.user-extension .user-extension-device > div > div:last-child {
  margin-right: 1.7em;
}
.user-extension .user-extension-device > div > div:last-of-type {
  -webkit-flex: 0 0 5.25em;
  -ms-flex: 0 0 5.25em;
  flex: 0 0 5.25em;
  text-align: center;
}
.user-extension .user-extension-device > div .snq-checkbox-switch {
  font-size: 1em;
}
.user-extension .user-extension-device > div .material-icons {
  color: #a6a6a6;
  cursor: pointer;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  font-size: 1.2em;
}
.user-extension .user-extension-device > div .material-icons:first-child {
  margin-right: 0.5em;
}
.user-extension .user-extension-device > div .material-icons:last-child {
  margin-left: 0.5em;
}

.user-list-table > tbody > tr > td:first-child.row-select + td,
.user-list-table > tbody > tr > td:first-child:not(.row-select) {
  width: 4em;
}
.user-list-table > tbody > tr > td:first-child.row-select + td + td > .material-icons,
.user-list-table > tbody > tr > td:first-child:not(.row-select) + td > .material-icons {
  font-size: 1.3em;
}
.user-list-table > tbody > tr > td:not(.row-select):not(.row-actions) {
  vertical-align: top;
}

.user-presence {
  background: #e6e6e6;
  border-color: #f4f8f9;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border-style: solid;
  border-width: 0;
  display: inline-block;
  height: 0.8574em;
  margin: 0;
  min-height: 0;
  min-width: 0;
  padding: 0;
  width: 0.8574em;
}
.user-presence:empty {
  display: inline-block;
}
.user-presence.hidden, .user-presence.ng-hide {
  display: none !important;
}
.user-presence.presence-available {
  background: #00dac5;
}
.user-presence.presence-away {
  background: #e8bf79;
}
.user-presence.presence-busy {
  background: #ee6e73;
}

#view {
  margin: 0;
  min-height: 100%;
  min-width: 100%;
  background: #ffffff;
  padding: 0;
  padding-top: 70px;
  position: relative;
  z-index: 1;
}
#view > .detail-wrapper {
  display: -webkit-flex;
  display: flex;
  margin: 0;
  max-height: calc(100vh - 5.571em);
  min-width: 100%;
  padding: 0;
  position: relative;
}
#view > .detail-wrapper > .detail-settings {
  display: -webkit-flex;
  display: flex;
  border-color: #e6e6e6;
  border-style: solid;
  border-width: 0 1px 0 0;
  -webkit-flex-direction: column;
  flex-direction: column;
  font-size: 0.9em;
  height: 100%;
  padding: 0.607em 1.214em 1.214em 0;
  position: relative;
  width: 25em;
  background: #f5f8f9;
  align-items: left;
}
#view > .detail-wrapper > .detail-settings .settings {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  list-style: none;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 21px;
}
#view > .detail-wrapper > .detail-settings .settings > li {
  font-size: 1.2em;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 21px;
}
#view > .detail-wrapper > .detail-settings .settings > li a {
  text-decoration: none;
  color: #a0afbc;
  font-weight: 400;
  cursor: pointer;
  font-size: 0.9em;
}
#view > .detail-wrapper > .detail-settings .settings > li > a:hover {
  text-decoration: none;
  color: #667d90;
}
#view > .detail-wrapper > .detail-settings .settings > li.active {
  padding-left: 18px;
  border-left: 3px solid #286aff;
}
#view > .detail-wrapper > .detail-settings .settings > li.active a {
  color: #000000;
}
#view > .detail-wrapper > .detail-info {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  border-color: #e6e6e6;
  border-style: solid;
  border-width: 0 1px 0 0;
  -webkit-flex-direction: column;
  flex-direction: column;
  font-size: 0.9em;
  height: 100%;
  padding: 0.607em 1.214em 1.214em;
  position: relative;
  width: 25em;
  background: #f5f8f9;
}
#view > .detail-wrapper > .detail-info > fieldset {
  width: 100%;
}
#view > .detail-wrapper > .detail-info > fieldset + fieldset {
  margin-top: 1em;
}
#view > .detail-wrapper > .detail-info > fieldset.editing > div {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
#view > .detail-wrapper > .detail-info > fieldset.editing > div[data-count="0"] > div:last-child {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  max-height: 34px;
  min-height: 34px;
  padding: 6px 0;
  width: 100%;
}
#view > .detail-wrapper > .detail-info > fieldset.editing > div:not([data-count="0"]) > label {
  padding-top: 0.333em;
}
#view > .detail-wrapper > .detail-info > fieldset.editing > div.user-profile-more-info-address .form-control[placeholder=City] {
  width: 80% !important;
}
#view > .detail-wrapper > .detail-info > fieldset.editing > div.user-profile-more-info-address .form-control[placeholder=Country] {
  width: 72% !important;
}
#view > .detail-wrapper > .detail-info > fieldset.editing > div.user-profile-more-info-address .form-control[placeholder=State] {
  width: 20% !important;
}
#view > .detail-wrapper > .detail-info > fieldset.editing > div.user-profile-more-info-address .form-control[placeholder="Zip Code"] {
  width: 28% !important;
}
#view > .detail-wrapper > .detail-info > fieldset.editing > div > div > div:last-of-type {
  margin-bottom: 1em;
}
#view > .detail-wrapper > .detail-info > fieldset > div {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: right;
  justify-content: right;
  width: 100%;
  margin-top: 0.5em;
}
#view > .detail-wrapper > .detail-info > fieldset > div fieldset > * {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#view > .detail-wrapper > .detail-info > fieldset > div > :first-child:last-child {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  text-align: center;
}
#view > .detail-wrapper > .detail-info > fieldset > div > :first-child > .form-control {
  border-color: transparent;
  color: inherit;
  padding-left: 0;
  width: 90%;
}
#view > .detail-wrapper > .detail-info > fieldset > div > div {
  text-align: center;
}
#view > .detail-wrapper > .detail-info > fieldset > div > div > * {
  text-align: left;
}
#view > .detail-wrapper > .detail-info > fieldset > div > div > a {
  cursor: pointer;
}
#view > .detail-wrapper > .detail-info > fieldset > div > input[type=checkbox] {
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
}
#view > .detail-wrapper > .detail-info > fieldset > div > label {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 0 0 35%;
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
  font-weight: 400;
  height: 34px;
  padding: 6px 1em 6px 0;
}
#view > .detail-wrapper > .detail-info > fieldset > div > label > small {
  padding-top: 0.333em;
}
#view > .detail-wrapper > .detail-info > fieldset > div > label > small::before {
  content: " ";
}
#view > .detail-wrapper > .detail-info > fieldset .edit-icon {
  cursor: pointer;
  font-size: 1.1em;
  font-weight: normal;
}
#view > .detail-wrapper > .detail-info > fieldset .form-control {
  font-size: 1em;
}
#view > .detail-wrapper > .detail-info > fieldset .form-control.form-control-checkbox {
  border-color: transparent;
}
#view > .detail-wrapper > .detail-info > fieldset > header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  border-color: #e6e6e6;
  border-style: solid;
  border-width: 1px 0 0;
  font-size: 1.333em;
  font-weight: 400;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0;
  padding: 1em 0;
}
#view > .detail-wrapper > .detail-info > fieldset > header .edit-icon {
  font-size: 0.825em;
}
#view > .detail-wrapper > .detail-info > fieldset .input-group {
  width: 100%;
}
#view > .detail-wrapper > .detail-info > fieldset .input-group > .input-group-addon {
  background: transparent;
  border-left: none;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border-right: none;
  border-top: none;
  padding-left: 0.15em;
  padding-right: 0.15em;
  text-align: center;
  width: 1.3em;
}
#view > .detail-wrapper > .detail-info > fieldset .input-group > .input-group-addon > .material-icons {
  cursor: pointer;
  font-size: 1em;
}
#view > .detail-wrapper > .detail-info > fieldset.user-profile-avatar {
  height: auto;
  position: relative;
  text-align: center;
  width: auto;
}
#view > .detail-wrapper > .detail-info > fieldset.user-profile-avatar > .change-avatar {
  background: #e6e6e6;
  bottom: 0;
  cursor: pointer;
  left: 0;
  opacity: 0.8;
  padding: 0.667em 1em;
  position: relative;
  text-align: center;
  width: calc(100% - 0.5em);
}
#view > .detail-wrapper > .detail-info > fieldset.user-profile-avatar > .user-avatar {
  -webkit-border-radius: unset;
  -o-border-radius: unset;
  -ms-border-radius: unset;
  -moz-border-radius: unset;
  border-radius: unset;
  max-height: unset;
  max-width: unset;
  min-height: unset;
  min-width: unset;
}
#view > .detail-wrapper > .detail-info > fieldset.user-profile-avatar > .user-avatar > img {
  -webkit-border-radius: unset;
  -o-border-radius: unset;
  -ms-border-radius: unset;
  -moz-border-radius: unset;
  border-radius: unset;
  max-height: 11.571em;
  max-width: 11.571em;
}
#view > .detail-wrapper > .detail-info > fieldset.user-profile-avatar > .user-avatar > .material-icons {
  -webkit-border-radius: unset;
  -o-border-radius: unset;
  -ms-border-radius: unset;
  -moz-border-radius: unset;
  border-radius: unset;
  font-size: 10.124em;
}
#view > .detail-wrapper > .detail-info > fieldset .user-profile-more-info-address {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
#view > .detail-wrapper > .detail-info > fieldset .user-profile-more-info-address > div.form-control {
  display: -webkit-flex;
  display: flex;
  border-color: transparent;
  -webkit-flex-direction: row;
  flex-direction: row;
  height: auto;
  padding-right: 0.333em;
}
#view > .detail-wrapper > .detail-info > fieldset .user-profile-more-info-address > div.form-control > :first-child {
  -webkit-flex: 0 0 1.95em;
  -ms-flex: 0 0 1.95em;
  flex: 0 0 1.95em;
}
#view > .detail-wrapper > .detail-info > fieldset .user-profile-more-info-address > div.form-control > :first-child > .material-icons {
  cursor: pointer;
  font-size: 1.667em;
}
#view > .detail-wrapper > .detail-info > fieldset .user-profile-more-info-address > div.form-control > :last-child {
  -webkit-flex: 0 1 calc(100% - 1.95em);
  -ms-flex: 0 1 calc(100% - 1.95em);
  flex: 0 1 calc(100% - 1.95em);
}
#view > .detail-wrapper > .detail-info > fieldset .user-profile-more-info-address > div .city-state::after {
  content: ", ";
}
#view > .detail-wrapper > .detail-info > fieldset .user-profile-more-info-address > label {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
#view > .detail-wrapper > .detail-info > fieldset .user-profile-more-info-address > label > .material-icons {
  cursor: pointer;
  font-size: 1em;
  font-weight: normal;
  margin-right: 0.3em;
}
#view > .detail-wrapper > .detail-views {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: left;
  align-items: left;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 0;
  position: relative;
  width: calc(100% - 34.444em);
}
#view > .detail-wrapper > .detail-views .privilege-list > div {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0 0 1em;
}
#view > .detail-wrapper > .detail-views .privilege-list > div > input[type=checkbox] {
  margin: 0;
}
#view > .detail-wrapper > .detail-views .privilege-list > div > label {
  font-weight: normal;
  padding: 0;
}
#view > .detail-wrapper > .detail-views .dashboard-metric {
  position: relative;
  display: flex;
  border: 1px solid #e6e6e6;
  padding: 20px;
  background: #fff;
  justify-content: space-evenly;
  align-items: center;
}
#view > .detail-wrapper > .detail-views .dashboard-metric.with-navigation {
  justify-content: space-between;
}
#view > .detail-wrapper > .detail-views .dashboard-metric .report-navigation-button {
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  background-color: #286aff;
  border: 0;
  padding: 5px;
}
#view > .detail-wrapper > .detail-views .dashboard-metric .report-navigation-button i {
  color: #fff;
  font-size: 2em;
}
#view > .detail-wrapper > .detail-views .dashboard-metric .report-navigation-button[disabled] {
  background-color: #9f9f9f;
}
#view > .detail-wrapper > .detail-views .dashboard-metric i {
  font-size: 3em;
}
#view > .detail-wrapper > .detail-views .dashboard-metric strong {
  font-size: 2em;
}
#view > .detail-wrapper > .detail-views .dashboard-metric > div {
  margin-left: 1em;
  text-align: left;
  font-size: 12px;
}
#view > .detail-wrapper > .detail-views .dashboard-metric label {
  margin-left: 5px;
  margin-right: 5px;
}
#view > .detail-wrapper > .detail-views > section {
  background: #ffffff;
  color: #333333;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  font-family: "Roboto", sans-serif;
  padding: 0.607em;
  position: relative;
  width: 100%;
  height: calc(100vh - 9.9em);
  min-height: calc(100vh - 9.9em);
}
#view > .detail-wrapper > .detail-views > section.vertical-scroll-visible {
  padding-right: calc(0.607em - 0.35em);
}
#view > .detail-wrapper > .detail-views > section.vertical-scroll-visible::-webkit-scrollbar {
  width: 0.4em;
  height: 0.4em;
}
#view > .detail-wrapper > .detail-views > section > div > h3 {
  font-size: 1.2em;
}
#view > .detail-wrapper > .detail-views > section > div > .flexbox-inline {
  margin-top: 20px;
  align-items: center;
}
#view > .detail-wrapper > .detail-views > section > div > .flexbox-inline > h3 {
  margin: 0 20px 0 0;
  font-size: 1.2em;
}
#view > .detail-wrapper > .detail-views > ul {
  display: -webkit-flex;
  display: flex;
  border-color: #e6e6e6;
  border-style: solid;
  border-width: 0 0 1px;
  -webkit-flex: 0 0 4.286em;
  -ms-flex: 0 0 4.286em;
  flex: 0 0 4.286em;
  list-style: none;
  margin: 0;
  padding: 1.214em 0 0;
  width: 100%;
}
#view > .detail-wrapper > .detail-views > ul.horizontal-scroll-visible::-webkit-scrollbar {
  width: 0.333em;
  height: 0.333em;
}
#view > .detail-wrapper > .detail-views > ul.horizontal-scroll-visible > li > a {
  padding-bottom: 0.607em;
}
#view > .detail-wrapper > .detail-views > ul.vertical-scroll-visible {
  overflow-y: hidden !important;
}
#view > .detail-wrapper > .detail-views > ul ~ section {
  -webkit-flex: 0 0 87%;
  -ms-flex: 0 0 87%;
  flex: 0 0 87%;
  padding-top: 25px;
}
#view > .detail-wrapper > .detail-views > ul > li {
  border-color: transparent;
  border-style: solid;
  border-width: 0 0 2px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-left: 15px;
}
#view > .detail-wrapper > .detail-views > ul > li > a {
  color: #a6a6a6;
  display: block;
  min-width: 8.143em;
  padding: 0.607em 1.214em calc(0.607em + 0.275em);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
#view > .detail-wrapper > .detail-views > ul > li > a:hover {
  text-decoration: none;
}
#view > .detail-wrapper > .detail-views > ul > li.active {
  border-color: #001c40;
}
#view > .detail-wrapper > .detail-views > ul > li.active > a {
  color: #334d68;
}
#view > .page-content-header + .detail-wrapper > .detail-info,
#view > .page-content-header + .detail-wrapper .detail-settings {
  height: calc(100vh - 6.627em);
}
#view > .page-content-header + .detail-wrapper > .detail-info.snq-scrollable > *,
#view > .page-content-header + .detail-wrapper .detail-settings.snq-scrollable > * {
  padding-right: 0.5em;
}
#view > .page-content-header + .detail-wrapper > .detail-info.snq-scrollable.vertical-scroll-visible::-webkit-scrollbar,
#view > .page-content-header + .detail-wrapper .detail-settings.snq-scrollable.vertical-scroll-visible::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}
#view > .page-content-header + .detail-wrapper > .detail-info.snq-scrollable.vertical-scroll-visible > *,
#view > .page-content-header + .detail-wrapper .detail-settings.snq-scrollable.vertical-scroll-visible > * {
  padding-right: 0;
}
#view > .page-content-header + .detail-wrapper > .detail-info.snq-scrollable.vertical-scroll-visible > *.user-profile-avatar > span,
#view > .page-content-header + .detail-wrapper .detail-settings.snq-scrollable.vertical-scroll-visible > *.user-profile-avatar > span {
  width: 100%;
}
#view > .page-content-header + .detail-wrapper > .detail-views {
  height: calc(100vh - 6.627em);
}
#view > .page-content-header + .detail-wrapper > .detail-views.snq-scrollable > * {
  padding-right: 0.5em;
}
#view > .page-content-header + .detail-wrapper > .detail-views.snq-scrollable.vertical-scroll-visible::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}
#view > .page-content-header + .detail-wrapper > .detail-views.snq-scrollable.vertical-scroll-visible > * {
  padding-right: 0;
}
#view > .page-content-header + .detail-wrapper > .detail-views.snq-scrollable.vertical-scroll-visible > *.user-profile-avatar > span {
  width: 100%;
}

/* Mobile Styling */
@media (max-width: 991px) {
  #header {
    left: 0;
    width: 100%;
  }
  .navbar-main-menu {
    -webkit-transition: 200ms ease;
    -o-transition: 200ms ease;
    -ms-transition: 200ms ease;
    -moz-transition: 200ms ease;
    transition: 200ms ease;
  }
  .navbar-main-menu.hidden-xs, .navbar-main-menu.hidden-sm {
    display: block !important;
    -webkit-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .navbar-header {
    left: 0;
    width: 100%;
  }
}
html[data-engine=Gecko] .navbar-main-menu > .menu.vertical-scroll-visible .menu-item,
html[data-engine=Gecko] .navbar-main-menu > .menu.vertical-scroll-visible .menu-item-group-header {
  padding-right: 0;
}
html[data-engine=Gecko] .navbar-main-menu > .menu .menu-item,
html[data-engine=Gecko] .navbar-main-menu > .menu .menu-item-group-header {
  padding-right: 15px;
}

label {
  font-weight: 400;
  color: #5951ff;
}

.gridWrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.gridWrapper.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.queueName {
  color: #5951ff;
  text-transform: uppercase;
}

.userfullName {
  color: #5951ff;
  text-transform: uppercase;
}

.queueInfo {
  color: #070a15;
}

.queueDescription {
  color: #070a15;
}

.detail-views .input-group {
  align-content: center;
}
.detail-views .input-group.flex {
  display: flex;
  align-items: center;
}
.detail-views .input-group.flex input {
  max-width: 25%;
  margin-right: 10px;
}

.detail-views .input-group label {
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 5px;
  margin-bottom: 0;
}

.detail-views .input-group .snq-checkbox label {
  padding: 8px;
}

.tableButton {
  display: inline-flex;
  align-items: center;
  color: #fff;
  border-radius: 5px;
  background-color: #5951ff;
  border: 0;
  padding: 10px 25px;
}
.tableButton:hover {
  background-color: #4138ff;
}
.tableButton:focus {
  outline: 0;
}

#fab-wrapper {
  position: absolute;
  top: 5px;
  right: 5px;
  flex-direction: column;
  align-items: center;
  display: flex;
  z-index: 20;
}
#fab-wrapper.horizontal {
  flex-direction: row-reverse;
}
#fab-wrapper.horizontal .fab-actions {
  flex-direction: row-reverse;
}
#fab-wrapper.horizontal .fab-actions button {
  transform: translateX(60px);
}
#fab-wrapper.horizontal.fabOpen .fab-actions button {
  transform: translateX(0);
  margin-right: 4px;
  margin-top: 0;
}
#fab-wrapper button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 0;
  border-radius: 5px;
  background-color: #5951ff;
  box-shadow: 0px 2px 4px 0px #9f9f9f;
}
#fab-wrapper button i#icon-small {
  font-size: 1.5em;
  color: white;
}
#fab-wrapper .fab-trigger {
  z-index: 24;
}
#fab-wrapper .fab-actions {
  display: flex;
  height: auto;
  flex-direction: column;
}
#fab-wrapper .fab-actions button {
  z-index: 23;
  opacity: 0;
  transform: translateY(-60px);
}
#fab-wrapper .fab-actions button:nth-child(1) {
  transition: all 0.2s cubic-bezier(0.55, 0, 0.55, 0.2);
}
#fab-wrapper .fab-actions button:nth-child(2) {
  transition: all 0.4s cubic-bezier(0.55, 0, 0.55, 0.2);
}
#fab-wrapper .fab-actions button:nth-child(3) {
  transition: all 0.6s cubic-bezier(0.55, 0, 0.55, 0.2);
}
#fab-wrapper.fabOpen .fab-actions button {
  opacity: 1;
  transform: translateY(0);
  margin-top: 4px;
}

.dropdown-toggle {
  text-align: left;
  display: flex;
  align-items: center;
}
.dropdown-toggle .caret {
  margin-left: auto;
}

.settings-theme {
  margin-bottom: 15px;
}

span[disabled] {
  opacity: 0.5;
}

.field-edit {
  display: flex;
  align-items: center;
}
.field-edit span {
  width: auto;
}
.field-edit .edit-icon-wrapper {
  margin-left: 100px;
}

.sticky-action {
  position: fixed;
  background: white;
  width: calc(100% - 580px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 99;
  height: 60px;
  bottom: 0;
  border-top: 1px solid #e6e6e6;
}
.sticky-action .btn:not(:last-child) {
  margin: 0 10px;
}

.metricDashboard-main {
  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: 0 20px;
  background: #fff;
}
.metricDashboard-main .metricDashboard-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: repeat(auto-fill, minmax(50px, 200px));
  gap: 20px 20px;
  padding: 20px;
}
.metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox {
  padding: 10px;
  border-radius: 4px;
}
.metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.available, .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.busy, .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.away {
  background-color: #5951ff;
  color: #fff;
}
.metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.available:hover, .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.busy:hover, .metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.away:hover {
  background-color: #4138ff;
  box-shadow: none;
}
.metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.offline {
  color: #070a15;
  background-color: #ededee;
  border: 1px solid #e6e6e6;
}
.metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox.offline:hover {
  background-color: #e0e0e2;
  box-shadow: none;
}
.metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox .metricDashboard-userBox-header {
  display: flex;
  align-items: center;
}
.metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox .metricDashboard-userBox-header .metricDashboard-userAvatar {
  display: flex;
  position: relative;
  background-color: #fff;
  color: #070a15;
  border-radius: 50%;
  height: 48px;
  width: 48px;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox .metricDashboard-userBox-header .metricDashboard-userInfo {
  margin-left: 5%;
}
.metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox .metricDashboard-userStats {
  margin-top: 10%;
}
.metricDashboard-main .metricDashboard-wrapper .metricDashboard-userBox .metricDashboard-userStats .metricDashboard-userStats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3%;
}
.metricDashboard-main .metricDashboard-userDetails {
  background: #f8f8f8;
  padding: 20px;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-userBox-header {
  display: flex;
  align-items: center;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-userBox-header .metricDashboard-userAvatar {
  display: flex;
  position: relative;
  background-color: #5951ff;
  color: #fff;
  border-radius: 50%;
  height: 48px;
  width: 48px;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-userBox-header .metricDashboard-userInfo {
  margin-left: 5%;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-userStats {
  margin-top: 10%;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-userStats .metricDashboard-userStats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3%;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-userStats .metricDashboard-userStats-row .metricDashboard-userStats-row-title {
  color: #758dbe;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-pbxQueues {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #e6e6e6;
  margin-top: 5px;
  border-radius: 4px;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-pbxQueues a {
  color: #5951ff;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-sectionTitle {
  color: #070a15;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 10px;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox {
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-callData .metricDashboard-callData-mainTitle {
  text-transform: uppercase;
  font-size: 1.5rem;
  padding: 20px 0;
  font-weight: 500;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-callData .metricDashboard-callData-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3%;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-callData .metricDashboard-callData-row .metricDashboard-callData-row-title {
  color: #758dbe;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-Conversations .metricDashboard-Conversations-mainTitle {
  text-transform: uppercase;
  font-size: 1.5rem;
  padding: 20px 0;
  font-weight: 500;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-Conversations .metricDashboard-Conversations-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3%;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-Conversations .metricDashboard-Conversations-row .metricDashboard-Conversations-row-title {
  color: #758dbe;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-navigationButtons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5%;
  padding-bottom: 15px;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-navigationButtons .report-navigation-button {
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  background-color: #5951ff;
  border: 0;
  padding: 5px;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-navigationButtons .report-navigation-button i {
  color: #fff;
  font-size: 2em;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-navigationButtons .report-navigation-button[disabled] {
  background-color: #ededee;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-navigationButtons .report-navigation-button[disabled] i {
  color: #070a15;
}
.metricDashboard-main .metricDashboard-userDetails .metricDashboard-activityBox .metricDashboard-navigationButtons .metricDashboard-navigationButtons-index {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.5rem;
}

.userExtensions {
  display: flex;
  align-items: center;
}
.userExtensions .userExtensions-header {
  font-size: 14px;
  color: #758dbe;
  margin-left: 0.8em;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.userExtensions .userExtensions-hostname {
  margin: 0 30px;
}
.userExtensions .material-icons {
  font-size: 1.33em;
  color: #5951ff;
  padding: 6px;
  border-radius: 5px;
  border: 1.5px solid;
}

.detailsHeader {
  color: #070a15;
  font-size: 14px;
  text-transform: uppercase;
  margin: 20px;
}

#callReport {
  margin-top: 30px;
}
#callReport .callReportTabs {
  list-style: none;
  display: flex;
  align-items: center;
  height: 40px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  padding-left: 18px;
}
#callReport .callReportTabs .callReportTab {
  text-transform: uppercase;
  margin-right: 100px;
}
#callReport .callReportTabs .callReportTab a {
  color: #758dbe;
  font-size: 14px;
}
#callReport .callReportTabs .callReportTab.active a {
  color: #070a15;
  font-size: 16px;
}
#callReport .callReportTable .tableHead {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-transform: uppercase;
  color: #758dbe;
  height: 20px;
  border-bottom: 1px solid #e6e6e6;
  align-items: center;
}
#callReport .callReportTable .tableHead .headRecords {
  grid-template-columns: repeat(5, 75px 500px 160px 160px 1fr);
}
#callReport .callReportTable .tableHead div {
  padding: 0 20px;
}
#callReport .callReportTable .tableRow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 35px 1fr;
  margin: 2px 0;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  align-items: center;
}
#callReport .callReportTable .tableRow > div {
  padding: 0 20px;
}
#callReport .callReportTable .tableRow.rowRecordings {
  padding: 10px 0;
}
#callReport .callReportTable .tableRow.rowRecordings .audioCell {
  display: flex;
  align-items: center;
}
#callReport .callReportTable .tableRow.rowRecordings .audioCell button {
  margin-left: 10px;
}
#callReport .callReportTable .tableRow .rowExpended {
  grid-column-start: 1;
  grid-column-end: 6;
  grid-row-start: 2;
  grid-row-end: 2;
  background: #ededee;
}
#callReport .callReportTable .tableRow .rowExpended .tableHead {
  grid-template-columns: repeat(3, 175px [col-start] 250px [col-middle] auto [col-end]);
}
#callReport .callReportTable .tableRow .rowExpended .detailsHeaderInner {
  color: #070a15;
  font-size: 16px;
  text-transform: uppercase;
  margin: 20px;
}
#callReport .callReportTable .tableRow .rowExpended .tableRow {
  overflow: auto;
  grid-template-columns: 175px [col-start] 250px [col-middle] auto [col-end];
  border: none;
}

#routing-rules .header-row {
  -webkit-flex-direction: row;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
  padding: 15px;
}
#routing-rules .header-row button {
  outline: none;
  text-transform: uppercase;
}
#routing-rules .header-row button .caret {
  margin-left: 10px;
}
#routing-rules .header-row .render-range {
  margin: 0 15px;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 16px;
}
#routing-rules .header-row #today-navi {
  margin-left: 5px;
}
#routing-rules .header-row #menu-navi {
  display: flex;
  align-items: center;
}
#routing-rules #calendar .dayName {
  color: #070a15;
  text-transform: uppercase;
}
#routing-rules #calendar .dayName.weekendDay {
  color: #758dbe;
}
#routing-rules #calendar .dayNumber.weekendDayNumber {
  color: #758dbe;
}
#routing-rules #calendar .tui-full-calendar-weekday-grid .tui-full-calendar-holiday-sat, #routing-rules #calendar .tui-full-calendar-weekday-grid .tui-full-calendar-holiday-sun {
  background: #ededee;
}
#routing-rules #calendar .isToday {
  color: #fff;
  background: #5951ff;
  border-radius: 50%;
}

/*# sourceMappingURL=synq.css.map */
