/* === Design Tokens === */
:root {
  --color-primary: #0976bc;
  --color-primary-light: #0e8fd8;
  --color-primary-dark: #0762a0;
  --color-sidebar-bg: #0d1629;
  --color-sidebar-surface: #0f2041;
  --color-accent: #059669;
  --color-accent-hover: #047857;
  --color-text-base: #1e293b;
  --color-text-muted: #64748b;
  --color-surface: #ffffff;
  --color-border: #e2e8f0;
  --color-sidebar-hover: rgba(255,255,255,0.10);
  --color-sidebar-active: rgba(9,118,188,0.20);
  --sidebar-width-collapsed: 70px;
  --sidebar-width-expanded: 250px;
  --transition-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --font-body: 'Montserrat', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  --font-display: 'Montserrat', var(--font-body);
}

/* Critical Subscription Warning Banner */
.subscription-warning-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  z-index: 10001;
  /* Higher than sidebar z-index of 2000 */
  padding: 8px 20px 8px 90px;
  /* Add left padding to avoid sidebar overlap */
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  border-bottom: 3px solid #7f1d1d;
  animation: slideDown 0.5s ease-out;
  min-height: 50px;
  display: flex;
  align-items: center;
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  width: 100%;
}

.warning-icon {
  font-size: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  flex-shrink: 0;
}

.warning-text {
  flex: 1;
  min-width: 0;
}

.warning-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.warning-text p {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
  opacity: 0.95;
}

.expiry-date,
.termination-countdown {
  font-weight: 600;
  background: rgba(255, 255, 255, 0.25);
  padding: 1px 4px;
  border-radius: 3px;
  white-space: nowrap;
  font-size: 12px;
}

.warning-text a {
  color: #fef3c7;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}

.warning-text a:hover {
  color: #fde68a;
}

.banner-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 18px;
  font-weight: bold;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  line-height: 1;
}

.banner-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.banner-close-btn:active {
  transform: scale(0.95);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Adjust sidebar and main content to accommodate banner */
.left-sidebar {
  padding-top: 120px !important;
  /* Original 70px + banner height 50px */
}

/* Ensure main content doesn't overlap with banner */
#main-wrapper {
  padding-top: 50px;
}

.subscription-warning-banner.expiring {
  background: linear-gradient(135deg, #d97706, #b45309);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
  border-bottom-color: #78350f;
}

/* Tenant Alert Banner */
.tenant-alert-banner {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  border-bottom-color: #7f1d1d;
  top: 50px; /* stack below subscription banner if both visible */
}
.tenant-alert-banner.alert-orange {
  background: linear-gradient(135deg, #d97706, #b45309);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
  border-bottom-color: #78350f;
}
.tenant-alert-banner .tenant-alert-message {
  margin: 2px 0 4px;
}

.subscription-warning-banner.hidden {
  display: none;
}

/* When banner is hidden, restore original layout */
.subscription-warning-banner.hidden~.wrapper .left-sidebar {
  padding-top: 70px !important;
}

.subscription-warning-banner.hidden~.wrapper #main-wrapper {
  padding-top: 0;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .subscription-warning-banner {
    padding: 8px 16px;
    min-height: 45px;
  }

  .banner-content {
    gap: 10px;
  }

  .warning-icon {
    font-size: 18px;
  }

  .warning-text strong {
    font-size: 13px;
  }

  .warning-text p {
    font-size: 11px;
  }

  .banner-close-btn {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }

  .left-sidebar {
    padding-top: 115px !important;
  }

  #main-wrapper {
    padding-top: 45px;
  }
}

@media (max-width: 480px) {
  .subscription-warning-banner {
    padding: 6px 12px 6px 80px;
    min-height: 55px;
  }

  .banner-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
  }

  .warning-text {
    padding-top: 2px;
  }

  .warning-text strong {
    font-size: 12px;
    margin-bottom: 3px;
  }

  .warning-text p {
    font-size: 10px;
    line-height: 1.4;
  }

  .banner-close-btn {
    position: absolute;
    top: 6px;
    right: 12px;
    width: 20px;
    height: 20px;
    font-size: 14px;
  }

  .left-sidebar {
    padding-top: 125px !important;
  }

  #main-wrapper {
    padding-top: 55px;
  }
}

#hostFrame ::-webkit-scrollbar {
  width: 0;
  /* Remove scrollbar space */
  background: transparent;
  /* Optional: just make scrollbar invisible */
}

/* Optional: show position indicator in red */
#hostFrame ::-webkit-scrollbar-thumb {
  background: #FF0000;
}

/* === In-App Subscription Alert (Knockout-bound, inside tenant app frame) === */
/* Subscription warning is now handled by the portal-shell banner (#subscription-warning-banner).
   The in-app Knockout component is suppressed to avoid duplicate alerts. */
.subscription-alert {
  display: none !important;
}

.subscription-alert.alert-reminder {
  background: #fffbeb;
  border-color: #fcd34d;
}

.subscription-alert.alert-critical {
  background: #fef2f2;
  border-color: #fca5a5;
}

.subscription-alert-content {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  width: 100%;
}

.subscription-alert .alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 17px;
}

.subscription-alert.alert-reminder .alert-icon {
  background: #fef3c7;
  color: #d97706;
}

.subscription-alert.alert-critical .alert-icon {
  background: #fee2e2;
  color: #dc2626;
}

.subscription-alert .alert-body {
  flex: 1;
  min-width: 0;
}

.subscription-alert .alert-title {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 3px;
  line-height: 1.3;
}

.subscription-alert.alert-reminder .alert-title {
  color: #92400e;
}

.subscription-alert.alert-critical .alert-title {
  color: #991b1b;
}

.subscription-alert .alert-message {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 3px;
  line-height: 1.4;
}

.subscription-alert .alert-contact {
  font-size: 11px;
  color: #94a3b8;
}

.subscription-alert .contact-link {
  color: #0976bc;
  text-decoration: none;
  font-weight: 600;
}

.subscription-alert .contact-link:hover {
  text-decoration: underline;
}

.subscription-alert .alert-actions {
  flex-shrink: 0;
}

.subscription-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
}

.alert-reminder .subscription-details-btn {
  background: #d97706;
  color: #fff;
}

.alert-reminder .subscription-details-btn:hover {
  background: #b45309;
}

.alert-critical .subscription-details-btn {
  background: #dc2626;
  color: #fff;
}

.alert-critical .subscription-details-btn:hover {
  background: #b91c1c;
}

.subscription-details-btn:active {
  transform: scale(0.96);
}

@media (max-width: 600px) {
  .subscription-alert-content {
    flex-wrap: wrap;
    gap: 10px;
  }

  .subscription-alert .alert-actions {
    width: 100%;
  }

  .subscription-details-btn {
    width: 100%;
    justify-content: center;
  }
}
/* === End Subscription Alert === */

/*! jQuery UI - v1.13.0 - 2021-10-07
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?bgShadowXPos=&bgOverlayXPos=&bgErrorXPos=&bgHighlightXPos=&bgContentXPos=&bgHeaderXPos=&bgActiveXPos=&bgHoverXPos=&bgDefaultXPos=&bgShadowYPos=&bgOverlayYPos=&bgErrorYPos=&bgHighlightYPos=&bgContentYPos=&bgHeaderYPos=&bgActiveYPos=&bgHoverYPos=&bgDefaultYPos=&bgShadowRepeat=&bgOverlayRepeat=&bgErrorRepeat=&bgHighlightRepeat=&bgContentRepeat=&bgHeaderRepeat=&bgActiveRepeat=&bgHoverRepeat=&bgDefaultRepeat=&iconsHover=url(%22images%2Fui-icons_555555_256x240.png%22)&iconsHighlight=url(%22images%2Fui-icons_777620_256x240.png%22)&iconsHeader=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsError=url(%22images%2Fui-icons_cc0000_256x240.png%22)&iconsDefault=url(%22images%2Fui-icons_777777_256x240.png%22)&iconsContent=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsActive=url(%22images%2Fui-icons_ffffff_256x240.png%22)&bgImgUrlShadow=&bgImgUrlOverlay=&bgImgUrlHover=&bgImgUrlHighlight=&bgImgUrlHeader=&bgImgUrlError=&bgImgUrlDefault=&bgImgUrlContent=&bgImgUrlActive=&opacityFilterShadow=Alpha(Opacity%3D30)&opacityFilterOverlay=Alpha(Opacity%3D30)&opacityShadowPerc=30&opacityOverlayPerc=30&iconColorHover=%23555555&iconColorHighlight=%23777620&iconColorHeader=%23444444&iconColorError=%23cc0000&iconColorDefault=%23777777&iconColorContent=%23444444&iconColorActive=%23ffffff&bgImgOpacityShadow=0&bgImgOpacityOverlay=0&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityContent=75&bgImgOpacityHeader=75&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgTextureShadow=flat&bgTextureOverlay=flat&bgTextureError=flat&bgTextureHighlight=flat&bgTextureContent=flat&bgTextureHeader=flat&bgTextureActive=flat&bgTextureHover=flat&bgTextureDefault=flat&cornerRadius=3px&fwDefault=normal&ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&cornerRadiusShadow=8px&thicknessShadow=5px&offsetLeftShadow=0px&offsetTopShadow=0px&opacityShadow=.3&bgColorShadow=%23666666&opacityOverlay=.3&bgColorOverlay=%23aaaaaa&fcError=%235f3f3f&borderColorError=%23f1a899&bgColorError=%23fddfdf&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgColorHighlight=%23fffa90&fcContent=%23333333&borderColorContent=%23dddddd&bgColorContent=%23ffffff&fcHeader=%23333333&borderColorHeader=%23dddddd&bgColorHeader=%23e9e9e9&fcActive=%23ffffff&borderColorActive=%23003eff&bgColorActive=%23007fff&fcHover=%232b2b2b&borderColorHover=%23cccccc&bgColorHover=%23ededed&fcDefault=%23454545&borderColorDefault=%23c5c5c5&bgColorDefault=%23f6f6f6
* Copyright jQuery Foundation and other contributors; Licensed MIT */

.ui-helper-hidden {
  display: none
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse
}

.ui-helper-clearfix:after {
  clear: both
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  -ms-filter: "alpha(opacity=0)"
}

.ui-front {
  z-index: 100
}

.ui-state-disabled {
  cursor: default !important;
  pointer-events: none
}

.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block
}

.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: .5em .5em .5em .7em;
  font-size: 100%
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto
}

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default
}

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0
}

.ui-menu .ui-menu {
  position: absolute
}

.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px .4em
}

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px
}

.ui-menu-icons {
  position: relative
}

.ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em
}

.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: .2em;
  margin: auto 0
}

.ui-menu .ui-menu-icon {
  left: auto;
  right: 0
}

.ui-button {
  padding: .4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: .1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: visible
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none
}

.ui-button-icon-only {
  width: 2em;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap
}

input.ui-button.ui-button-icon-only {
  text-indent: 0
}

.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px
}

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap
}

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: .4em 1em
}

input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0
}

.ui-controlgroup {
  vertical-align: middle;
  display: inline-block
}

.ui-controlgroup>.ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0
}

.ui-controlgroup>.ui-controlgroup-item:focus,
.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus {
  z-index: 9999
}

.ui-controlgroup-vertical>.ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left
}

.ui-controlgroup-vertical .ui-controlgroup-item {
  box-sizing: border-box
}

.ui-controlgroup .ui-controlgroup-label {
  padding: .4em 1em
}

.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%
}

.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item {
  border-left: none
}

.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item {
  border-top: none
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none
}

.ui-controlgroup-vertical .ui-spinner-input {
  width: 75%;
  width: calc(100% - 2.4em)
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid
}

.ui-checkboxradio-label .ui-icon-background {
  box-shadow: inset 1px 1px 1px #ccc;
  border-radius: .12em;
  border: none
}

.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid
}

.ui-checkboxradio-disabled {
  pointer-events: none
}

.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px
}

.ui-datepicker .ui-datepicker-next {
  right: 2px
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%
}

.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em
}

.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0
}

.ui-datepicker td {
  border: 0;
  padding: 1px
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left
}

.ui-datepicker.ui-datepicker-multi {
  width: auto
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0
}

.ui-datepicker-rtl {
  direction: rtl
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px
}

.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: .5em;
  top: .3em
}

.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  outline: 0
}

.ui-dialog .ui-dialog-titlebar {
  padding: .4em 1em;
  position: relative
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: .1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: .5em 1em;
  background: none;
  overflow: auto
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: .5em .4em .5em 0;
  cursor: pointer
}

.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0
}

.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0
}

.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0
}

.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0
}

.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px
}

.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0
}

.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0
}

.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0
}

.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move
}

.ui-draggable-handle {
  touch-action: none
}

.ui-resizable {
  position: relative
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  touch-action: none
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px
}

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%
}

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  -ms-filter: "alpha(opacity=25)";
  opacity: 0.25
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none
}

.ui-selectable {
  touch-action: none
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0
}

.ui-selectmenu-open {
  display: block
}

.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis
}

.ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em
}

.ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0
}

.ui-slider {
  position: relative;
  text-align: left
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: pointer;
  touch-action: none
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0
}

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit
}

.ui-slider-horizontal {
  height: .8em
}

.ui-slider-horizontal .ui-slider-handle {
  top: -.3em;
  margin-left: -.6em
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0
}

.ui-slider-vertical {
  width: .8em;
  height: 100px
}

.ui-slider-vertical .ui-slider-handle {
  left: -.3em;
  margin-left: 0;
  margin-bottom: -.6em
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0
}

.ui-sortable-handle {
  touch-action: none
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle
}

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: .222em 0;
  margin: .2em 0;
  vertical-align: middle;
  margin-left: .4em;
  margin-right: 2em
}

.ui-spinner-button {
  width: 1.6em;
  height: 50%;
  font-size: .5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0
}

.ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none
}

.ui-spinner-up {
  top: 0
}

.ui-spinner-down {
  bottom: 0
}

.ui-tabs {
  position: relative;
  padding: .2em
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: .2em .2em 0
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px .2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: .5em 1em;
  text-decoration: none
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px
}

body .ui-tooltip {
  border-width: 2px
}

.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em
}

.ui-widget .ui-widget {
  font-size: 1em
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5
}

.ui-widget-content {
  border: 1px solid #ddd;
  background: #fff;
  color: #333
}

.ui-widget-content a {
  color: #333
}

.ui-widget-header {
  border: 1px solid #ddd;
  background: #e9e9e9;
  color: #333;
  font-weight: bold
}

.ui-widget-header a {
  color: #333
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #ccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px rgb(94, 158, 214)
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #fff
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #fff
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #fff;
  text-decoration: none
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  -ms-filter: "alpha(opacity=70)";
  font-weight: normal
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  -ms-filter: "alpha(opacity=35)";
  background-image: none
}

.ui-state-disabled .ui-icon {
  -ms-filter: "alpha(opacity=35)"
}

.ui-icon {
  width: 16px;
  height: 16px
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png")
}

.ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png")
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("images/ui-icons_555555_256x240.png")
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.png")
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("images/ui-icons_777620_256x240.png")
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_cc0000_256x240.png")
}

.ui-button .ui-icon {
  background-image: url("images/ui-icons_777777_256x240.png")
}

.ui-icon-blank.ui-icon-blank.ui-icon-blank {
  background-image: none
}

.ui-icon-caret-1-n {
  background-position: 0 0
}

.ui-icon-caret-1-ne {
  background-position: -16px 0
}

.ui-icon-caret-1-e {
  background-position: -32px 0
}

.ui-icon-caret-1-se {
  background-position: -48px 0
}

.ui-icon-caret-1-s {
  background-position: -65px 0
}

.ui-icon-caret-1-sw {
  background-position: -80px 0
}

.ui-icon-caret-1-w {
  background-position: -96px 0
}

.ui-icon-caret-1-nw {
  background-position: -112px 0
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px
}

.ui-icon-arrow-4 {
  background-position: 0 -80px
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px
}

.ui-icon-extlink {
  background-position: -32px -80px
}

.ui-icon-newwin {
  background-position: -48px -80px
}

.ui-icon-refresh {
  background-position: -64px -80px
}

.ui-icon-shuffle {
  background-position: -80px -80px
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px
}

.ui-icon-folder-open {
  background-position: -16px -96px
}

.ui-icon-document {
  background-position: -32px -96px
}

.ui-icon-document-b {
  background-position: -48px -96px
}

.ui-icon-note {
  background-position: -64px -96px
}

.ui-icon-mail-closed {
  background-position: -80px -96px
}

.ui-icon-mail-open {
  background-position: -96px -96px
}

.ui-icon-suitcase {
  background-position: -112px -96px
}

.ui-icon-comment {
  background-position: -128px -96px
}

.ui-icon-person {
  background-position: -144px -96px
}

.ui-icon-print {
  background-position: -160px -96px
}

.ui-icon-trash {
  background-position: -176px -96px
}

.ui-icon-locked {
  background-position: -192px -96px
}

.ui-icon-unlocked {
  background-position: -208px -96px
}

.ui-icon-bookmark {
  background-position: -224px -96px
}

.ui-icon-tag {
  background-position: -240px -96px
}

.ui-icon-home {
  background-position: 0 -112px
}

.ui-icon-flag {
  background-position: -16px -112px
}

.ui-icon-calendar {
  background-position: -32px -112px
}

.ui-icon-cart {
  background-position: -48px -112px
}

.ui-icon-pencil {
  background-position: -64px -112px
}

.ui-icon-clock {
  background-position: -80px -112px
}

.ui-icon-disk {
  background-position: -96px -112px
}

.ui-icon-calculator {
  background-position: -112px -112px
}

.ui-icon-zoomin {
  background-position: -128px -112px
}

.ui-icon-zoomout {
  background-position: -144px -112px
}

.ui-icon-search {
  background-position: -160px -112px
}

.ui-icon-wrench {
  background-position: -176px -112px
}

.ui-icon-gear {
  background-position: -192px -112px
}

.ui-icon-heart {
  background-position: -208px -112px
}

.ui-icon-star {
  background-position: -224px -112px
}

.ui-icon-link {
  background-position: -240px -112px
}

.ui-icon-cancel {
  background-position: 0 -128px
}

.ui-icon-plus {
  background-position: -16px -128px
}

.ui-icon-plusthick {
  background-position: -32px -128px
}

.ui-icon-minus {
  background-position: -48px -128px
}

.ui-icon-minusthick {
  background-position: -64px -128px
}

.ui-icon-close {
  background-position: -80px -128px
}

.ui-icon-closethick {
  background-position: -96px -128px
}

.ui-icon-key {
  background-position: -112px -128px
}

.ui-icon-lightbulb {
  background-position: -128px -128px
}

.ui-icon-scissors {
  background-position: -144px -128px
}

.ui-icon-clipboard {
  background-position: -160px -128px
}

.ui-icon-copy {
  background-position: -176px -128px
}

.ui-icon-contact {
  background-position: -192px -128px
}

.ui-icon-image {
  background-position: -208px -128px
}

.ui-icon-video {
  background-position: -224px -128px
}

.ui-icon-script {
  background-position: -240px -128px
}

.ui-icon-alert {
  background-position: 0 -144px
}

.ui-icon-info {
  background-position: -16px -144px
}

.ui-icon-notice {
  background-position: -32px -144px
}

.ui-icon-help {
  background-position: -48px -144px
}

.ui-icon-check {
  background-position: -64px -144px
}

.ui-icon-bullet {
  background-position: -80px -144px
}

.ui-icon-radio-on {
  background-position: -96px -144px
}

.ui-icon-radio-off {
  background-position: -112px -144px
}

.ui-icon-pin-w {
  background-position: -128px -144px
}

.ui-icon-pin-s {
  background-position: -144px -144px
}

.ui-icon-play {
  background-position: 0 -160px
}

.ui-icon-pause {
  background-position: -16px -160px
}

.ui-icon-seek-next {
  background-position: -32px -160px
}

.ui-icon-seek-prev {
  background-position: -48px -160px
}

.ui-icon-seek-end {
  background-position: -64px -160px
}

.ui-icon-seek-start {
  background-position: -80px -160px
}

.ui-icon-seek-first {
  background-position: -80px -160px
}

.ui-icon-stop {
  background-position: -96px -160px
}

.ui-icon-eject {
  background-position: -112px -160px
}

.ui-icon-volume-off {
  background-position: -128px -160px
}

.ui-icon-volume-on {
  background-position: -144px -160px
}

.ui-icon-power {
  background-position: 0 -176px
}

.ui-icon-signal-diag {
  background-position: -16px -176px
}

.ui-icon-signal {
  background-position: -32px -176px
}

.ui-icon-battery-0 {
  background-position: -48px -176px
}

.ui-icon-battery-1 {
  background-position: -64px -176px
}

.ui-icon-battery-2 {
  background-position: -80px -176px
}

.ui-icon-battery-3 {
  background-position: -96px -176px
}

.ui-icon-circle-plus {
  background-position: 0 -192px
}

.ui-icon-circle-minus {
  background-position: -16px -192px
}

.ui-icon-circle-close {
  background-position: -32px -192px
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px
}

.ui-icon-circle-check {
  background-position: -208px -192px
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px
}

.ui-widget-overlay {
  background: #aaa;
  opacity: .003;
  -ms-filter: Alpha(Opacity=.3)
}

.ui-widget-shadow {
  box-shadow: 0 0 5px #666
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?kzwtmc");
  src: url("../fonts/icomoon.eot?kzwtmc#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?kzwtmc") format("truetype"), url("../fonts/icomoon.woff?kzwtmc") format("woff"), url("../fonts/icomoon.svg?kzwtmc#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-right:before {
  content: "\e905";
}

.icon-cart:before {
  content: "\e914";
}

.icon-dashboard-view-1:before {
  content: "\e906";
}

.icon-dropdown-arrow:before {
  content: "\e918";
}

.icon-help:before {
  content: "\e90a";
}

.icon-home:before {
  content: "\e90b";
}

.icon-icon:before {
  content: "\e90c";
}

.icon-download:before {
  content: "\e90d";
}

.icon-pen:before {
  content: "\e90e";
}

.icon-plus:before {
  content: "\e90f";
}

.icon-print:before {
  content: "\e910";
}

.icon-refresh:before {
  content: "\e911";
}

.icon-star:before {
  content: "\e912";
}

.icon-trash:before {
  content: "\e913";
}

.icon-left-arrow:before {
  content: "\e915";
}

.icon-logo:before {
  content: "\e916";
}

.icon-search:before {
  content: "\e917";
}

.icon-settings-icon:before {
  content: "\e91a";
}

.icon-text-line:before {
  content: "\e91b";
}

.icon-user:before {
  content: "\e91c";
}

.icon-user-nav:before {
  content: "\e91d";
}

/*!
 * =============================================================
 * dropify v0.2.1 - Override your input files with style.
 * https://github.com/JeremyFagis/dropify
 *
 * (c) 2017 - Jeremy FAGIS <jeremy@fagis.fr> (http://fagis.fr)
 * =============================================================
 */
@font-face {
  font-family: "dropify";
  src: url("../fonts/dropify.eot");
  src: url("../fonts/dropify.eot#iefix") format("embedded-opentype"), url("../fonts/dropify.woff") format("woff"), url("../fonts/dropify.ttf") format("truetype"), url("../fonts/dropify.svg#dropify") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^=dropify-font-]:before,
[class*=" dropify-font-"]:before,
.dropify-font:before,
.dropify-wrapper .dropify-message span.file-icon:before {
  font-family: "dropify";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-left: 0.2em;
  margin-right: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
}

.dropify-font-upload:before,
.dropify-wrapper .dropify-message span.file-icon:before {
  content: "\e800";
}

.dropify-font-file:before {
  content: "\e801";
}

.dropify-wrapper {
  display: block;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 200px;
  padding: 5px 10px;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial";
  font-size: 14px;
  line-height: 22px;
  color: #777;
  background-color: #FFF;
  background-image: none;
  text-align: center;
  border: 2px solid #E5E5E5;
  transition: border-color 0.15s linear;
}

.dropify-wrapper:hover {
  background-size: 30px 30px;
  background-image: linear-gradient(-45deg, #F6F6F6 25%, transparent 25%, transparent 50%, #F6F6F6 50%, #F6F6F6 75%, transparent 75%, transparent);
  -webkit-animation: stripes 2s linear infinite;
  animation: stripes 2s linear infinite;
}

.dropify-wrapper.has-preview .dropify-clear {
  display: block;
}

.dropify-wrapper.has-error {
  border-color: #F34141;
}

.dropify-wrapper.has-error .dropify-message .dropify-error {
  display: block;
}

.dropify-wrapper.has-error:hover .dropify-errors-container {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.dropify-wrapper.disabled input {
  cursor: not-allowed;
}

.dropify-wrapper.disabled:hover {
  background-image: none;
  -webkit-animation: none;
  animation: none;
}

.dropify-wrapper.disabled .dropify-message {
  opacity: 0.5;
  text-decoration: line-through;
}

.dropify-wrapper.disabled .dropify-infos-message {
  display: none;
}

.dropify-wrapper input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 5;
}

.dropify-wrapper .dropify-message {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.dropify-wrapper .dropify-message span.file-icon {
  font-size: 50px;
  color: #CCC;
}

.dropify-wrapper .dropify-message p {
  margin: 5px 0 0 0;
}

.dropify-wrapper .dropify-message p.dropify-error {
  color: #F34141;
  font-weight: bold;
  display: none;
}

.dropify-wrapper .dropify-clear {
  display: none;
  position: absolute;
  opacity: 0;
  z-index: 7;
  top: 10px;
  right: 10px;
  background: none;
  border: 2px solid #FFF;
  text-transform: uppercase;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial";
  font-size: 11px;
  padding: 4px 8px;
  font-weight: bold;
  color: #FFF;
  transition: all 0.15s linear;
}

.dropify-wrapper .dropify-clear:hover {
  background: rgba(255, 255, 255, 0.2);
}

.dropify-wrapper .dropify-preview {
  display: none;
  position: absolute;
  z-index: 1;
  background-color: #FFF;
  padding: 5px;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  text-align: center;
}

.dropify-wrapper .dropify-preview .dropify-render img {
  top: 50%;
  transform: translate(0, -50%);
  position: relative;
  max-width: 100%;
  max-height: 100%;
  background-color: #FFF;
  transition: border-color 0.15s linear;
}

.dropify-wrapper .dropify-preview .dropify-render i {
  font-size: 70px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  color: #777;
}

.dropify-wrapper .dropify-preview .dropify-render .dropify-extension {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 13px;
  width: 42px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropify-wrapper .dropify-preview .dropify-infos {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.15s linear;
}

.dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner {
  position: absolute;
  top: 50%;
  transform: translate(0, -40%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  padding: 0 20px;
  transition: all 0.2s ease;
}

.dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner p {
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #FFF;
  text-align: center;
  line-height: 25px;
  font-weight: bold;
}

.dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-infos-message {
  margin-top: 15px;
  padding-top: 15px;
  font-size: 12px;
  position: relative;
  opacity: 0.5;
}

.dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-infos-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: #FFF;
  width: 30px;
  height: 2px;
}

.dropify-wrapper:hover .dropify-clear {
  opacity: 1;
}

.dropify-wrapper:hover .dropify-preview .dropify-infos {
  opacity: 1;
}

.dropify-wrapper:hover .dropify-preview .dropify-infos .dropify-infos-inner {
  margin-top: -5px;
}

.dropify-wrapper.touch-fallback {
  height: auto !important;
}

.dropify-wrapper.touch-fallback:hover {
  background-image: none;
  -webkit-animation: none;
  animation: none;
}

.dropify-wrapper.touch-fallback .dropify-preview {
  position: relative;
  padding: 0;
}

.dropify-wrapper.touch-fallback .dropify-preview .dropify-render {
  display: block;
  position: relative;
}

.dropify-wrapper.touch-fallback .dropify-preview .dropify-render .dropify-font-file {
  position: relative;
  transform: translate(0, 0);
  top: 0;
  left: 0;
}

.dropify-wrapper.touch-fallback .dropify-preview .dropify-render .dropify-font-file::before {
  margin-top: 30px;
  margin-bottom: 30px;
}

.dropify-wrapper.touch-fallback .dropify-preview .dropify-render img {
  position: relative;
  transform: translate(0, 0);
}

.dropify-wrapper.touch-fallback .dropify-preview .dropify-infos {
  position: relative;
  opacity: 1;
  background: transparent;
}

.dropify-wrapper.touch-fallback .dropify-preview .dropify-infos .dropify-infos-inner {
  position: relative;
  top: 0;
  transform: translate(0, 0);
  padding: 5px 90px 5px 0;
}

.dropify-wrapper.touch-fallback .dropify-preview .dropify-infos .dropify-infos-inner p {
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #777;
  text-align: left;
  line-height: 25px;
}

.dropify-wrapper.touch-fallback .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-filename {
  font-weight: bold;
}

.dropify-wrapper.touch-fallback .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-infos-message {
  margin-top: 0;
  padding-top: 0;
  font-size: 11px;
  position: relative;
  opacity: 1;
}

.dropify-wrapper.touch-fallback .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-infos-message::before {
  display: none;
}

.dropify-wrapper.touch-fallback .dropify-message {
  transform: translate(0, 0);
  padding: 40px 0;
}

.dropify-wrapper.touch-fallback .dropify-clear {
  top: auto;
  bottom: 23px;
  opacity: 1;
  border-color: rgba(119, 119, 119, 0.7);
  color: #777;
}

.dropify-wrapper.touch-fallback.has-preview .dropify-message {
  display: none;
}

.dropify-wrapper.touch-fallback:hover .dropify-preview .dropify-infos .dropify-infos-inner {
  margin-top: 0;
}

.dropify-wrapper .dropify-loader {
  position: absolute;
  top: 15px;
  right: 15px;
  display: none;
  z-index: 9;
}

.dropify-wrapper .dropify-loader::after {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  -webkit-animation: rotate 0.6s linear infinite;
  animation: rotate 0.6s linear infinite;
  border-radius: 100%;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #777;
  border-left: 1px solid #CCC;
  border-right: 1px solid #777;
  content: "";
}

.dropify-wrapper .dropify-errors-container {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(243, 65, 65, 0.8);
  text-align: left;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.15s, opacity 0.15s linear;
}

.dropify-wrapper .dropify-errors-container ul {
  padding: 10px 20px;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.dropify-wrapper .dropify-errors-container ul li {
  margin-left: 20px;
  color: #FFF;
  font-weight: bold;
}

.dropify-wrapper .dropify-errors-container.visible {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.dropify-wrapper~.dropify-errors-container ul {
  padding: 0;
  margin: 15px 0;
}

.dropify-wrapper~.dropify-errors-container ul li {
  margin-left: 20px;
  color: #F34141;
  font-weight: bold;
}

@-webkit-keyframes stripes {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 60px 30px;
  }
}

@keyframes stripes {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 60px 30px;
  }
}

@-webkit-keyframes rotate {
  0% {
    transform: rotateZ(-360deg);
  }

  100% {
    transform: rotateZ(0deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotateZ(-360deg);
  }

  100% {
    transform: rotateZ(0deg);
  }
}

table.dataTable {
  width: 100%;
  margin: 0 auto;
  clear: both;
  border-collapse: separate;
  border-spacing: 0;
}

table.dataTable thead th,
table.dataTable tfoot th {
  font-weight: bold;
}

table.dataTable thead th,
table.dataTable thead td {
  padding: 10px 18px;
  border-bottom: 1px solid #111;
}

table.dataTable thead th:active,
table.dataTable thead td:active {
  outline: none;
}

table.dataTable tfoot th,
table.dataTable tfoot td {
  padding: 10px 18px 6px 18px;
  border-top: 1px solid #111;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  *cursor: hand;
  background-repeat: no-repeat;
  background-position: center right;
}

table.dataTable thead .sorting {
  background-image: url("../images/sort_both.png");
}

table.dataTable thead .sorting_asc {
  background-image: url("../images/sort_asc.png");
}

table.dataTable thead .sorting_desc {
  background-image: url("../images/sort_desc.png");
}

table.dataTable thead .sorting_asc_disabled {
  background-image: url("../images/sort_asc_disabled.png");
}

table.dataTable thead .sorting_desc_disabled {
  background-image: url("../images/sort_desc_disabled.png");
}

table.dataTable tbody tr {
  background-color: #ffffff;
}

table.dataTable tbody tr.selected {
  background-color: #B0BED9;
}

table.dataTable tbody th,
table.dataTable tbody td {
  padding: 8px 10px;
}

table.dataTable.row-border tbody th,
table.dataTable.row-border tbody td,
table.dataTable.display tbody th,
table.dataTable.display tbody td {
  border-top: 1px solid #ddd;
}

table.dataTable.row-border tbody tr:first-child th,
table.dataTable.row-border tbody tr:first-child td,
table.dataTable.display tbody tr:first-child th,
table.dataTable.display tbody tr:first-child td {
  border-top: none;
}

table.dataTable.cell-border tbody th,
table.dataTable.cell-border tbody td {
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

table.dataTable.cell-border tbody tr th:first-child,
table.dataTable.cell-border tbody tr td:first-child {
  border-left: 1px solid #ddd;
}

table.dataTable.cell-border tbody tr:first-child th,
table.dataTable.cell-border tbody tr:first-child td {
  border-top: none;
}

table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd {
  background-color: #f9f9f9;
}

table.dataTable.stripe tbody tr.odd.selected,
table.dataTable.display tbody tr.odd.selected {
  background-color: #acbad4;
}

table.dataTable.hover tbody tr:hover,
table.dataTable.display tbody tr:hover {
  background-color: #f6f6f6;
}

table.dataTable.hover tbody tr:hover.selected,
table.dataTable.display tbody tr:hover.selected {
  background-color: #aab7d1;
}

table.dataTable.order-column tbody tr>.sorting_1,
table.dataTable.order-column tbody tr>.sorting_2,
table.dataTable.order-column tbody tr>.sorting_3,
table.dataTable.display tbody tr>.sorting_1,
table.dataTable.display tbody tr>.sorting_2,
table.dataTable.display tbody tr>.sorting_3 {
  background-color: #fafafa;
}

table.dataTable.order-column tbody tr.selected>.sorting_1,
table.dataTable.order-column tbody tr.selected>.sorting_2,
table.dataTable.order-column tbody tr.selected>.sorting_3,
table.dataTable.display tbody tr.selected>.sorting_1,
table.dataTable.display tbody tr.selected>.sorting_2,
table.dataTable.display tbody tr.selected>.sorting_3 {
  background-color: #acbad5;
}

table.dataTable.display tbody tr.odd>.sorting_1,
table.dataTable.order-column.stripe tbody tr.odd>.sorting_1 {
  background-color: #f1f1f1;
}

table.dataTable.display tbody tr.odd>.sorting_2,
table.dataTable.order-column.stripe tbody tr.odd>.sorting_2 {
  background-color: #f3f3f3;
}

table.dataTable.display tbody tr.odd>.sorting_3,
table.dataTable.order-column.stripe tbody tr.odd>.sorting_3 {
  background-color: whitesmoke;
}

table.dataTable.display tbody tr.odd.selected>.sorting_1,
table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1 {
  background-color: #a6b4cd;
}

table.dataTable.display tbody tr.odd.selected>.sorting_2,
table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2 {
  background-color: #a8b5cf;
}

table.dataTable.display tbody tr.odd.selected>.sorting_3,
table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3 {
  background-color: #a9b7d1;
}

table.dataTable.display tbody tr.even>.sorting_1,
table.dataTable.order-column.stripe tbody tr.even>.sorting_1 {
  background-color: #fafafa;
}

table.dataTable.display tbody tr.even>.sorting_2,
table.dataTable.order-column.stripe tbody tr.even>.sorting_2 {
  background-color: #fcfcfc;
}

table.dataTable.display tbody tr.even>.sorting_3,
table.dataTable.order-column.stripe tbody tr.even>.sorting_3 {
  background-color: #fefefe;
}

table.dataTable.display tbody tr.even.selected>.sorting_1,
table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1 {
  background-color: #acbad5;
}

table.dataTable.display tbody tr.even.selected>.sorting_2,
table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2 {
  background-color: #aebcd6;
}

table.dataTable.display tbody tr.even.selected>.sorting_3,
table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3 {
  background-color: #afbdd8;
}

table.dataTable.display tbody tr:hover>.sorting_1,
table.dataTable.order-column.hover tbody tr:hover>.sorting_1 {
  background-color: #eaeaea;
}

table.dataTable.display tbody tr:hover>.sorting_2,
table.dataTable.order-column.hover tbody tr:hover>.sorting_2 {
  background-color: #ececec;
}

table.dataTable.display tbody tr:hover>.sorting_3,
table.dataTable.order-column.hover tbody tr:hover>.sorting_3 {
  background-color: #efefef;
}

table.dataTable.display tbody tr:hover.selected>.sorting_1,
table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1 {
  background-color: #a2aec7;
}

table.dataTable.display tbody tr:hover.selected>.sorting_2,
table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2 {
  background-color: #a3b0c9;
}

table.dataTable.display tbody tr:hover.selected>.sorting_3,
table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3 {
  background-color: #a5b2cb;
}

table.dataTable.no-footer {
  border-bottom: 1px solid #111;
}

table.dataTable.nowrap th,
table.dataTable.nowrap td {
  white-space: nowrap;
}

table.dataTable.compact thead th,
table.dataTable.compact thead td {
  padding: 4px 17px 4px 4px;
}

table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td {
  padding: 4px;
}

table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
  padding: 4px;
}

table.dataTable th.dt-left,
table.dataTable td.dt-left {
  text-align: left;
}

table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
  text-align: center;
}

table.dataTable th.dt-right,
table.dataTable td.dt-right {
  text-align: right;
}

table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
  text-align: justify;
}

table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
  white-space: nowrap;
}

table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
  text-align: left;
}

table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
  text-align: center;
}

table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
  text-align: right;
}

table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
  text-align: justify;
}

table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap;
}

table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
  text-align: left;
}

table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
  text-align: center;
}

table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
  text-align: right;
}

table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
  text-align: justify;
}

table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap;
}

table.dataTable,
table.dataTable th,
table.dataTable td {
  box-sizing: content-box;
}

.dataTables_wrapper {
  position: relative;
  clear: both;
  *zoom: 1;
  zoom: 1;
}

.dataTables_wrapper .dataTables_length {
  float: left;
}

.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: right;
}

.dataTables_wrapper .dataTables_filter input {
  margin-left: 0.5em;
}

.dataTables_wrapper .dataTables_info {
  clear: both;
  float: left;
  padding-top: 0.755em;
}

.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: 0.25em;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  *cursor: hand;
  color: #333 !important;
  border: 1px solid transparent;
  border-radius: 2px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #333 !important;
  border: 1px solid #979797;
  background-color: white;
  background: linear-gradient(to bottom, #fff 0%, #dcdcdc 100%);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: #666 !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid #111;
  background-color: #585858;
  background: linear-gradient(to bottom, #585858 0%, #111 100%);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: #2b2b2b;
  background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
  box-shadow: inset 0 0 3px #111;
}

.dataTables_wrapper .dataTables_paginate .ellipsis {
  padding: 0 1em;
}

.dataTables_wrapper .dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 40px;
  margin-left: -50%;
  margin-top: -25px;
  padding-top: 20px;
  text-align: center;
  font-size: 1.2em;
  background-color: white;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: #333;
}

.dataTables_wrapper .dataTables_scroll {
  clear: both;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
  *margin-top: -1px;
  -webkit-overflow-scrolling: touch;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td {
  vertical-align: middle;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 1px solid #111;
}

.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
.dataTables_wrapper.no-footer div.dataTables_scrollBody>table {
  border-bottom: none;
}

.dataTables_wrapper:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media screen and (max-width: 767px) {

  .dataTables_wrapper .dataTables_info,
  .dataTables_wrapper .dataTables_paginate {
    float: none;
    text-align: center;
  }

  .dataTables_wrapper .dataTables_paginate {
    margin-top: 0.5em;
  }
}

@media screen and (max-width: 640px) {

  .dataTables_wrapper .dataTables_length,
  .dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: center;
  }

  .dataTables_wrapper .dataTables_filter {
    margin-top: 0.5em;
  }
}

.lcs_wrap {
  display: inline-block;
  direction: ltr;
  height: 28px;
  vertical-align: middle;
}

.lcs_wrap input {
  display: none;
}

.lcs_switch {
  display: inline-block;
  position: relative;
  width: 73px;
  height: 28px;
  border-radius: 30px;
  background: #ddd;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.lcs_cursor {
  display: inline-block;
  position: absolute;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.2s linear;
}

.lcs_label {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 18px;
  color: #fff;
  font-weight: bold;
  position: absolute;
  width: 33px;
  top: 5px;
  overflow: hidden;
  text-align: center;
  opacity: 0;
  transition: all 0.2s ease-in-out 0.1s;
}

.lcs_label.lcs_label_on {
  left: -70px;
  z-index: 6;
}

.lcs_label.lcs_label_off {
  right: -70px;
  z-index: 5;
}

/* on */
.lcs_switch.lcs_on {
  background: #75b936;
  box-shadow: 0 0 2px #579022 inset;
}

.lcs_switch.lcs_on .lcs_cursor {
  left: 48px;
}

.lcs_switch.lcs_on .lcs_label_on {
  left: 10px;
  opacity: 1;
}

/* off */
.lcs_switch.lcs_off {
  background: #b2b2b2;
  box-shadow: 0px 0px 2px #a4a4a4 inset;
}

.lcs_switch.lcs_off .lcs_cursor {
  left: 3px;
}

.lcs_switch.lcs_off .lcs_label_off {
  right: 10px;
  opacity: 1;
}

/* disabled */
.lcs_switch.lcs_disabled {
  opacity: 0.65;
  filter: alpha(opacity=65);
  cursor: default;
}

@font-face {
  font-family: "Segoe UI Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Segoe UI Regular"), url("../fonts/Segoe UI.woff") format("woff");
}

@font-face {
  font-family: "Segoe UI Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Segoe UI Italic"), url("../fonts/Segoe UI Italic.woff") format("woff");
}

@font-face {
  font-family: "Segoe UI Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Segoe UI Bold"), url("../fonts/Segoe UI Bold.woff") format("woff");
}

@font-face {
  font-family: "Segoe UI Bold Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Segoe UI Bold Italic"), url("../fonts/Segoe UI Bold Italic.woff") format("woff");
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  line-height: 1.2;
}

body {
  position: relative;
  font-family: "Segoe UI Regular";
  min-height: 100%;
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  font-size: 14px;
  font-weight: 300;
}

a,
a:hover,
a:active {
  text-decoration: none;
  text-transform: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wrapper {
  height: 100%;
  width: 100%;
  position: absolute;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea {
  border: 1px solid #CECECE;
  font-size: 14px;
  color: #214860;
  padding: 5px 10px;
}

.block {
  display: block !important;
}

.m-b-5 {
  margin-bottom: 5px;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-b-15 {
  margin-bottom: 15px;
}

.m-b-20 {
  margin-bottom: 20px;
}

.m-b-25 {
  margin-bottom: 25px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.m-t-5 {
  margin-top: 5px;
}

.m-t-10 {
  margin-top: 10px;
}

.m-t-15 {
  margin-top: 15px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-t-25 {
  margin-top: 25px;
}

.m-t-30 {
  margin-top: 30px;
}

.body {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#133a7e", endColorstr="#133a7e", GradientType=1);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right 0;
}

#loginPage {
  background: #133a7e;
  background: -webkit-gradient(left top, right bottom, color-stop(0%, #133a7e), color-stop(66%, #133a7e), color-stop(100%, #133a7e));
  background: linear-gradient(135deg, #133a7e 0%, #133a7e 66%, #133a7e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#133a7e", endColorstr="#133a7e", GradientType=1);
  background-image: url("../images/bg-sq.png");
  background-image: url("../images/bg-sq.png"), linear-gradient(135deg, #133a7e 0%, #133a7e 66%, #133a7e 100%);
  /* W3C */
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right 0;
  padding: 92px;
  height: 100%;
  width: 100%;
  /* Create a custom checkbox */
}

#loginPage .breathcrumbs {
  margin: 0 0 30px 0;
  display: flex;
}

#loginPage .breathcrumbs a {
  display: inline-block;
  line-height: 30px;
  padding-right: 10px;
  margin-right: 20px;
}

#loginPage h1 {
  color: #fff;
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 30px;
  font-weight: 100;
  position: relative;
  line-height: 1;
}

#loginPage h1 .left-arrow {
  position: absolute;
  left: 0;
  top: 6px;
}

#loginPage h2 {
  color: #fff;
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 80;
  position: relative;
  line-height: 1;
}

#loginPage h2 .left-arrow {
  position: absolute;
  left: 0;
  top: 6px;
}

#loginPage header {
  margin-bottom: 50px;
}

#loginPage p {
  color: #fff;
  font-size: 12px;
  max-width: 275px;
  margin-bottom: 20px;
}

#loginPage .nav-tabs {
  border: none;
  margin-bottom: 25px;
}

#loginPage .nav-link {
  font-size: 30px;
  color: #fff;
  height: 40px;
  background: none;
  line-height: 40px;
  padding: 0;
  border: none;
  font-weight: 100;
  opacity: 50%;
}

#loginPage .nav-link.active,
#loginPage .nav-link:hover {
  opacity: 100%;
}

#loginPage #login-tab {
  padding-right: 47px;
  border-right: 1px solid #fff;
}

#loginPage #signUp-tab {
  padding-left: 47px;
}

#loginPage .form-control {
  background: none;
  border-radius: 0;
  border: 1px solid #fff;
  margin-bottom: 15px;
}

#loginPage .form {
  min-height: 360px;
  max-width: 680px;
  padding-bottom: 50px;
  display: block;
  position: relative;
}

#loginPage a {
  color: #fff;
  font-size: 12px;
}

#loginPage .submit-btn {
  background: #fff;
  color: #0976BC;
  font-size: 11px;
  font-weight: bold;
  height: 40px;
  padding: 5px 18px;
  border-radius: 0;
  min-width: 160px;
  text-align: left;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-right: 32px;
}

#loginPage .submit-btn img {
  position: absolute;
  top: 15px;
  right: 18px;
  transition: all 0.2s linear;
}

#loginPage .submit-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

#loginPage .submit-btn:hover img {
  right: 10px;
}

#loginPage .phone-container {
  position: relative;
}

#loginPage .phone-container .code {
  border-right: 1px solid #fff;
  padding-right: 10px;
  display: inline-block;
  position: absolute;
  color: #fff;
  font-size: 12px;
  opacity: 0.5;
  top: 16px;
  left: 33px;
}

#loginPage .phone-container .phone {
  padding-left: 65px;
}

#loginPage .form-control {
  height: 50px;
  padding: 15px 18px;
  color: #fff;
  font-size: 12px;
  outline: none;
}

#loginPage .form-control.last {
  margin-bottom: 5px;
}

#loginPage .form-control:focus {
  border: none;
  outline: none;
  outline-color: transparent;
  outline-style: none;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.16);
  background: #269ded;
  background: -webkit-gradient(left top, right bottom, color-stop(0%, #269ded), color-stop(100%, #055890));
  background: linear-gradient(135deg, #269ded 0%, #055890 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#269ded", endColorstr="#055890", GradientType=1);
}

#loginPage .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(255, 255, 255, 0.5);
}

#loginPage .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#loginPage .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#loginPage .checkbox-container {
  height: 50px;
  display: block;
  position: relative;
  padding-left: 35px;
  padding-top: 15px;
  cursor: pointer;
  font-size: 12px;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#loginPage .checkbox-container input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

#loginPage .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

#loginPage .checkbox-container:hover input~.checkmark {
  background-color: #10BC09;
}

#loginPage .checkbox-container input:checked~.checkmark {
  background-color: #10BC09;
}

#loginPage .checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

#loginPage .checkbox-container input:checked~.checkmark:after {
  display: block;
}

#loginPage .checkmark {
  position: absolute;
  top: 15px;
  left: 0;
  border-radius: 7px;
  height: 20px;
  width: 20px;
  background-color: #10BC09;
}

#loginPage .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

#fileInputContainer {
  margin: 0 10px 20px 10px;
  width: 120px;
  height: 120px;
  border-radius: 9px;
  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
  overflow: hidden;
  border: dashed 1px #707070;
  cursor: pointer;
}

#fileInputContainer .dropify-wrapper {
  height: 120px !important;
  border: none;
  padding: 0;
  background: #F4F4F4;
  cursor: pointer;
}

#fileInputContainer .dropify-wrapper .dropify-clear {
  content: "x";
}

#fileInputContainer .dropify-wrapper .dropify-preview {
  padding: 0;
}

#fileInputContainer .dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner {
  display: none !important;
}

#fileInputContainer .dropify-message {
  padding: 0;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
}

#fileInputContainer .dropify-message:after,
#fileInputContainer .dropify-message:before {
  position: absolute;
  top: 7px;
  height: 2px;
  width: 15px;
  background: #707070;
  content: "";
  display: block;
}

#fileInputContainer .dropify-message:after {
  transform: rotate(90deg);
}

#fileInputContainer .dropify-message p {
  display: none;
}

#fileInputContainer .dropify-message span.file-icon:before {
  content: "";
}

#profile .avatar-preview {
  margin: 0 10px 20px 10px;
  width: 120px;
  height: 120px;
  background: #F4F4F4;
  overflow: hidden;
  border-radius: 9px;
  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
}

#profile .avatar-preview img {
  width: 100%;
  height: auto;
}

#profile .userName {
  font-size: 16px;
  font-weight: bold;
  color: #214860;
  margin: 0 0 10px 10px;
}

#profile .about {
  margin-left: 10px;
}

#profile .user-data {
  font-size: 16px;
  font-weight: bold;
  height: 45px;
  line-height: 45px;
  color: #214860;
}

#profile #profileAbout,
#profile .about {
  width: 100%;
  max-width: 260px;
  min-height: 80px;
}

#profile #profileAbout:focus {
  outline-color: transparent !important;
  outline-style: none !important;
  -webkit-appearance: none !important;
  box-shadow: 0px 10px 14px 0px rgba(9, 118, 188, 0.1);
  border: 1px solid #fff;
}

#profile .form-group {
  display: flex;
}

#profile .form-group label {
  width: 120px;
  margin: 0 10px 0 0;
  line-height: 45px;
  color: #214860;
  font-size: 14px;
}

#profile .form-group .form-control {
  font-size: 16px;
  max-width: 280px;
  border: 1px solid #CECECE;
  border-radius: 0;
  height: 45px;
  font-weight: bold;
  color: #214860;
  outline: none;
  outline-color: transparent;
  outline-style: none;
  outline: 0;
  background: #fff;
}

#profile .form-group .form-control:focus {
  outline-color: transparent !important;
  outline-style: none !important;
  -webkit-appearance: none !important;
  box-shadow: 0px 10px 14px 0px rgba(9, 118, 188, 0.1);
  border: 1px solid #fff;
}

#profile .submit-btn {
  color: #fff;
  display: inline-block;
  border: none;
  font-weight: bold;
  line-height: 40px;
  font-size: 11px;
  width: 160px;
  height: 40px;
  text-align: left;
  border: none;
  padding-left: 18px;
  margin: 50px 0 0 10px;
  background: #0976BC url("../images/btn-arrow-right.svg") 85% center no-repeat;
}

#profile .submit-btn:hover {
  background-color: #214860;
}

#orders {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  padding-bottom: 0;
}

#orders .table-responsive {
  overflow-x: visible !important;
  margin-bottom: 20px;
  height: 100%;
}

#orders .order-footer {
  min-height: 250px;
  background: #F4F4F4;
  margin-left: -25px;
  margin-right: -25px;
  padding: 35px 0;
  color: #214860;
}

#orders .order-footer .order-info {
  padding: 0 0 0 45px;
  font-size: 14px;
  margin-bottom: 20px;
}

#orders .order-footer .order-info strong {
  font-weight: bold;
  font-size: 16px;
}

#orders .order-footer .orders-details>div {
  border-right: 1px solid #b1b1b1;
  padding-left: 45px;
}

#orders .order-footer .orders-details>div:last-child {
  border: none;
}

#orders .order-footer .details-lists {
  display: flex;
}

#orders .order-footer .details-lists>.list {
  width: 50%;
}

#orders .order-footer .details-lists dl dd {
  font-size: 9px;
}

#orders .order-footer .title {
  font-size: 14px;
  margin-bottom: 0.5rem;
  width: 100%;
}

.left-sidebar {
  position: fixed;
  width: 70px;
  height: 100%;
  top: 0;
  z-index: 2000;
  padding-top: 70px;
  background: var(--color-sidebar-bg, #0d1629);
  background: linear-gradient(180deg, var(--color-sidebar-surface, #0f2041) 0%, var(--color-sidebar-bg, #0d1629) 100%);
  padding-bottom: 45px;
  transition: width 0.3s ease-in-out;
}

.left-sidebar .close-btn {
  height: 20px;
  width: 20px;
  position: absolute;
}

.left-sidebar .close-btn:after,
.left-sidebar .close-btn:before {
  content: "";
  width: 10px;
  height: 2px;
  display: block;
  background: var(--color-sidebar-bg, #0d1629);
  position: absolute;
  top: 9px;
  left: 5px;
}

.left-sidebar .close-btn:after {
  /* IE 9 */
  /* Safari prior 9.0 */
  transform: rotate(45deg);
  /* Standard syntax */
}

.left-sidebar .close-btn:before {
  /* IE 9 */
  /* Safari prior 9.0 */
  transform: rotate(-45deg);
  /* Standard syntax */
}

.left-sidebar #menu-wrapper {
  width: 100%;
  display: flex;
}

.left-sidebar .small-nav {
  width: 70px;
  position: fixed;
  z-index: 9;
}

.left-sidebar .big-nav {
  overflow: hidden;
  width: 0px;
  position: relative;
  margin-left: 80px;
  transition: all 0.3s ease-in-out;
}

.left-sidebar .breathercrumb {
  padding: 13px 13px 13px 35px;
  margin-bottom: 25px;
}

.left-sidebar .breathercrumb ul {
  display: flex;
}

.left-sidebar .breathercrumb li {
  color: #fff;
  font-size: 11px;
  font-weight: 100;
  margin-left: 5px;
}

.left-sidebar .breathercrumb li:first-child {
  margin-left: 0;
}

.left-sidebar .breathercrumb li:before {
  content: "/";
  display: inline-block;
  margin-right: 5px;
}

.left-sidebar .breathercrumb a {
  color: #fff;
}

.left-sidebar .breathercrumb a:hover {
  text-decoration: underline;
}

.left-sidebar .quick-menu {
  margin: 13px auto 25px auto;
  text-align: center;
  position: relative;
  z-index: 9999 !important;
  height: 60px;
  width: 45px;
}

.left-sidebar .quick-menu.open .menu {
  z-index: 9999 !important;
  max-width: 1000px;
}

.left-sidebar .quick-menu>a {
  display: block;
  border: 1px solid #fff;
  height: 60px;
  color: #fff;
  border-radius: 5px;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.1;
}

.left-sidebar .quick-menu>a:before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  margin: 8px 0;
  background: url("../images/plus-icon.svg") center center no-repeat;
}

.left-sidebar .quick-menu .menu {
  border-radius: 5px;
  position: absolute;
  height: 60px;
  background: #fff;
  top: 0;
  left: 0;
  max-width: 0px;
  overflow: hidden;
  box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  transition: max-width 0.3s ease-in-out;
  z-index: 999 !important;
}

.left-sidebar .quick-menu .menu .close-btn {
  top: 20px;
  left: 13px;
}

.left-sidebar .quick-menu .menu ul {
  display: flex;
  padding-right: 5px;
  margin-left: 40px;
}

.left-sidebar .quick-menu .menu ul li {
  float: left;
  display: block;
  padding: 10px 0;
}

.left-sidebar .quick-menu .menu ul li:first-child a {
  padding-left: 5px;
}

.left-sidebar .quick-menu .menu ul a {
  font-size: 11px;
  color: #214860;
  padding: 0 15px;
  display: inline-block;
  line-height: 40px;
  white-space: nowrap;
  font-weight: bold;
}

.left-sidebar .sidebar-nav {
  padding: 0 13px;
}

.left-sidebar .sidebar-nav>ul>li {
  display: block;
  margin-bottom: 10px;
  text-align: center;
}

.left-sidebar .sidebar-nav>ul>li.separator {
  background: #fff;
  height: 1px;
  width: 100%;
  margin: 30px 0;
}

.left-sidebar .sidebar-nav>ul>li>a {
  display: block;
  text-align: center;
  padding: 5px 0;
  line-height: 20px;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
}

.left-sidebar .sidebar-nav>ul>li>a:hover img,
.left-sidebar .sidebar-nav>ul>li>a:hover i,
.left-sidebar .sidebar-nav>ul>li>a:hover svg {
  box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.16);
}

.left-sidebar .sidebar-nav>ul>li>a img {
  height: 20px;
  width: auto;
}

.left-sidebar .sidebar-nav>ul>li>a i,
.left-sidebar .sidebar-nav>ul>li>a svg {
  font-size: 1.25rem;
}

.left-sidebar .sidebar-nav>ul>li>a span {
  display: block;
  margin-top: 5px;
}

.top-logo {
  position: absolute;
  top: 14px;
  left: 19px;
  background: url("../images/small-logo.svg") no-repeat;
  width: 33px;
  height: 24px;
}


.left-sidebar .small-logo {
  position: absolute;
  bottom: 14px;
  left: 19px;
  background: url("../images/small-logo.svg") no-repeat;
  width: 33px;
  height: 24px;
}

.left-sidebar .main-nav {
  padding-left: 14px;
  padding-top: 15px;
}

.left-sidebar .main-nav.selected-item>ul>li.active a {
  opacity: 1;
}

.left-sidebar .main-nav>ul>li {
  display: block;
  margin-bottom: 2px;
}

.left-sidebar .main-nav>ul>li.active .expand-icon:after,
.left-sidebar .main-nav>ul>li.active .expand-icon:before {
  background: var(--color-sidebar-bg, #0d1629);
}

.left-sidebar .main-nav>ul>li.active .expand-icon:after {
  display: none;
}

.left-sidebar .main-nav>ul>li.active .dropdown-submenu {
  max-height: 1000px;
  margin-left: 15px;
}

.left-sidebar .main-nav>ul>li a {
  line-height: 28px;
  padding: 5.64px 0 5.64px 22px;
  display: block;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
}

.left-sidebar .main-nav>ul>li a:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.left-sidebar .main-nav>ul>li a:hover.dropdown .expand-icon:after,
.left-sidebar .main-nav>ul>li a:hover.dropdown .expand-icon:before {
  background: var(--color-sidebar-bg, #0d1629);
}

.left-sidebar .main-nav>ul>li a.dropdown {
  position: relative;
}

.left-sidebar .main-nav>ul>li a .expand-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  right: 13px;
  z-index: 10;
}

.left-sidebar .main-nav>ul>li a .expand-icon:after,
.left-sidebar .main-nav>ul>li a .expand-icon:before {
  content: "";
  width: 2px;
  height: 10px;
  background: #fff;
  position: absolute;
  top: 15px;
  left: 19px;
}

.left-sidebar .main-nav>ul>li a .expand-icon:before {
  /* IE 9 */
  /* Safari prior 9.0 */
  transform: rotate(90deg);
  /* Standard syntax */
}

.left-sidebar .main-nav>ul>li .dropdown-submenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
}

.left-sidebar .main-nav>ul>li .dropdown-submenu .back {
  margin-top: 50px;
  font-weight: bold;
}

.left-sidebar .main-nav>ul>li .dropdown-submenu .back a .icon {
  margin-right: 14px;
  display: inline-block;
  background-size: cover;
}

.left-sidebar .main-nav>ul>li .dropdown-submenu .back a:hover .icon {
  filter: invert(28%) sepia(34%) saturate(6579%) hue-rotate(187deg) brightness(93%) contrast(93%);
}

.left-sidebar .main-nav>ul>li .dropdown-submenu a {
  display: block;
}

.left-sidebar .toggleNav {
  position: absolute;
  bottom: 100px;
  right: -12px;
  z-index: 999 !important;
  transition: visibility 0s, opacity 0.15s;
}

.left-sidebar.app-switcher-open .toggleNav {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.left-sidebar .toggleNav img {
  transform: rotate(180deg);
}

.left-sidebar .apps-menu-btn {
  position: relative;
}

.left-sidebar .apps-menu-btn.open .menu {
  max-width: 1000px;
  max-height: 550px;
}

.left-sidebar .apps-menu-btn .menu {
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  max-height: 0;
  max-width: 0;
  background: #fff;
  border-radius: 14px;
  z-index: 99999 !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.10);
  transition: all 0.3s ease-in-out;
}

.left-sidebar .apps-menu-btn .menu .menu-wrapper {
  width: 400px;
  max-height: 520px;
  overflow-y: auto;
  padding: 20px 20px 28px 20px;
}

.left-sidebar .apps-menu-btn .menu .close-btn {
  top: 10px;
  right: 10px;
  left: auto;
  bottom: auto;
}

.left-sidebar .apps-menu-btn .title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  line-height: 1.1;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f4f8;
}

.left-sidebar .apps-menu-btn .apps-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  margin-bottom: 15px;
}

.left-sidebar .apps-menu-btn .apps-grid li {
  width: 33.333%;
  margin-bottom: 16px;
}

.left-sidebar .apps-menu-btn .apps-grid li a {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  color: #1e293b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  padding: 8px 6px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}

.left-sidebar .apps-menu-btn .apps-grid li a:before {
  height: 100%;
  width: 100%;
  position: absolute;
  content: "";
  display: block;
  z-index: 100;
  cursor: pointer;
}

.left-sidebar .apps-menu-btn .apps-grid li a .icon,
.left-sidebar .apps-menu-btn .admin-menu li a .icon {
  display: block;
  height: 48px;
  width: 48px;
  margin: 0 auto 8px auto;
  border-radius: 10px;
  object-fit: contain;
}

.left-sidebar .apps-menu-btn .apps-grid li a span {
  display: block;
}

.left-sidebar .apps-menu-btn .apps-grid li a:hover {
  color: var(--color-primary, #0976bc);
  background: rgba(9, 118, 188, 0.06);
}

.left-sidebar .apps-menu-btn .apps-grid li a:hover .icon {
  cursor: pointer !important;
}

.left-sidebar .apps-menu-btn .admin-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  margin-bottom: 20px;
}

.left-sidebar .apps-menu-btn .admin-menu li {
  width: 33.333%;
  margin-bottom: 16px;
}

.left-sidebar .apps-menu-btn .admin-menu li a {
  color: #1e293b;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 8px 6px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}

.left-sidebar .apps-menu-btn .admin-menu li a:hover {
  color: var(--color-primary, #0976bc);
  background: rgba(9, 118, 188, 0.06);
}

/* App switcher — emoji / initials icon tiles */
.app-tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin: 0 auto 8px auto;
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.app-tile-emoji {
  background: linear-gradient(135deg, #0f2041 0%, #0976bc 100%);
}

.app-tile-initials {
  background: #e8eef6;
  color: #0762a0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: var(--font-display, 'Montserrat', sans-serif);
}

.left-sidebar .apps-menu-btn .apps-grid li a.app-tile-active,
.left-sidebar .apps-menu-btn .admin-menu li a.app-tile-active {
  color: var(--color-primary, #0976bc);
}

.left-sidebar .apps-menu-btn .apps-grid li a.app-tile-active .app-tile-icon,
.left-sidebar .apps-menu-btn .admin-menu li a.app-tile-active .app-tile-icon {
  box-shadow: 0 0 0 2px var(--color-primary, #0976bc);
}

.dataTables_wrapper {
  padding-bottom: 40px;
}

.dataTables_wrapper:after {
  height: 40px;
  background: #F4F4F4;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 50;
  visibility: visible;
}

.dataTables_wrapper .dataTables_length {
  display: none;
}

.dataTables_wrapper .dataTables_paginate {
  padding: 0;
  height: 40px;
  background: #214860;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 90;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  color: #fff !important;
  opacity: 0.44;
  margin-left: 0;
  border-radius: 0;
  border: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  opacity: 1 !important;
  border: none !important;
  background: none;
  color: #fff !important;
}

.dataTables_wrapper .dataTables_info {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 90;
  font-size: 12px;
  color: #214860;
}

.data-table thead th {
  padding: 10px !important;
  border-bottom: 1px solid #CECECE !important;
  color: #939393;
  font-weight: normal !important;
}

.data-table .dataTable tbody tr {
  background: none;
}

table.dataTable tbody {
  margin: 15px 0;
}

table.dataTable tbody td {
  cursor: pointer;
  padding: 13px 10px;
}

table.dataTable tbody tr {
  background-color: transparent;
  color: #214860;
  font-size: 12px;
}

table.dataTable tbody tr:hover,
table.dataTable tbody tr.active {
  background-color: #f2f2f2;
}

table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
  color: #214860 !important;
  font-weight: bold !important;
}

.modal-content {
  border: 1px solid #CECECE;
  border-radius: 0;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1);
}

.modal-header {
  padding: 10px 10px !important;
  border-bottom: 1px solid #cdcdcd !important;
}

.modal-header .btn {
  border: none;
  font-size: 11px;
}

.modal-header .btn.btn-success {
  background: #10BC09;
  min-width: 90px;
  color: #fff;
}

.modal-header .btn.btn-success.border {
  background: #fff;
  border: 1px solid #10BC09 !important;
  color: #10BC09;
}

.modal-title {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #0976BC;
}

.modal-body {
  padding: 32px 65px;
}

.modal-body .br {
  height: 1px;
  background: #cdcdcd;
  margin: 35px -65px;
}

.modal-dialog {
  max-width: 730px;
}

.modal-dialog .purchase-info {
  color: #214860;
}

.modal-dialog .purchase-info dt {
  font-weight: normal;
  height: 20px;
  font-size: 14px;
  line-height: 20px;
}

.modal-dialog .purchase-info strong {
  font-size: 11px;
  font-weight: bold;
}

.modal-open .modal {
  padding: 70px 0 0 70px;
}

.modal-backdrop {
  background: #214860;
}

.modal-backdrop.show {
  opacity: 0.69;
  -webkit-backdrop-filter: blur(17px);
  backdrop-filter: blur(17px);
}

.modal-form label {
  font-size: 11px;
  font-weight: bold;
  color: #214860;
  line-height: 45px;
}

.modal-form .input-with-search {
  position: relative;
}

.modal-form .input-with-search .form-control {
  background: #fff;
  height: 45px;
  border-radius: 0;
  border: 1px solid #cecece;
  padding-right: 55px;
}

.modal-form .input-with-search .form-control:focus {
  background: #fff;
  border-color: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.11);
}

.modal-form .input-with-search .search-icon {
  color: #0976BC;
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  border: none;
  background: #F4F4F4;
  font-size: 15px;
  line-height: 45px;
  text-align: center;
}

.modal.notes .create-to-do-btn {
  display: none;
}

.modal.notes .modal-body {
  padding: 0;
}

.modal.notes .modal-header {
  padding-left: 0;
  padding-right: 0;
  margin: 0 60px;
  border: none;
}

.modal.notes .to-do-form-container {
  display: none;
  padding: 0 60px 30px 60px;
}

.modal.notes .to-do-form-container .form-control {
  border-radius: 0;
}

.modal.notes .to-do-form-container .btn-actions-container {
  display: flex;
}

.modal.notes .to-do-form-container .btn {
  background: #F4F4F4;
  border-radius: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  width: 38px;
  margin-right: 5px;
}

.modal.notes .to-do-form-container .btn:hover {
  background: #CECECE;
}

.modal.notes .to-do-list {
  padding: 0 60px;
  max-height: 530px;
  overflow: hidden;
  overflow-y: auto;
  position: relative;
  /* Track */
  /* Handle */
  /* Handle on hover */
}

.modal.notes .to-do-list:before {
  content: "";
  display: block;
  position: -webkit-sticky;
  position: sticky;
  left: 60px;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #cdcdcd;
}

.modal.notes .to-do-list::-webkit-scrollbar {
  width: 5px;
}

.modal.notes .to-do-list::-webkit-scrollbar-track {
  background: #CECECE;
}

.modal.notes .to-do-list::- webkit-scrollbar-thumb {
  background: #214860;
}

.modal.notes .to-do-list::-webkit-scrollbar-thumb:hover {
  background: #214860;
}

.modal.notes .task-row {
  border-bottom: 1px solid #cdcdcd;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
}

.modal.notes .task-row.selected .task-info {
  opacity: 0.3;
}

.modal.notes .task-row>div:first-child {
  width: 50px;
}

.modal.notes .task-row>div:nth-child(2) {
  width: calc(100% - 50px);
}

.modal.notes .task-row .task-info {
  display: flex;
  color: #214860;
}

.modal.notes .task-row .task-info>div:first-child {
  width: 70%;
}

.modal.notes .task-row .task-info>div:nth-child(2) {
  width: 30%;
  text-align: right;
}

.modal.notes .task-row .task-info h4 {
  font-size: 16px;
  font-weight: bold;
}

.modal.notes .task-row .task-info p {
  font-size: 12px;
  font-weight: 100;
  color: #214860;
  margin-bottom: 7px;
}

.modal.notes .task-row .for-user {
  margin-bottom: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  font-weight: bold;
  font-size: 11px;
}

.modal.notes .task-row .for-user img {
  height: 15px;
  width: auto;
  margin-right: 5px;
}

.modal.notes .task-row .date-label {
  background: #CECECE;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 5px;
}

.modal.notes .task-row .date-label.purple {
  background: #ED3C74;
}

.modal.notes .task-row .date-label.blue {
  background: #0976BC;
}

.modal.notes .task-row .action-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.modal.notes .task-row .action-container .act-btns a {
  margin-left: 5px;
  display: inline-block;
}

.modal.notes .task-row .action-container .info {
  font-size: 12px;
  font-weight: 100;
}

.modal.notes .task-row .action-container .info strong {
  font-weight: bold;
}

.modal.notes .check-box-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.modal.notes .check-box-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.modal.notes .check-box-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 7px;
  background-color: #CECECE;
}

.modal.notes .check-box-container:hover input~.checkmark {
  background-color: #ccc;
}

.modal.notes .check-box-container input:checked~.checkmark {
  background-color: #10BC09;
}

.modal.notes .check-box-container .checkmark:after {
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.modal.notes .check-box-container input:checked~.checkmark:after {
  display: block;
}

.modal.notes .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.form-bordered {
  font-size: 0.8rem;
}

.is-dark {
  background: #2B314B;
  color: #6EC6FF;
}

.is-dark table th td {
  color: #6EC6FF;
}

.is-dark table tr td {
  color: #6EC6FF;
}

.is-dark .navbar {
  background: #2B314B;
}

.is-dark .navbar .nav-tabs a {
  color: #6EC6FF;
}

.is-dark .navbar .right-nav .nav-container #search-input {
  background: #6EC6FF;
}

.is-dark .navbar .right-nav .nav-container #search-input input {
  background: #2B314B;
}

.is-dark .navbar .right-subnav li a {
  color: #6EC6FF;
}

.is-dark .navbar .search-btn:hover,
.is-dark .navbar .search-btn.active {
  background: #2B314B;
}

.is-dark .navbar .navbar-header {
  background: #2B314B;
}

.is-dark .navbar .navbar-title h2 {
  color: #6EC6FF;
}

.is-dark .navbar .navbar-title h2:before {
  background: #2B314B;
}

.is-dark .navbar .action-nav a {
  background: #2B314B;
}

.is-dark .navbar .action-nav a.action-btn {
  background: #10BC09;
}

.is-dark .navbar .action-nav a.action-btn.active {
  color: #fff;
  background: #6EC6FF;
  border: 1px solid #fff;
}

.is-dark .navbar .action-menu {
  background: #2B314B;
}

.is-dark .navbar .action-menu .header {
  background: #191C2B;
  color: #6EC6FF;
}

.is-dark .navbar .action-menu .converters a span {
  color: #fff;
}

.is-dark .navbar .action-menu .menu .sepa {
  background: #2B314B;
}

.is-dark .card-body {
  background: #2B314B;
}

.is-dark .card-body .label,
.is-dark .card-body .text {
  color: #6EC6FF;
}

.is-dark .dashboard-box {
  background: #2B314B;
}

.is-dark .action-btns .minimize:before {
  background: #2B314B;
}

.is-dark .action-btns .close:before,
.is-dark .action-btns .close:after {
  background: #2B314B;
}

.is-dark .pie-chart .text {
  color: #fff;
}

.is-dark .pie-chart-labels>div {
  color: #6EC6FF;
}

.is-dark .bar-chart .bar-label {
  color: #6EC6FF;
}

.is-dark .bar,
.is-dark .bar-value {
  background: #2B314B;
}

.is-dark .dashboard-views {
  background: #2B314B;
}

.is-dark .dashboard-views .menu {
  background: #2B314B;
}

.is-dark .dashboard-views .menu .close-btn {
  background: red;
}

.is-dark .close-btn:after,
.is-dark .close-btn:before {
  background: #2B314B;
}

.is-dark .ui-button {
  background: #2B314B;
  color: #6EC6FF;
}

.is-dark .ui-button:hover,
.is-dark .ui-button:focus {
  background: #6EC6FF;
  color: #2B314B;
}

.is-dark .ui-selectmenu-menu {
  background: #2B314B;
}

.is-dark .ui-widget.ui-widget-content:before {
  background: #2B314B;
}

.is-dark .accordion-style li {
  background: #2B314B;
}

.is-dark .accordion-style .accordion-header {
  color: #6EC6FF;
}

.is-dark .accordion-style .accordion-header:hover,
.is-dark .accordion-style .accordion-header.active {
  background: #2B314B;
  color: #6EC6FF;
}

.is-dark .accordion-style .accordion-header:hover:before,
.is-dark .accordion-style .accordion-header:hover:after,
.is-dark .accordion-style .accordion-header.active:before,
.is-dark .accordion-style .accordion-header.active:after {
  background: #6EC6FF;
  color: #2B314B;
}

.is-dark .accordion-style .accordion-header:before,
.is-dark .accordion-style .accordion-header:after {
  background: #2B314B;
}

.is-dark .accordion-style .accordion-content .label {
  color: #6EC6FF;
}

.is-dark .accordion-style .accordion-content .form-control {
  background: #2B314B;
  color: #6EC6FF;
}

.is-dark .form-style .form-control {
  background: #2B314B;
}

.is-dark .form-style .form-control:focus {
  background: #6EC6FF;
  border-color: #6EC6FF;
}

.is-dark .form-style .form-group .value .search-input .saerch-btn {
  background: #2B314B;
  border: 1px solid #6EC6FF;
}

.is-dark .form-style .form-group .value .search-input .search-box {
  background: #2B314B;
}

.is-dark .form-style .form-group .value .search-input .search-box .close-box:before,
.is-dark .form-style .form-group .value .search-input .search-box .close-box:after {
  background: #2B314B;
}

.is-dark #customer-info .avatar {
  background: #2B314B;
}

.is-dark #customer-info .sku-num {
  color: #6EC6FF;
}

.is-dark #customer-info .nav-tabs .nav-link.active {
  color: #6EC6FF;
}

.is-dark #customers-adresses .top .title h2 {
  color: #6EC6FF;
}

.is-dark #customers-adresses .top .search-address input {
  background: #2B314B;
}

.is-dark #customers-adresses #map {
  background: #2B314B;
}

.is-dark .left-sidebar {
  background: #191C2B;
}

.is-dark .left-sidebar .close-btn:after,
.is-dark .left-sidebar .close-btn:before {
  background: #6EC6FF;
}

.is-dark .left-sidebar .menu {
  background: #191C2B;
}

.is-dark .left-sidebar .menu ul a {
  color: #6EC6FF;
}

.is-dark .left-sidebar .sidebar-nav>ul>li.separator {
  background: #2B314B;
}

.is-dark .left-sidebar .apps-menu-btn .menu {
  background: #2B314B;
}

.is-dark .left-sidebar .apps-menu-btn .title {
  color: #9ca3af;
  border-bottom-color: #374151;
}

.is-dark .left-sidebar .apps-menu-btn .apps-grid li a {
  color: #e5e7eb;
}

.is-dark .left-sidebar .apps-menu-btn .apps-grid li a:hover {
  color: #6EC6FF;
  background: rgba(110, 198, 255, 0.08);
}

.is-dark .left-sidebar .apps-menu-btn .admin-menu li a {
  color: #e5e7eb;
}

.is-dark .left-sidebar .apps-menu-btn .admin-menu li a:hover {
  color: #6EC6FF;
  background: rgba(110, 198, 255, 0.08);
}

.is-dark .app-tile-initials {
  background: #1e3a5f;
  color: #93c5fd;
}

.is-dark .modal-content {
  color: #6EC6FF;
  background: #2B314B;
}

.is-dark .modal-title {
  color: #6EC6FF;
}

.is-dark .modal-body .br {
  background: #2B314B;
}

.is-dark .modal-dialog .purchase-info {
  color: #6EC6FF;
}

.is-dark .modal-backdrop {
  background: #2B314B;
}

.is-dark .modal-form label {
  color: #6EC6FF;
}

.is-dark .modal-form .input-with-search .form-control {
  background: #2B314B;
  color: #6EC6FF;
}

.is-dark .modal-form .input-with-search .form-control:focus {
  border-color: #6EC6FF;
}

.is-dark .modal-form .input-with-search .search-icon {
  color: #6EC6FF;
}

.is-dark .modal.notes .to-do-form-container .btn {
  background: #6EC6FF;
  color: #fff;
}

.is-dark .modal.notes .to-do-form-container .btn:hover {
  background: #2B314B;
}

.is-dark .modal.notes .to-do-list {
  /* Track */
  /* Handle */
  /* Handle on hover */
}

.is-dark .modal.notes .to-do-list:before {
  background-color: #2B314B;
}

.is-dark .modal.notes .to-do-list::-webkit-scrollbar-track {
  background: #CECECE;
}

.is-dark .modal.notes .to-do-list::-webkit-scrollbar-thumb {
  background: #214860;
}

.is-dark .modal.notes .to-do-list::-webkit-scrollbar-thumb:hover {
  background: #214860;
}

.is-dark .modal.notes .task-row .task-info {
  color: #fff;
}

.is-dark .modal.notes .date-label {
  background: #191C2B;
  color: #fff;
}

.is-dark .modal.notes .check-box-container .checkmark {
  background-color: #191C2B;
}

.is-dark .modal.notes .check-box-container:hover input~.checkmark {
  background-color: #fff;
}

.is-dark .modal.notes .check-box-container input:checked~.checkmark {
  background-color: #10BC09;
}

.is-dark textarea {
  border: 1px solid #6EC6FF;
}

.is-dark .dataTables_wrapper:after {
  background: #2B314B;
}

.is-dark .dataTables_wrapper .dataTables_paginate {
  background: #2B314B;
}

.is-dark .dataTables_wrapper .dataTables_paginate .paginate_button {
  color: #6EC6FF !important;
}

.is-dark .dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.is-dark .dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  color: #6EC6FF !important;
}

.is-dark .dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.is-dark .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.is-dark .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #6EC6FF !important;
}

.is-dark .dataTables_wrapper .dataTables_info {
  color: #6EC6FF;
}

.is-dark .data-table thead th {
  border-bottom: 1px solid #6EC6FF !important;
  color: #6EC6FF;
}

.is-dark table.dataTable tr {
  color: #2B314B;
}

.is-dark table.dataTable tr:hover,
.is-dark table.dataTable tr.active {
  background-color: #6EC6FF;
}

.is-dark table.dataTable thead .sorting_asc,
.is-dark table.dataTable thead .sorting_desc {
  color: #6EC6FF !important;
}

.is-dark .dataTables_wrapper:after {
  background: #191C2B;
}

.is-dark .dataTables_wrapper .dataTables_paginate {
  background: #191C2B;
}

.is-dark .dataTables_wrapper .dataTables_info {
  color: #6EC6FF;
}

.is-dark #orders .order-footer {
  background: #191C2B;
}

.is-dark #orders .orders-details>div {
  border-right: 1px solid #fff;
}

.is-dark #fileInputContainer {
  border: dashed 1px #fff;
}

.is-dark #fileInputContainer .dropify-wrapper {
  background: #191C2B;
}

.is-dark #fileInputContainer .dropify-message:after,
.is-dark #fileInputContainer .dropify-message:before {
  background: #fff;
}

.is-dark #profile .avatar-preview {
  background: #191C2B;
}

.is-dark #profile .userName {
  color: #fff;
}

.is-dark #profile .user-data {
  color: #fff;
}

.is-dark #profile .form-group label {
  color: #fff;
}

.is-dark #profile .form-control {
  border: 1px solid #6EC6FF;
  background: #191C2B;
}

#dashboard {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dashboard-grid {
  display: flex;
  flex-direction: column;
}

.navbar {
  height: 40px;
  position: fixed;
  width: 100%;
  display: flex;
  align-items: center;
  background: #F4F4F4;
  padding: 0;
}

.navbar .nav-tabs {
  margin-left: 40px;
}

.navbar .nav-tabs ul {
  display: flex;
}

.navbar .nav-tabs li {
  height: 70px;
  margin: 0 18px;
}

.navbar .nav-tabs li.active,
.navbar .nav-tabs li:hover {
  border-bottom: 1px solid #0976BC;
}

.navbar .nav-tabs a {
  padding: 30px 15px 0 15px;
  display: inline-block;
  color: #214860;
  font-size: 14px;
}

.navbar .right-nav {
  height: 80px;
  order: 0;
  flex: 1 1 auto;
  align-self: auto;
  position: relative;
  text-align: right;
}

.navbar .right-nav .nav-container {
  display: inline-flex;
  height: 40px;
  position: relative;
}

.navbar .right-nav .nav-container #search-input {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: red;
  overflow: hidden;
  height: 0;
}

.navbar .right-nav .nav-container #search-input.active {
  height: 45px;
}

.navbar .right-nav .nav-container #search-input input {
  background: #ECEAEA;
  width: 100%;
  height: 45px;
  border: none;
  padding: 0 15px;
}

.navbar .right-subnav {
  display: inline-block;
}

.navbar .right-subnav li {
  display: inline-block;
  float: left;
  height: 70px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
}

.navbar .right-subnav li a {
  padding: 10px;
  display: inline-block;
  color: #214860;
  font-weight: bold;
  font-size: 11px;
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
}

.navbar .search-btn {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.navbar .search-btn:hover,
.navbar .search-btn.active {
  background: #ECEAEA;
}

.navbar .search-btn a {
  padding: 15px;
  display: inline-block;
}

.navbar .navbar-header {
  width: 70px;
  height: 40px;
  text-align: center;
  flex-shrink: 0;
  padding-left: 0;
  background: #214860;
  z-index: 2200;
  transition: width 0.3s ease-in-out;
}

.navbar .navbar-brand {
  height: 40px;
  display: inline-block;
  padding: 0;
  margin: 0;
}

.navbar .navbar-brand img {
  position: absolute;
  top: 13px;
  left: 13px;
}

.navbar .navbar-title {
  padding: 0 0 0 5px;
  display: flex;
}

.navbar .navbar-title h1 {
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
}

.navbar .navbar-title h2 {
  color: #0976BC;
  font-size: 12px;
  font-weight: normal;
  line-height: 35px;
}

.navbar .navbar-title h2:before {
  content: "";
  display: block;
  width: 1px;
  height: 35px;
  float: left;
  background: #214860;
  margin: 0 25px 0 40px;
}

.navbar .action-nav {
  height: 100%;
  padding-right: 2px;
}

.navbar .action-nav.show {
  display: block;
}

.navbar .action-nav.hidden {
  display: none;
}

.navbar .action-nav li {
  margin-left: 5px;
  float: left;
  padding-top: 25px;
}

.navbar .action-nav li.search-btn {
  padding: 0;
}

.navbar .action-nav li.search-btn a {
  width: auto;
  background: none;
}

.navbar .action-nav a {
  display: inline-block;
  height: 25px;
  width: 90px;
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  background: #214860;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: 0 10px;
  vertical-align: middle;
  line-height: 23px;
}

.navbar .action-nav a i {
  width: 13px;
  margin-right: 10px;
}

.navbar .action-nav a.action-btn {
  background: #10BC09;
}

.navbar .action-nav a.action-btn.active {
  color: #CECECE;
  background: #F4F4F4;
  border: 1px solid #cecece;
}

.navbar .action-menu {
  display: none;
  position: absolute;
  top: 60px;
  right: 45px;
  width: 200px;
  min-height: 200px;
  background: #fff;
  z-index: 100;
  box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.16);
  border-radius: 9px;
  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
  text-align: left;
}

.navbar .action-menu .action-btns {
  top: 14px;
  right: 9px;
}

.navbar .action-menu .header {
  vertical-align: center;
  background: #F4F4F4;
  height: 50px;
  line-height: 50px;
  position: relative;
  padding: 0 80px 0 25px;
  font-size: 11px;
  font-weight: bold;
  color: #214860;
}

.navbar .action-menu .header i {
  font-size: 13px;
  color: #10BC09;
  margin-right: 10px;
}

.navbar .action-menu .converters {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: baseline;
  padding: 10px 25px;
}

.navbar .action-menu .converters a {
  display: inline-block;
}

.navbar .action-menu .converters a span {
  color: #214860;
  font-size: 17px;
}

.navbar .action-menu .menu {
  padding: 15px 0 10px 0;
  margin: 0 25px;
  border-top: 1px solid #707070;
}

.navbar .action-menu .menu .sepa {
  background: #707070;
  height: 1px;
  margin: 15px 0 10px 0;
}

.navbar .action-menu .menu a {
  display: block;
  font-size: 12px;
  font-weight: 100;
  color: #214860;
  line-height: 23px;
}

.navbar .action-menu .menu span {
  font-size: 16px;
  margin-right: 6px;
  line-height: 21px;
  float: left;
}

.navbar .action-menu .menu .nav-text {
  font-size: 12px;
}

.extranavlogo {
  padding-left: 40px;
  padding-top: 10px;
  float: left;
  display: none;
  height: 70px;
  width: 255px;
  background-color: transparent;
}

.extranavlogoexpanded {
  display: block;
  color: white !important;
}

.expand-nav .navbar-header,
.expand-nav .left-sidebar {
  width: 330px !important;
}

.expand-nav .big-nav {
  width: 260px;
  max-width: 1000px;
}

.expand-nav .left-sidebar {
  z-index: 9 !important;
  position: absolute;
}

.expand-nav .left-sidebar .small-logo {
  width: 90px;
  position: fixed;
  bottom: 25px;
  left: 10px;
}

.expand-nav .left-sidebar .toggleNav img {
  transform: rotate(0deg);
}

.expand-nav .page-wrapper {
  margin-left: 330px;
  width: calc(100% - 330px);
}

.page-wrapper {
  margin-left: 70px;
  padding: 110px 25px 25px 25px;
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(100% - 70px);
  overflow: hidden;
  z-index: 8;
  transition: all 0.3s ease-in-out;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.page-wrapper::-webkit-scrollbar {
  display: none;
}

.card-body {
  background: #fff;
  padding: 0;
  position: relative;
  box-shadow: 0px 10px 40px 0px rgba(9, 118, 188, 0.2);
  margin-bottom: 20px;
}

.card-body .chart-img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
}

.card-body .chart-img img {
  height: 100%;
  width: auto;
}

.card-body.chart-btn2 .chart-img {
  height: calc(100% + 10px);
  bottom: 0;
}

.card-body.chart-btn3 .chart-img {
  height: calc(100% + 20px);
  top: 0;
  bottom: none;
}

.card-body .icon {
  position: absolute;
  left: 16px;
  top: 19px;
}

.card-body .body {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  padding: 15px 15px 19px 45px;
}

.card-body .counter {
  width: 70px;
  font-weight: bold;
  font-size: 26px;
  line-height: 34px;
  text-align: right;
}

.card-body .info {
  width: calc(100% - 70px);
}

.card-body .progress {
  height: 4px;
}

.card-body .label {
  font-weight: bold;
  color: #214860;
  font-size: 11px;
}

.card-body .text {
  font-weight: 100;
  color: #214860;
  font-size: 12px;
}

.card-body .progress-bar {
  background: #fff;
  opacity: 0.5;
}

.card-body.blue {
  box-shadow: 0px 10px 40px 0px rgba(9, 118, 188, 0.2);
  color: #0976BC;
}

.card-body.blue .progress {
  background: #0976BC;
}

.card-body.purple {
  box-shadow: 0px 10px 40px 0px rgba(103, 25, 170, 0.2);
  color: #6719AA;
}

.card-body.purple .progress {
  background: #6719AA;
}

.card-body.green {
  box-shadow: 0px 10px 40px 0px rgba(16, 188, 9, 0.2);
  color: #10BC09;
}

.card-body.green .progress {
  background: #36E22F;
}

.card-body.pink {
  box-shadow: 0px 10px 40px 0px rgba(237, 60, 116, 0.2);
  color: #ED3C74;
}

.card-body.pink .progress {
  background: #FF629A;
}

.green-bg {
  background: #10BC09 !important;
}

.blue-bg {
  background: #0976BC !important;
}

.pink-bg {
  background: #ED3C74 !important;
}

.purple-bg {
  background: #6719AA !important;
}

.h100 {
  height: 100%;
}

.dashboard-col .dashboard-box:last-child {
  margin-bottom: 0;
}

.dashboard-box {
  background: #fff;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
  position: relative;
}

.dashboard-box.flex {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: flex-start;
}

.dashboard-box.lock {
  min-height: 250px;
  background: #fff url("../images/lock-icon.svg") center center no-repeat;
}

.dashboard-box .chart-box {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
  width: 100%;
}

.dashboard-box .box-title {
  padding-right: 100px;
}

.dashboard-box .box-title.bordered {
  border-bottom: 1px solid #EBF2F7;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.dashboard-box .box-title h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.dashboard-box .box-title p {
  font-size: 14px;
  margin-bottom: 15px;
  min-height: 21px;
}

.action-btns {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  z-index: 100;
}

.action-btns .expand:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: url("../images/expand-arrows.svg") center center no-repeat;
}

.action-btns .minimize:before {
  position: absolute;
  content: "";
  width: 9px;
  height: 1px;
  background: #fff;
  display: inline-block;
  top: 9px;
  left: calc(50% - 4px);
}

.action-btns .close {
  opacity: 1;
}

.action-btns .close:hover {
  opacity: 1;
}

.action-btns .close:before,
.action-btns .close:after {
  position: absolute;
  content: "";
  width: 9px;
  height: 1px;
  background: #fff;
  display: inline-block;
  top: 8px;
}

.action-btns .close:before {
  transform: rotate(45deg);
  left: 5px;
}

.action-btns .close:after {
  transform: rotate(-45deg);
  left: 5px;
}

.action-btns ul {
  display: block;
}

.action-btns ul li {
  margin-left: 9px;
  float: left;
}

.action-btns ul a {
  position: relative;
  width: 18px;
  height: 18px;
  color: #fff;
  line-height: 18px;
  display: block;
  text-align: center;
  border-radius: 9px;
  margin: 0;
  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
}

.pie-chart .pie-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: stretch;
  align-items: flex-start;
}

.pie-chart .pie-info .num {
  color: #10BC09;
  font-size: 31px;
  font-weight: bold;
  padding-right: 10px;
  line-height: 1;
}

.pie-chart .pie-info .text {
  color: #214860;
  font-size: 12px;
  line-height: 1.4;
}

.pie-chart .pie-info .text p {
  margin: 0 0 20px 0;
}

.pie-chart .pie-chart-labels {
  text-align: center;
  margin-top: 15px;
  font-size: 11px;
  line-height: 11px;
}

.pie-chart .pie-chart-labels>div {
  margin: 7px 0;
  color: #214860;
}

.pie-chart .pie-chart-labels>div:before {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
  content: "";
  margin-right: 5px;
}

.pie-chart .pie-chart-labels>div.green:before {
  background: #10BC09;
}

.pie-chart .pie-chart-labels>div.blue:before {
  background: #0976BC;
}

.chart-container {
  position: relative;
}

.chart-container .chart-labels {
  position: absolute;
}

.bar-chart .bar-row {
  margin-bottom: 15px;
}

.bar-chart .bar-label {
  font-size: 14px;
  font-weight: normal;
  position: relative;
  padding-right: 35px;
  color: #214860;
  line-height: 16px;
  margin-bottom: 5px;
}

.bar-chart .bar-label strong {
  font-weight: bold;
  font-size: 16px;
  margin-right: 5px;
}

.bar-chart .bar-label span {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 12px;
  font-weight: 500;
  color: #818487;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
}

.bar-chart .bar,
.bar-chart .bar-value {
  background: #EBF2F7;
  height: 6px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

.bar-chart .bar-value {
  background: #F9C300;
}

.bar-chart .bar-value.yellow {
  background: #F9C300;
}

.bar-chart .bar-value.cian {
  background: #56EEF4;
}

.bar-chart .bar-value.purple {
  background: #6610F2;
}

.bar-chart .bar-value.green {
  background: #04E762;
}

.bar-chart .bar-value.orange {
  background: #FF8552;
}

.dashboard-views {
  position: fixed;
  width: 45px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  background: #214860;
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.dashboard-views.dash-1 .dash-1-icon,
.dashboard-views.dash-2 .dash-2-icon,
.dashboard-views.dash-3 .dash-3-icon {
  display: inline-block;
}

.dashboard-views.open .menu {
  max-width: 1000px;
}

.dashboard-views .dash-icon {
  display: none;
}

.dashboard-views .elements {
  padding-top: 14px;
  height: 100%;
  cursor: pointer;
}

.dashboard-views .elements img {
  margin-bottom: 5px;
}

.dashboard-views .menu {
  height: 100%;
  max-width: 0px;
  position: absolute;
  overflow: hidden;
  bottom: 0;
  right: 0;
  background: green;
  z-index: 140;
  background: #214860;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  transition: max-width 0.3s ease-in-out;
}

.dashboard-views .menu .close-btn {
  position: absolute;
  top: calc(50% - 10px);
  right: 15px;
}

.dashboard-views .menu .close-btn:after,
.dashboard-views .menu .close-btn:before {
  background: #fff;
}

.dashboard-views .menu ul {
  display: flex;
  margin: 10px 45px 10px 10px;
}

.dashboard-views .menu li {
  margin: 0 1px;
}

.dashboard-views .menu li a {
  height: 40px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn {
  height: 20px;
  width: 20px;
  display: block;
}

.close-btn:after,
.close-btn:before {
  content: "";
  width: 10px;
  height: 2px;
  display: block;
  background: #214860;
  position: absolute;
  top: 9px;
  left: 5px;
}

.close-btn:after {
  /* IE 9 */
  /* Safari prior 9.0 */
  transform: rotate(45deg);
  /* Standard syntax */
}

.close-btn:before {
  /* IE 9 */
  /* Safari prior 9.0 */
  transform: rotate(-45deg);
  /* Standard syntax */
}

.close-chart-btn {
  display: block;
  border: 1px solid #0976BC;
  display: flex;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  color: #0976BC;
  align-items: center;
  justify-content: center;
  height: 100%;
  height: 68px;
}

.ui-button {
  margin: 0 0 15px 0 !important;
  background: #fff;
  width: 190px !important;
  border: none;
  font-size: 20px;
  font-weight: 100;
  padding: 10px 15px;
  color: #214860;
  z-index: 1000;
  position: relative;
  height: 43px;
}

.ui-button .ui-icon {
  background: url("../images/dropdown-arrow.svg") center center no-repeat;
  position: relative;
  z-index: 1001;
}

.ui-button:hover,
.ui-button:focus {
  margin-bottom: 15px;
  border: none;
  background: #fff;
  margin: 0;
  outline: none;
  transform: rotate(0deg);
}

.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background: url("../images/dropdown-arrow.svg") center center no-repeat;
}

.ui-button.ui-selectmenu-button-open .ui-icon {
  transform: rotate(180deg);
}

.ui-selectmenu-menu {
  background: #fff;
}

.ui-widget.ui-widget-content {
  margin-top: -43px;
  padding: 53px 0 10px 0;
  box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.16);
  border: none;
}

.ui-widget.ui-widget-content:before {
  content: "";
  width: calc(100% - 30px);
  margin: 0 15px;
  background: #cecece;
  height: 1px;
  display: block;
  position: absolute;
  top: 0;
  z-index: 1;
}

.ui-menu .ui-menu-item-wrapper {
  padding: 0;
}

.ui-menu-item .ui-state-active:hover,
.ui-menu-item:hover {
  background: #0976BC;
  color: #fff;
}

.ui-menu-item>div,
.ui-menu-item .ui-state-active {
  width: calc(100% - 30px);
  margin: 0 15px;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  background: #fff;
  color: #214860;
  border: none;
  padding: 0;
}

.accordion {
  list-style: none;
  padding: 0;
}

.accordion .inner {
  overflow: hidden;
  display: none;
}

.accordion a.toggle {
  display: block;
}

.accordion-style li {
  margin: 0 0 15px 0;
  box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.11);
  background: #fff;
}

.accordion-style .accordion-header {
  padding: 0 20px;
  font-size: 16px;
  font-weight: bold;
  color: #214860;
  position: relative;
  z-index: 50;
  border: none;
  height: 45px;
  line-height: 45px;
}

.accordion-style .accordion-header:hover,
.accordion-style .accordion-header.active {
  background: #0976BC;
  color: #fff;
}

.accordion-style .accordion-header:hover:before,
.accordion-style .accordion-header:hover:after,
.accordion-style .accordion-header.active:before,
.accordion-style .accordion-header.active:after {
  background: #fff;
}

.accordion-style .accordion-header:before,
.accordion-style .accordion-header:after {
  width: 10px;
  height: 2px;
  border-radius: 1px;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  background: #214860;
  position: absolute;
  top: 20px;
  right: 25px;
  content: "";
  display: block;
  transition: transform 0.3s ease-in-out;
}

.accordion-style .accordion-header:after {
  transform: rotate(90deg);
}

.accordion-style .accordion-header.active:after {
  transform: rotate(0deg);
}

.accordion-style .accordion-content {
  position: relative;
  z-index: 100;
  padding: 20px;
}

.accordion-style .accordion-content .row {
  margin-bottom: 15px;
  padding: 0;
}

.accordion-style .accordion-content .label {
  line-height: 20px;
  font-size: 11px;
  color: #214860;
  display: inline-block;
  font-weight: bold;
  margin: 12px 0;
}

.accordion-style .accordion-content .value {
  line-height: 20px;
  font-size: 14px;
  color: #214860;
  margin: 12px 0;
}

.accordion-style .accordion-content .form-control {
  background: #fff;
  height: 45px;
  border-radius: 0;
  font-size: 14px;
  color: #214860;
  border: 1px solid #cecece;
}

.accordion-style .accordion-content .form-control:focus {
  background: #fff;
  border-color: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.11);
}

.form-style .form-control {
  background: #fff;
  height: 45px;
  border-radius: 0;
  border: 1px solid #cecece;
}

.form-style .form-control:focus {
  background: #fff;
  border-color: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.11);
}

.form-style .form-group {
  display: flex;
  margin-bottom: 20px;
}

.form-style .form-group label,
.form-style .form-group .value {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: flex-start;
}

.form-style .form-group label {
  width: 150px;
  font-weight: bold;
  font-size: 11px;
  color: #214860;
  margin: 0;
}

.form-style .form-group .value {
  max-width: 280px;
  width: calc(100% - 150px);
  height: 45px;
  font-size: 14px;
  color: #214860;
}

.form-style .form-group .value .search-input {
  width: 100%;
  position: relative;
}

.form-style .form-group .value .search-input .form-control {
  padding-right: 55px;
}

.form-style .form-group .value .search-input .saerch-btn {
  position: absolute;
  width: 45px;
  height: 45px;
  color: #0976BC;
  top: 0;
  right: 0;
  background: #F4F4F4;
  border: 1px solid #cecece;
  border-left: none;
  text-align: center;
  line-height: 45px;
}

.form-style .form-group .value .search-input .saerch-btn:hover {
  background: #cecece;
}

.form-style .form-group .value .search-input .saerch-btn:before {
  position: absolute;
  cursor: pointer;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  z-index: 20;
}

.form-style .form-group .value .search-input .search-box {
  position: absolute;
  width: 300px;
  height: 310px;
  overflow: hidden;
  top: -10px;
  background: #fff;
  z-index: 100;
  box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: end;
  align-items: auto;
  align-content: start;
}

.form-style .form-group .value .search-input .search-box.right {
  left: calc(100% - 45px);
}

.form-style .form-group .value .search-input .search-box.left {
  right: calc(100% - 15px);
}

.form-style .form-group .value .search-input .search-box.hide {
  display: none;
}

.form-style .form-group .value .search-input .search-box .close-box {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;
}

.form-style .form-group .value .search-input .search-box .close-box:before,
.form-style .form-group .value .search-input .search-box .close-box:after {
  width: 16px;
  background: #A2A2A2;
  height: 2px;
  display: block;
  content: "";
  position: absolute;
  top: 13px;
  right: 0;
}

.form-style .form-group .value .search-input .search-box .close-box:before {
  transform: rotate(45deg);
}

.form-style .form-group .value .search-input .search-box .close-box:after {
  transform: rotate(-45deg);
}

.form-style .form-group .value .search-input .search-box .header-box {
  margin: 20px 0 10px 0;
  padding: 0 19px;
  height: 30px;
  width: 100%;
  display: flex;
}

.form-style .form-group .value .search-input .search-box .search-result {
  height: calc(100% - 60px);
  width: 100%;
  /* Track */
  /* Handle */
  /* Handle on hover */
}

.form-style .form-group .value .search-input .search-box .search-result ::-webkit-scrollbar {
  width: 5px;
}

.form-style .form-group .value .search-input .search-box .search-result ::-webkit-scrollbar-track {
  background: #CECECE;
}

.form-style .form-group .value .search-input .search-box .search-result ::-webkit-scrollbar-thumb {
  background: #214860;
}

.form-style .form-group .value .search-input .search-box .search-result ::-webkit-scrollbar-thumb:hover {
  background: #214860;
}

.form-style .form-group .value .search-input .search-box .search-result dl {
  margin: 0;
  height: 100%;
  display: block;
  padding: 0 19px;
  overflow: hidden;
  overflow-y: auto;
}

.form-style .form-group .value .search-input .search-box .search-result dd {
  margin: 0;
  text-align: left;
  border-bottom: 1px solid #cdcdcd;
  font-size: 14px;
  font-weight: 100;
  color: #214860;
  padding: 8px 0;
  line-height: 1.2;
  cursor: pointer;
}

.form-style .form-group .value .search-input .search-box .search-result dd:hover {
  border-bottom: 1px solid #214860;
}

.form-style .form-group .value .search-input .search-box .search-result dd:last-child {
  border: none;
}

.form-style .form-group .value .search-input .search-box .input-search {
  padding: 0 5px;
  width: 230px;
  height: 30px;
  background: #CECECE;
  border: none;
  border-radius: 6px;
}

.form-style .form-group .value .search-input .search-box .input-search:focus {
  border: none;
  outline: none;
}

#customer-info .avatar {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 10px;
  background: #F4F4F4;
  margin-bottom: 20px;
}

#customer-info .sku-num {
  font-size: 14px;
  color: #0976BC;
  font-weight: 100;
}

#customer-info .nav-tabs {
  border-color: #CECECE;
  margin-bottom: 35px;
}

#customer-info .nav-tabs .nav-link {
  font-size: 16px;
  font-weight: bold;
  color: #214860;
  border: none;
  margin-right: 30px;
  padding: 10px 20px;
}

#customer-info .nav-tabs .nav-link:hover {
  color: #0976BC;
}

#customer-info .nav-tabs .nav-link.active {
  color: #0976BC;
  border-bottom: 2px solid #0976BC;
}

#customers-adresses .top {
  display: flex;
  align-items: center;
  height: 55px;
  padding-bottom: 20px;
}

#customers-adresses .top .title {
  margin-right: 10px;
}

#customers-adresses .top .title h2 {
  font-weight: 100;
  color: #214860;
  font-size: 20px;
}

#customers-adresses .top .search-address {
  position: relative;
}

#customers-adresses .top .search-address a {
  display: inline-block;
  top: 8px;
  left: 10px;
  position: absolute;
}

#customers-adresses .top .search-address input {
  border: none;
  height: 35px;
  width: 0;
  border-radius: 12px;
  background: #F4F4F4;
  outline: none;
}

#customers-adresses .top .search-address input.active {
  padding-left: 35px;
  width: 250px;
}

#customers-adresses>.row {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  position: relative;
}

#customers-adresses>.row.style-2>div:nth-child(1) {
  flex: 0 1 auto;
}

#customers-adresses>.row.style-2>div:nth-child(2) {
  flex: 1 1 auto;
}

#customers-adresses>.row.style-2>div:nth-child(2)>div {
  height: 100%;
}

#customers-adresses>.row.style-3>div:nth-child(1),
#customers-adresses>.row.style-1>div:nth-child(1) {
  flex: 0 1 auto;
}

#customers-adresses>.row.style-3>div:nth-child(2),
#customers-adresses>.row.style-1>div:nth-child(2) {
  flex: 1 1 auto;
}

#customers-adresses #map {
  background: #F4F4F4;
}

#customers-adresses #map.view-1 {
  min-height: 250px;
  margin: 20px 0;
}

#customers-adresses #map.view-3 {
  min-height: 250px;
  margin: 0 0 20px 0;
}

#customers-adresses #map.view-2 {
  display: flex;
  height: 100%;
}

/*
  Konstantin Rachev
  Comment: Popper.js isolation fix.
*/
[data-popper-placement=right] {
  z-index: 999 !important;
  isolation: isolate !important;
}

.has-custom-scroll::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
}

/* Track */
.has-custom-scroll::-webkit-scrollbar-track {
  background: #f8f8f8;
}

/* Handle */
.has-custom-scroll::-webkit-scrollbar-thumb {
  background: #214860;
}

/* Handle on hover */
.has-custom-scroll::-webkit-scrollbar-thumb:hover {
  background: #f3f3f3;
}

/* Front-end fixes */
.is-table tbody td {
  border-bottom: 1px solid #F4F4F4;
  border-right: 1px solid #F4F4F4;
}

.is-table tbody td:last-child {
  border-right: none;
}

.expand-nav .left-sidebar {
  /* 'scorll' value forces visible scrollbar, which is not desirable */
  overflow-y: auto;
}

.expand-nav .left-sidebar::-webkit-scrollbar {
  width: 5px;
}

.expand-nav .left-sidebar::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.06);
}

.expand-nav .left-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.18);
  border-radius: 3px;
}

.expand-nav .left-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.28);
}

.expand-icon.is-active::before,
.expand-icon.is-active::after {
  background: #fff !important;
}

.on-left {
  right: 130px !important;
}

.expand-nav .left-sidebar .toggleNav {
  position: fixed;
  bottom: 100px;
  left: 315px;
  z-index: 999 !important;
}

.dataTable thead th {
  font-weight: 700 !important;
  font-size: 0.8rem;
}
/* === Toast Header === */
.dms-toast-header {
  background: var(--color-primary, #0976bc) !important;
  color: #fff !important;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}
.dms-toast-header .close,
.dms-toast-header button.close {
  color: #fff;
  opacity: 0.75;
}
.dms-toast-header .close:hover {
  opacity: 1;
}

/* === PWA Install Banner === */
.dms-install-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9990;
  background: var(--color-primary, #0976bc);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(19,58,126,0.35);
  padding: 16px 20px;
  max-width: 320px;
  font-family: var(--font-body, 'Segoe UI', system-ui, sans-serif);
  animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.dms-install-banner.hidden {
  display: none;
}
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dms-install-content {
  flex: 1;
}
.dms-install-content p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}
.dms-install-content .dms-install-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.dms-install-content .btn-install {
  background: #fff;
  color: var(--color-primary, #0976bc);
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.dms-install-content .btn-install:hover { opacity: 0.88; }
.dms-install-content .btn-dismiss {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.dms-install-content .btn-dismiss:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* === PWA Refresh Banner === */
#refreshpwa {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9995;
  background: var(--color-primary, #0976bc);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  padding: 12px 20px;
  display: none;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-family: var(--font-body);
  white-space: nowrap;
}
#refreshpwa .btn {
  padding: 5px 14px;
  font-size: 13px;
}

/* === Loading Overlay === */
#loadingOverlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: linear-gradient(150deg, #0f2041 0%, #0d1629 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  color: #fff;
  font-family: var(--font-body);
}
#loadingOverlay .loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
#loadingOverlay p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

/* === CSS Tooltips for collapsed small-nav === */
.small-nav .sidebar-nav > ul {
  overflow: visible !important;
  max-height: none !important;
}
.small-nav .sidebar-nav > ul > li[data-tooltip] {
  position: relative;
}
.small-nav .sidebar-nav > ul > li[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,23,42,0.92);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 5px;
  pointer-events: none;
  z-index: 10100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.small-nav .sidebar-nav > ul > li[data-tooltip]:hover::before {
  content: '';
  position: absolute;
  left: calc(100% + 2px);
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: rgba(15,23,42,0.92);
  pointer-events: none;
  z-index: 10100;
}

/* === Skip Navigation (Accessibility) === */
.skip-navigation {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary, #0976bc);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 6px 0;
  font-size: 14px;
  z-index: 20000;
  transition: top 0.2s ease;
}
.skip-navigation:focus {
  top: 0;
}

/* === Screen reader only === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* === Host Frame === */
#hostFrame {
  width: 100%;
  height: 100%;
  border: none;
}

/* === Announcement Panel — critical initial state ===
   system-announcements.css (via app.scss → bundle) loads with all.js,
   which arrives after first paint. This rule hides the panel immediately
   at parse time (app.css is in <head>) to prevent a flash of visible panel. */
.announcement-panel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
