/* Layout: Header, Body, Footer 100% isolated – অ্যাপ ব্রাউজার ভিউপোর্টে FIT, ফুটার টাস্কবারের নিচে যাবে না */
:root {
  --layout-header-height: 60px;
  --layout-footer-height: 48px;
  --layout-header-z-index: 1100;
  --layout-body-z-index: 1;
  --layout-footer-z-index: 1050;
  --app-height: 100vh; /* JS দিয়ে window.innerHeight/visualViewport সেট হয় */
}
body {
  color: #525252;
  background: #6AA6D6 url(../img/devoops_pattern_b10.png) 0 0 repeat;
}
.body-expanded, .modal-open {
  overflow-y:hidden;
  margin-right: 15px;
}
.body-expanded .expanded-panel, .fancybox-margin .expanded-panel, .modal-open .expanded-panel {
  margin-right: 15px;
}
.body-screensaver {
  overflow: hidden;
}
h1, .h1, h2, .h2, h3, .h3 {
  margin:0;
}
/* Navbar: 2-part layout – Part 1 = brand, Part 2 = search + user (single row) */
.navbar .container-fluid.expanded-panel > .row.navbar-header-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  overflow: visible;
}
.navbar-header-part.navbar-header-brand {
  flex: 0 0 auto;
  width: auto;
  min-width: fit-content;
  max-width: none;
}
.navbar-header-part.navbar-header-right {
  flex: 1 1 auto;
  min-width: 0;
  overflow: visible;
}
.navbar-header-right .navbar-header-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  min-height: 50px;
  overflow: visible;
}
.navbar-header-right .navbar-search-area {
  flex: 1 1 auto;
  min-width: 0;
}
.navbar-header-right .navbar-user-area {
  flex: 0 0 auto;
  white-space: nowrap;
  margin-left: auto;
}
.navbar-header-right .navbar-user-area .panel-menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
#logo {
  position:relative;
  /*background: #525252 url(../img/devoops_pattern_b10.png) 0 0 repeat;*/
  /*background: url(../img/devoops_pattern_b10.png);*/
}
#logo a {
  color: #fff;
  font-family: 'Righteous', cursive;
  display: block;
  font-size: 20px;
  line-height: 50px;
  /*background: url(../img/logo.png) right 42px no-repeat;*/
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
#logo a:hover {
  background-position: right 25px;
  text-decoration: none;
}
/* Header: 100% isolated zone – fixed height, own stacking, no overlap with body/footer */
.navbar {
  margin: 0;
  border: 0;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  min-height: var(--layout-header-height, 60px);
  height: var(--layout-header-height, 60px);
  max-height: var(--layout-header-height, 60px);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  box-shadow: 0 1px 2px #272727;
  z-index: var(--layout-header-z-index, 1100) !important;
  overflow: visible !important;
}
.body-expanded .navbar {
  z-index: var(--layout-header-z-index, 1100);
}
a.show-sidebar {
  float: left;
  color:#6d6d6d;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
a.show-sidebar:hover {
  color:#000;
}
/* #sidebar-left ও #content এর স্টাইল উপরে #main ব্লকে (পার্সিস্টেন্ট টপবার লেআউট) */
.full-content {
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.nav.main-menu, .nav.msg-menu {
  margin:0 -15px;
}
.nav.main-menu > li > a, .nav.msg-menu > li > a {
  text-align: center;
  color:#f0f0f0;
  min-height: 40px;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background:rgba(0, 0, 0, 0.1);
}
.nav.main-menu > li > a:hover, .nav.main-menu > li > a:focus, .nav.main-menu > li.active > a, .nav.main-menu .open > a, .nav.main-menu .open > a:hover, .nav.main-menu .open > a:focus, .dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover, .dropdown-menu > li.active > a,
.nav.msg-menu > li > a:hover, .nav.msg-menu > li > a:focus, .nav.msg-menu > li.active > a, .nav.msg-menu .open > a, .nav.msg-menu .open > a:hover, .nav.msg-menu .open > a:focus {
  background:rgba(0, 0, 0, 0.3);
  
  /*color:#f0f0f0;*/
}
.nav.main-menu a.active, .nav.msg-menu a.active {
  background:rgba(0, 0, 0, 0.2);
}
.nav.main-menu a.active:hover, .nav.msg-menu a.active:hover {
  background:rgba(0, 0, 0, 0.2);
}
.nav.main-menu a.active-parent, .nav.msg-menu a.active-parent {
  background: rgba(0, 0, 0, 0.3);
}
.nav.main-menu a.active-parent:hover, .nav.msg-menu a.active-parent:hover {
  background: rgba(0, 0, 0, 0.3);
}
.nav.main-menu > li > a > i, .nav.msg-menu > li > a > i {
  font-size: 18px;
  width: auto;
  display: block;
  text-align: center;
  vertical-align: middle;
}
.main-menu .dropdown-menu {
  position: absolute;
  z-index: 2001;
  left: 100%;
  top: 0;
  float: none;
  margin: 0;
  border: 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  padding: 0;
  background: #6AA6D6 url(../img/devoops_pattern_b10.png) 0 0 repeat;
  box-shadow: none;
  visibility:hidden;
}
.main-menu .active-parent:hover + .dropdown-menu {
  visibility:visible;
}
.main-menu .active-parent + .dropdown-menu {
  /* Touch/PWA: there is no reliable :hover, so show when JS sets active-parent. */
  visibility:visible;
}
.main-menu .active-parent + .dropdown-menu:hover {
  visibility:visible;
}
.nav.main-menu > li.open > ul.dropdown-menu {
  /* JS opens dropdown with li.open (even on touch devices). */
  visibility:visible;
}
.main-menu .dropdown-menu > li > a {
  padding:9px 15px 9px 40px;
  color:#f0f0f0;

}
.main-menu .dropdown-menu > li:first-child > a {
  -webkit-border-radius: 0 4px 0 0;
  -moz-border-radius: 0 4px 0 0;
  border-radius: 0 4px 0 0;
}
.main-menu .dropdown-menu > li:last-child > a {
  -webkit-border-radius: 0 0 4px 0;
  -moz-border-radius: 0 0 4px 0;
  border-radius: 0 0 4px 0;
}
#top-panel {
  line-height: 50px;
  height: 50px;
  background: #ebebeb;
}
/* টপবার পার্সিস্টেন্ট: মেইন এরিয়া টপবারের নিচে ফিক্সড, শুধু ডান পাশের কনটেন্ট স্ক্রল হবে */
/* 100% Responsive: viewport ও বডি যেন সব ডিভাইসে ঠিক থাকে */
html {
  height: var(--app-height);
  max-height: var(--app-height);
  overflow: hidden;
  -webkit-text-size-adjust: 100%;
}
body {
  position: relative;
  overflow: hidden;
  height: var(--app-height);
  max-height: var(--app-height);
  min-height: 0;
  min-width: 0;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}
/* র‍্যাপার = ভিউপোর্ট; ন্যাভ/মেইন/ফুটার অ্যাবসোলিউট – গ্যাপ নেই, ফুটার নিচে যাবে না */
#app-viewport.app-viewport {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  box-sizing: border-box;
}
#app-viewport .navbar {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: var(--layout-header-height, 60px) !important;
  min-height: var(--layout-header-height, 60px) !important;
  max-height: var(--layout-header-height, 60px) !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
  overflow: visible;
}
#app-viewport #main {
  position: absolute;
  top: var(--layout-header-height, 60px);
  left: 0;
  right: 0;
  bottom: var(--layout-footer-height, 48px);
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#app-viewport #main > .row {
  margin-top: 0;
  height: 100%;
}
#app-viewport #app-footer.app-footer-fixed {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--layout-footer-height, 48px);
  min-height: var(--layout-footer-height, 48px);
  max-height: var(--layout-footer-height, 48px);
}
/*
 * Body: 100% isolated zone – strictly between header and footer, own stacking, no overlap.
 */
#main {
  position: fixed;
  top: var(--layout-header-height, 60px);
  left: 0;
  right: 0;
  bottom: var(--layout-footer-height, 48px);
  margin: 0;
  margin-top: 0 !important;
  overflow: hidden;
  z-index: var(--layout-body-z-index, 1);
  padding-left: 1px !important;
  padding-bottom: 0;
  contain: layout style;
}
#main > .row {
  height: 100%;
  max-height: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  flex-wrap: nowrap;
  min-height: 0;
  width: 100%;
  overflow: hidden;
}
/* মেইন কনটেন্ট ফুল উইডথ – ভাঙা লেআউট ঠিক; কনটেন্ট বডি বাধ্যতামূলক স্ক্রল */
#main > .row > .container-fluid {
  flex: 1;
  min-width: 0;
  min-height: 0;
  width: 100%;
  max-width: none;
  padding: 0 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
}
#main > .row > .container-fluid > .row {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
}
#main #content.col-sm-10 {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  width: 100%;
}
/* সাইডবার: বাম প্যাডিং #main.container-fluid এ ১px; নীচে প্যাডিং ২ (.sidebar-inner এ); ফুটারের টপে শেষ */
#sidebar-left {
  position: relative;
  z-index: inherit;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
#content {
  position: relative;
  z-index: 10;
  flex: 1 1 0%;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ebebeb;
  box-shadow: none;
  padding: 0 !important;
  margin-bottom: 0 !important;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
#content-header.content-header-fixed {
  flex: 0 0 auto;
  min-height: 52px;
  padding: 14px 20px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  z-index: 1;
}
/* মেইন কন্টেন্ট বডি: ৩ লেয়ার (ISO স্ট্যাকিং – নিচ থেকে উপরে ১, ২, ৩) */
#content-body.content-body-scroll {
  position: relative;
  flex: 1 1 0%;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  background: #f0f2f5;
}
/* Layer 1: Desktop Wallpaper Layer (z-index: 1) – ওয়ালপেপার + শর্টকাট + মিনিমাইজড বক্স */
.content-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.content-layer.layer-desktop {
  z-index: 1;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  padding: 20px;
  padding-bottom: 56px;
}
.layer-desktop-wallpaper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: #f0f2f5;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}
body.app-theme-dark .layer-desktop-wallpaper {
  background-color: #0f172a;
}
.layer-desktop > #dashboard-shortcuts {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  min-height: 50px;
}
.desktop-minimized-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
/* Layer 2: ctOS Branding Layer (z-index: 2) */
.content-layer.layer-ctos-branding {
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
}
.ctos-branding-content {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(0,0,0,0.12);
  text-transform: uppercase;
}
body.app-theme-dark .ctos-branding-content {
  color: rgba(255,255,255,0.12);
}
/* Layer 3: Window Layer (z-index: 3) – সকল কন্টেন্ট উইন্ডো */
.content-layer.layer-windows {
  z-index: 3;
  pointer-events: none;
  padding: 0;
}
.content-layer.layer-windows .desktop-window {
  pointer-events: auto;
}
#content-body.content-body-scroll.is-dashboard-wallpaper {
  background: transparent;
}
/* উইন্ডো মিনিমাইজ/ক্লোজ = শুধু ডেস্কটপ (Windows 11 মতো); কন্টেন্ট হেডার লুকানো */
#content.desktop-only-view #content-header {
  display: none !important;
}
.dashboard-shortcuts-row {
  padding: 4px 0;
}
.dashboard-shortcut-tile {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  min-height: 72px;
  padding: 8px;
  background: rgba(255,255,255,0.85);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-decoration: none;
  color: #1a1a2e;
  font-size: 11px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
}
.dashboard-shortcut-tile:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transform: translateY(-1px);
  color: #1a1a2e;
}
.dashboard-shortcut-tile .shortcut-icon { font-size: 24px; margin-bottom: 4px; color: #4f46e5; }
.dashboard-shortcut-tile .shortcut-remove {
  position: absolute;
  top: 2px;
  right: 4px;
  font-size: 12px;
  opacity: 0.6;
  cursor: pointer;
  color: #666;
  padding: 0 2px;
}
.dashboard-shortcut-tile .shortcut-remove:hover { opacity: 1; color: #c00; }
#content-body.dashboard-drop-active { outline: 2px dashed rgba(99,102,241,0.5); outline-offset: 4px; }
.sidebar-menu-draggable { cursor: grab; }
.sidebar-menu-draggable:active { cursor: grabbing; }

/* ড্যাশবোর্ড = ডেস্কটপ; Window Layer – ফুল সাইজ উইন্ডো ডিফল্ট */
.desktop-window {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 0;
  min-height: 0;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 10;
  border: none;
}
.desktop-window.closed {
  display: none !important;
}
.desktop-window.minimized {
  display: none !important;
}
/* মিনিমাইজড উইন্ডো = ডেস্কটপে শর্টকাট সাইজের টাইল + ফ্ল্যাশ */
.minimized-window-tile {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  min-height: 72px;
  padding: 8px;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  font-size: 11px;
  text-align: center;
  color: #1a1a2e;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  z-index: 2;
  animation: minimized-tile-flash 1.5s ease-in-out infinite;
}
.minimized-window-tile:hover {
  animation: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  color: #1a1a2e;
}
.minimized-window-tile .minimized-tile-icon {
  font-size: 24px;
  margin-bottom: 4px;
  animation: minimized-tile-color-flash 1.4s ease-in-out infinite;
}
.minimized-window-tile .minimized-tile-icon i {
  display: inline-block;
}
.minimized-window-tile .minimized-tile-label {
  line-height: 1.2;
  word-break: break-word;
}
body.app-theme-dark .minimized-window-tile {
  background: rgba(30,41,59,0.95);
  border-color: rgba(255,255,255,0.08);
  color: #e2e8f0;
}
body.app-theme-dark .minimized-window-tile .minimized-tile-icon { color: #818cf8; }
@keyframes minimized-tile-flash {
  0%, 100% { opacity: 1; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
  50% { opacity: 0.9; box-shadow: 0 0 0 2px rgba(99,102,241,0.4); }
}
@keyframes minimized-tile-color-flash {
  0%, 100% { color: #4f46e5; opacity: 1; }
  50% { color: #6366f1; opacity: 0.85; }
}
body.app-theme-dark .minimized-window-tile .minimized-tile-icon {
  animation-name: minimized-tile-color-flash-dark;
}
@keyframes minimized-tile-color-flash-dark {
  0%, 100% { color: #818cf8; opacity: 1; }
  50% { color: #a5b4fc; opacity: 0.9; }
}
.minimized-window-tile:hover .minimized-tile-icon {
  animation: none;
  color: #4f46e5;
  opacity: 1;
}
body.app-theme-dark .minimized-window-tile:hover .minimized-tile-icon { color: #a5b4fc; }
body.app-theme-dark .minimized-window-tile:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
body.app-theme-dark .desktop-window {
  background: #1e293b;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.desktop-window-titlebar {
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0 12px 0 10px;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  cursor: move;
  user-select: none;
  flex-shrink: 0;
  -webkit-app-region: drag;
}
body.app-theme-dark .desktop-window-titlebar {
  background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
  border-bottom-color: rgba(255,255,255,0.08);
}
.desktop-window-icon {
  margin-right: 8px;
  font-size: 14px;
  color: #475569;
}
body.app-theme-dark .desktop-window-icon { color: #94a3b8; }
.desktop-window-title {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}
body.app-theme-dark .desktop-window-title { color: #e2e8f0; }
.desktop-window-buttons {
  display: flex;
  align-items: center;
  -webkit-app-region: no-drag;
}
.desktop-window-btn {
  width: 28px;
  height: 28px;
  margin-left: 2px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background 0.15s, color 0.15s;
}
.desktop-window-btn:hover {
  background: rgba(0,0,0,0.06);
  color: #1e293b;
}
body.app-theme-dark .desktop-window-btn {
  color: #94a3b8;
}
body.app-theme-dark .desktop-window-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #e2e8f0;
}
.desktop-window-close:hover {
  background: #dc2626 !important;
  color: #fff !important;
}
/* Scroll area: extra bottom padding so content never hides under fixed footer */
.desktop-window-body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 16px;
  padding-bottom: calc(var(--layout-footer-height, 48px) + 20px);
  background: #fff;
}
.desktop-window-body > #ajax-content {
  min-height: 0;
}
body.app-theme-dark .desktop-window-body {
  background: #1e293b;
}
#content-body.content-body-scroll.is-dashboard-wallpaper .layer-desktop-wallpaper {
  background-color: #f0f2f5;
}
.layer-desktop {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.desktop-window .desktop-window-body {
  overflow-y: auto !important;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
#content-body #ajax-content,
#content-body .content-section {
  min-height: 0;
}
/* Footer: 100% isolated zone – fixed height, own stacking, no overlap with body/header */
.app-footer-fixed#app-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--layout-footer-height, 48px);
  min-height: var(--layout-footer-height, 48px);
  max-height: var(--layout-footer-height, 48px);
  z-index: var(--layout-footer-z-index, 1050);
  background: #1e293b;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  line-height: var(--layout-footer-height, 48px);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  border-top: 1px solid rgba(255,255,255,0.06);
  contain: layout style;
}
#app-footer .container-fluid { padding: 0 20px; }
#app-footer .row { margin: 0; }

/* ========== Premium Theme (base) ========== */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1a1a2e;
}
/* টপবার – পার্সিস্টেন্ট; কনটেন্ট স্ক্রল হলে ব্যাকগ্রাউন্ড ডিপ */
.navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 0;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.navbar.content-scrolled {
  background: #f8fafc;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.navbar .expanded-panel {
  background: transparent;
}
#top-panel {
  background: transparent;
  line-height: 56px;
  height: 56px;
}
.panel-menu > li > a,
.panel-menu a.account {
  color: #374151;
}
/* Premium theme: main area colours only; top/bottom from global #main (footer clearance) */
#main {
  background: #f0f2f5;
  top: var(--layout-header-height, 60px);
  margin-top: 0 !important;
  padding-left: 1px !important;
}
/* সাইডবার – ফুল ওয়াইড, চারকোল (ডার্ক) / সিলভার (লাইট) */
#sidebar-left.sidebar-premium {
  background: #36454F;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 280px;
  min-width: 280px;
  border-radius: 0;
  overflow: hidden;
  max-height: 100%;
  transition: width 0.25s ease, min-width 0.25s ease, background 0.25s ease;
}
#sidebar-left.sidebar-premium.sidebar-theme-light {
  background: #c0c0c0;
}
#sidebar-left.sidebar-premium.collapsed {
  width: 72px;
  min-width: 72px;
}
#main > .row > #sidebar-left.sidebar-premium.col-xs-2,
#main > .row > #sidebar-left.sidebar-premium.col-sm-2 {
  flex: 0 0 280px;
  max-width: 280px;
}
#main > .row > #sidebar-left.sidebar-premium.collapsed.col-xs-2,
#main > .row > #sidebar-left.sidebar-premium.collapsed.col-sm-2 {
  flex: 0 0 72px;
  max-width: 72px;
}
.sidebar-inner {
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
  min-height: 0;
  padding: 8px 0 10px 0;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.sidebar-top {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 10px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#sidebar-left.sidebar-theme-light .sidebar-top {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}
.sidebar-toggle-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.sidebar-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.sidebar-search {
  flex: 0 0 auto;
  position: relative;
  padding: 0 0 12px;
}
.sidebar-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  pointer-events: none;
}
.sidebar-search-input {
  width: 100%;
  height: 40px;
  padding: 0 14px 0 38px;
  border-radius: 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 14px;
  transition: background 0.2s ease;
}
.sidebar-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.sidebar-search-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
}
#sidebar-left.collapsed .sidebar-search {
  padding: 0 12px 10px;
}
#sidebar-left.collapsed .sidebar-search-input {
  width: 40px;
  padding: 0;
  text-indent: -999px;
  overflow: hidden;
}
#sidebar-left.collapsed .sidebar-search i {
  left: 50%;
  transform: translate(-50%, -50%);
}
/* সাইডবার মেনু: Menu Display Area = Main Area - (লাল অংশ: টপ+সার্চ). JS sets .sidebar-nav max-height. */
.sidebar-nav {
  flex: 1 1 0%;
  min-height: 0;
  height: 0;
  max-height: var(--menu-display-area-height, 100%);
  overflow-y: auto !important;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}
.nav.main-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav.main-menu > li {
  margin-bottom: 2px;
}
.nav.main-menu > li > a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 6px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
  border: 0;
  text-decoration: none;
}
#sidebar-left.sidebar-theme-light .nav.main-menu > li > a {
  color: #333;
}
.nav.main-menu > li > a i.fa-chevron-down {
  margin-left: auto;
  margin-right: 0;
  font-size: 12px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.nav.main-menu > li.open > a i.sidebar-chevron {
  transform: rotate(180deg);
}
#sidebar-left.collapsed .nav.main-menu > li > a i.sidebar-chevron {
  display: none;
}
.nav.main-menu > li > a i:not(.sidebar-chevron) {
  font-size: 18px;
  width: 28px;
  min-width: 28px;
  margin-right: 12px;
  text-align: center;
  opacity: 0.9;
}
.nav.main-menu > li > a:hover,
.nav.main-menu > li > a:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.nav.main-menu a.active,
.nav.main-menu a.active-parent {
  background: #6366f1;
  color: #fff;
}
.nav.main-menu a.active i,
.nav.main-menu a.active-parent i {
  opacity: 1;
}
.nav.main-menu a.active:hover,
.nav.main-menu a.active-parent:hover {
  background: #5558e3;
  color: #fff;
}
#sidebar-left.collapsed .nav.main-menu > li > a span {
  display: none;
}
#sidebar-left.collapsed .nav.main-menu > li > a {
  justify-content: center;
  padding: 0;
}
#sidebar-left.collapsed .nav.main-menu > li > a i {
  margin-right: 0;
}
#sidebar-left.collapsed .sidebar-top {
  justify-content: center;
  padding: 0 12px 12px;
}
#sidebar-left.collapsed .sidebar-top {
  flex-direction: column;
  gap: 8px;
}
#sidebar-left.collapsed .sidebar-logo {
  margin: 0 auto;
}
#sidebar-left.collapsed .sidebar-toggle-btn {
  margin: 0 auto;
}
.sidebar-bottom {
  padding: 12px 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}
#sidebar-left.sidebar-theme-light .sidebar-bottom {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.sidebar-theme-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.sidebar-theme-btn i {
  font-size: 20px;
  opacity: 1;
  min-width: 24px;
  text-align: center;
}
.sidebar-theme-btn .theme-icon-dark,
.sidebar-theme-btn .theme-icon-light {
  font-size: 20px;
}
.sidebar-theme-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
#sidebar-left.sidebar-theme-light .sidebar-theme-btn {
  background: rgba(0, 0, 0, 0.08);
  color: #333;
}
#sidebar-left.sidebar-theme-light .sidebar-theme-btn:hover {
  background: rgba(0, 0, 0, 0.14);
  color: #111;
}
#sidebar-left.collapsed .sidebar-theme-btn .sidebar-label-text {
  display: none;
}
/* সাইডবার লাইট (সিলভার) থিম */
#sidebar-left.sidebar-theme-light .sidebar-search-input {
  background: rgba(0, 0, 0, 0.08);
  color: #1a1a1a;
}
#sidebar-left.sidebar-theme-light .sidebar-search-input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
#sidebar-left.sidebar-theme-light .sidebar-search i {
  color: rgba(0, 0, 0, 0.45);
}
#sidebar-left.sidebar-theme-light .nav.main-menu > li > a:hover,
#sidebar-left.sidebar-theme-light .nav.main-menu > li > a:focus {
  background: rgba(0, 0, 0, 0.1);
  color: #111;
}
#sidebar-left.sidebar-theme-light .nav.main-menu a.active,
#sidebar-left.sidebar-theme-light .nav.main-menu a.active-parent {
  background: #2563eb;
  color: #fff;
}
#sidebar-left.sidebar-theme-light .sidebar-toggle-btn {
  background: rgba(0, 0, 0, 0.1);
  color: #333;
}
#sidebar-left.sidebar-theme-light .sidebar-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.18);
  color: #111;
}
#sidebar-left.sidebar-theme-light .main-menu .dropdown-menu {
  background: #e8e8e8;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
#sidebar-left.sidebar-theme-light .main-menu .dropdown-menu > li > a,
#sidebar-left.sidebar-theme-light .main-menu .dropdown-menu > li > a .submenu-item-text {
  color: #000;
}
#sidebar-left.sidebar-theme-light .main-menu .dropdown-menu > li > a:hover,
#sidebar-left.sidebar-theme-light .main-menu .dropdown-menu > li > a:focus,
#sidebar-left.sidebar-theme-light .main-menu .dropdown-menu > li > a:hover .submenu-item-text,
#sidebar-left.sidebar-theme-light .main-menu .dropdown-menu > li > a:focus .submenu-item-text {
  background: rgba(0, 0, 0, 0.08);
  color: #000;
}
/* কল্যাপ্সড সাইডবার – মেইন ও সাব-মেনু আইকন স্পষ্ট */
#sidebar-left.collapsed .nav.main-menu > li > a i:not(.sidebar-chevron) {
  font-size: 22px;
  width: 36px;
  min-width: 36px;
  margin-right: 0;
  opacity: 1;
}
#sidebar-left.collapsed .nav.main-menu > li > a {
  min-height: 48px;
  padding: 0;
  justify-content: center;
}
#sidebar-left.collapsed .main-menu .dropdown-menu > li > a i {
  font-size: 18px;
  min-width: 24px;
  margin-right: 10px;
  opacity: 1;
}
#sidebar-left.collapsed .main-menu .dropdown-menu > li > a {
  padding: 10px 14px;
}
/* সম্পূর্ণ অ্যাপ লাইট মোড */
body.app-theme-light .navbar {
  background: #f0f0f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
body.app-theme-light #main,
body.app-theme-light #content-body {
  background: #e8e8e8;
}
body.app-theme-light #content-header {
  background: #fff;
  border-bottom-color: #ddd;
}
body.app-theme-light #app-footer {
  background: #a0a0a0;
}
.navbar-brand-name {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  white-space: nowrap;
}
body.app-theme-light .navbar-brand-name {
  color: #333;
}
.navbar-brand-link .navbar-brand-name { margin-left: 0; }
/* ডার্ক/লাইট মোড – ডানপাশে প্রোফেশনাল সাইড স্ট্রিপ (শুধু আইকন) */
.app-theme-toggle-strip {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1040;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.12);
  background: rgba(30, 41, 59, 0.95);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.app-theme-toggle-strip:hover {
  background: rgba(30, 41, 59, 1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.18);
}
body.app-theme-light .app-theme-toggle-strip {
  background: rgba(240, 240, 240, 0.98);
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}
body.app-theme-light .app-theme-toggle-strip:hover {
  background: #fff;
}
.app-theme-toggle-strip-btn {
  width: 100%;
  height: 48px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: color 0.2s ease;
}
.app-theme-toggle-strip-btn:hover { color: #fff; }
body.app-theme-light .app-theme-toggle-strip-btn {
  color: #333;
}
body.app-theme-light .app-theme-toggle-strip-btn:hover {
  color: #111;
}
.app-theme-toggle-strip-btn i {
  font-size: 22px;
}
.app-drawer-toggle-strip {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1041;
  width: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 0 10px 10px 0;
  box-shadow: 4px 0 20px rgba(0,0,0,0.12);
  background: rgba(30, 41, 59, 0.95);
  transition: background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.app-drawer-toggle-strip:hover {
  background: rgba(30, 41, 59, 1);
  box-shadow: 4px 0 24px rgba(0,0,0,0.18);
}
body.app-theme-light .app-drawer-toggle-strip {
  background: rgba(240, 240, 240, 0.98);
  box-shadow: 4px 0 20px rgba(0,0,0,0.15);
}
body.app-theme-light .app-drawer-toggle-strip:hover {
  background: #fff;
}
body.drawer-open .app-drawer-toggle-strip {
  opacity: 0;
  pointer-events: none;
}
#sidebar-left.collapsed .sidebar-bottom .sidebar-label-text {
  display: none;
}
#sidebar-left.collapsed .sidebar-bottom .sidebar-label {
  justify-content: center;
}
.main-menu .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 0;
  padding: 6px 0;
  background: #252525;
  margin-top: 2px;
  margin-left: 8px;
}
.main-menu .dropdown-menu > li > a {
  padding: 10px 18px;
  border-radius: 8px;
  margin: 0 8px 2px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  transition: background 0.2s ease, color 0.2s ease;
}
.main-menu .dropdown-menu > li > a .submenu-item-text {
  color: inherit;
}
.main-menu .dropdown-menu > li > a:hover,
.main-menu .dropdown-menu > li > a:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.main-menu .dropdown-menu > li > a i {
  margin-right: 10px;
  opacity: 0.85;
}
#sidebar-left.collapsed .main-menu .dropdown-menu {
  margin-left: 0;
  margin-top: 0;
}
#sidebar-left .main-menu > li.menu-search-hidden {
  display: none !important;
}
/* কনটেন্ট এরিয়া – ফুল উইডথ, কার্ড স্টাইল */
#content {
  background: #f0f2f5;
  box-shadow: none;
  padding: 0;
}
#content .box {
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 0;
  overflow: hidden;
  background: #fff;
  margin-bottom: 12px;
}
#content .box.no-title .box-header,
#content .box .box-header {
  display: none !important;
}
#content .box-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 20px;
  border-radius: 12px 12px 0 0;
}
#content .box-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
}
#content .row.content-section {
  margin-bottom: 10px;
}
#content .row.content-section:last-child {
  margin-bottom: 0;
}
#content .box-content {
  padding: 16px 20px;
}
#content .btn,
#content .btn-primary,
#content .btn-default {
  border-radius: 10px;
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.2s ease;
}
#content .btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  border: 0;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.35);
}
#content .btn-primary:hover {
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.45);
  transform: translateY(-1px);
}
#content .breadcrumb {
  background: transparent;
  padding: 12px 0;
  margin-bottom: 20px;
  font-size: 13px;
  color: #6b7280;
}
#content .breadcrumb a {
  color: #6366f1;
}
/* প্রিলোডার/ড্যাশবোর্ড ভেতরের কনটেন্ট ফুল উইডথ */
#content .preloader,
#content #ajax-content {
  max-width: none;
  width: 100%;
}
/* Master Data Setup বক্স – প্রিমিয়াম (Company Setup পেজে উপরে) */
#content .box.premium-master-box {
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: #fff;
  margin-bottom: 12px;
}
#content .box.premium-master-box .box-content {
  padding: 18px 20px;
}
#content .box.premium-master-box .master-data-load,
#content .box.premium-master-box .btn-primary {
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
  margin-right: 10px;
  margin-bottom: 8px;
  border: 0;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
  transition: all 0.2s ease;
}
#content .box.premium-master-box .master-data-load:hover,
#content .box.premium-master-box .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}
/* Content Header প্রিমিয়াম */
#content-header.content-header-fixed {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}
/* ফুটার প্রিমিয়াম */
.app-footer-fixed#app-footer {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
/* টেবিল ও ফর্ম প্রিমিয়াম — টেবিলের ভেতর ড্রপডাউন কেটে না যাওয়ার জন্য টেবিলে overflow: visible */
#content .table {
  border-radius: 10px;
  overflow: visible;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
#content .form-control {
  border-radius: 8px;
  border-color: #e2e8f0;
}
#content .form-control:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
/* ========== end Premium Theme ========== */

#search {
  position: relative;
  margin-left: 20px;
}
#search > input {
  width: 80%;
  background: #dfdfdf;
  border: 1px solid #C7C7C7;
  text-shadow:0 1px 1px #EEE;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #686868;
  line-height: 1em;
  height: 30px;
  padding: 0 35px 0 10px;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
#search > input + i {
  opacity:0;
  position: absolute;
  top: 18px;
  right: 10px;
  color: #fff;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
#search > input:focus {
  width:100%;
  outline:none;
}
#search > input:focus + i {
  opacity:1;
}
.panel-menu {
  margin: 0;
}
.top-panel-right {
  padding-left: 0;
}
.panel-menu > li > a {
  padding: 0 5px 0 10px;
  line-height: 50px;
}
.panel-menu > li > a:hover {
  background: none;
}
.panel-menu a.account {
  height: 50px;
  padding: 5px 0 5px 10px;
  line-height: 18px;
}
.panel-menu i {
  margin-top: 8px;
  padding: 5px;
  font-size: 20px;
  color: #7BC5D3;
  line-height: 1em;
  vertical-align: top;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.panel-menu > li > a:hover > i {
  background: #f5f5f5;
}
.panel-menu i.pull-right {
  color: #000;
  border: 0;
  box-shadow: none;
  font-size: 16px;
  background: none !important;
}
.panel-menu .badge {
  margin-top: 3px;
  padding: 3px 6px;
  vertical-align: top;
  background: #CEA9A9;
}
.avatar {
  width: 40px;
  float: left;
  margin-right: 5px;
}
.avatar > img {
  width:40px;
  height:40px;
  border: 1px solid #F8F8F8;
}
.user-mini > span {
  display: block;
  font-size: 12px;
  color:#363636;
  margin-bottom: -4px;
}
.user-mini > span.welcome {
  font-weight: bold;
  margin-top: 2px;
}
.panel-menu .dropdown-menu {
  position: absolute !important;
  background: rgba(0, 0, 0, 0.7) !important;
  padding: 0;
  border: 0;
  right: 0;
  left: auto;
  min-width: 100%;
  z-index: 1040 !important;
}
.panel-menu .dropdown-menu > li > a {
  padding:5px 10px !important;
  color:#f0f0f0;
}
.panel-menu .dropdown-menu > li > a > i {
  border: 0;
  padding: 0;
  margin: 0;
  font-size: 14px;
  width: 20px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}
.well {
  padding:15px;
}
.box {
  display: block;
  z-index: 1999;
  position: relative;
  border: 1px solid #f8f8f8;
  box-shadow: 0 0 4px #D8D8D8;
  background: transparent;
  margin-bottom: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.full-content .box {
  border: 0;
  margin-bottom: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.box-header {
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  color: #363636;
  font-size: 16px;
  position:relative;
  overflow: hidden;
  background: #f5f5f5;
  border-bottom: 1px solid #E4E4E4;
  height: 28px;
}
.box-name, .modal-header-name {
  padding-left: 15px;
  line-height: 28px;
}
.box-name:hover {
  cursor: move;
}
.box-name > i {
  margin-right:5px;
}
.box-icons {
  position: absolute;
  top:0;
  right:0;
  z-index: 9;
}
.no-move {
  display: none;
}
.expanded .no-move {
  position: absolute;
  top:0;
  left: 0;
  width:100%;
  height: 100%;
  z-index: 1;
  display: block;
}
.box-content {
  position: relative;
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
  padding: 15px;
  background: #FCFCFC;
}
.box-content.dropbox, .box-content.sortablebox {
  overflow: hidden;
}
.full-content .box-content {
  height: 100%;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.box-icons a {
  cursor: pointer;
  text-decoration: none !important;
  border-left: 1px solid #fafafa;
  height: 26px;
  line-height: 26px;
  width: 28px;
  display: block;
  float: left;
  text-align: center;
  color: #b8b8b8 !important;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.box-icons a.beauty-table-to-json {
  width: auto;
  padding: 0 10px;
  font-size: 14px;
}
.box-icons a:hover {
  box-shadow:inset 0 0 1px 0 #CECECE;
}
.expanded a.close-link {
  display:none;
}
#sidebar-left.col-xs-2 {
  opacity: 0;
  width: 0%;
  padding: 0;
}
.sidebar-show #sidebar-left.col-xs-2 {
  opacity: 1;
  width: 280px;
  min-width: 280px;
  padding: 0;
}
.sidebar-show #content.col-xs-12 {
  opacity: 1;
  width: 83.33333333333334%;
}
.expanded {
  overflow-y:scroll;
  border: 0;
  z-index: 3000 !important;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.expanded-padding {
  background: rgba(0, 0, 0, 0.7);
  padding:50px;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.no-padding {
  padding:0 !important;
}
.padding-15 {
  padding:15px !important;
}
.no-padding .table-bordered {
  border:0;
  margin:0;
}
.no-padding .table-bordered thead tr th:first-child, .no-padding .table-bordered tbody tr th:first-child, .no-padding .table-bordered tfoot tr th:first-child, .no-padding .table-bordered thead tr td:first-child, .no-padding .table-bordered tbody tr td:first-child, .no-padding .table-bordered tfoot tr td:first-child {
  border-left: 0px !important;
}
.no-padding .table-bordered thead tr th:last-child, .no-padding .table-bordered tbody tr th:last-child, .no-padding .table-bordered tfoot tr th:last-child, .no-padding .table-bordered thead tr td:last-child, .no-padding .table-bordered tbody tr td:last-child, .no-padding .table-bordered tfoot tr td:last-child {
  border-right: 0px !important;
}
.table-heading thead tr {
  background-color: #f0f0f0;
  background-image: -webkit-linear-gradient(top, #f0f0f0, #dfdfdf);
  background-image:    -moz-linear-gradient(top, #f0f0f0, #dfdfdf);
  background-image:     -ms-linear-gradient(top, #f0f0f0, #dfdfdf);
  background-image:      -o-linear-gradient(top, #f0f0f0, #dfdfdf);
  background-image:         linear-gradient(to bottom, #f0f0f0, #dfdfdf);
}
table.no-border-bottom tr:last-child td {
  border-bottom:0;
}
.dataTables_wrapper {
  overflow: hidden;
}
.dataTables_wrapper table.table {
  clear: both;
  max-width: inherit;
  margin-bottom: 0;
}
.table-datatable *, .table-datatable :after, .table-datatable :before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -moz-box-sizing: content-box;
}
.table-datatable label {
  position: relative;
  display: block;
  font-weight: 400;
}
.table-datatable tbody td {
  vertical-align: middle !important;
}
.table-datatable img {
  margin-right: 10px;
  border: 1px solid #F8F8F8;
  width: 40px;
}
.table-datatable .sorting {
  background:url(../img/sort.png) right center no-repeat;
  padding-right:16px;
  cursor:pointer;
}
.table-datatable .sorting_asc {
  background:url(../img/sort-asc.png) right center no-repeat;
  padding-right: 16px;
  cursor:pointer;
}
.table-datatable .sorting_desc {
  background:url(../img/sort-desc.png) right center no-repeat;
  padding-right: 16px;
  cursor:pointer;
}
div.DTTT_collection_background {
  z-index: 2002;
}
div.DTTT .btn {
  color: #333 !important;
  font-size: 12px;
}
ul.DTTT_dropdown.dropdown-menu {
  z-index: 2003;
  background: rgba(0, 0, 0, 0.7) !important;
  padding: 0;
  border: 0;
  margin: 0;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  min-width: 157px;
}
ul.DTTT_dropdown.dropdown-menu li {
  position: relative;
}
ul.DTTT_dropdown.dropdown-menu > li > a {
  position: relative;
  display: block;
  padding: 5px 10px !important;
  color: #f0f0f0 !important;
}
ul.DTTT_dropdown.dropdown-menu > li:first-child > a {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
ul.DTTT_dropdown.dropdown-menu > li:last-child > a {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
ul.DTTT_dropdown.dropdown-menu > li:hover > a {
  background:rgba(0, 0, 0, 0.3);
  color:#f0f0f0;
}
.dataTables_wrapper input[type="text"] {
  display: block;
  width: 90%;
  height: 26px;
  padding: 2px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  box-sizing:border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-appearance: none;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.dataTables_wrapper input[type="text"]:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
/* পাথ টাইটেল বার সম্পূর্ণ সফটওয়্যার থেকে সরানো (সব Main Content Body) */
#content #breadcrumb,
#content-body #breadcrumb {
  display: none !important;
}
#breadcrumb {
  display: none !important;
  padding: 0;
  line-height: 40px;
  background: #525252;
  background: #5a8db6 url(../img/devoops_pattern_b10.png) 0 0 repeat;
  margin-bottom: 20px;
}
.breadcrumb {
  padding: 0 15px;
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin: 0;
}
.breadcrumb > li > a {
  color:#d8d8d8;
}
.breadcrumb > li > a:hover, .breadcrumb > li:last-child > a {
  color:#f8f8f8;
}
.bs-callout {
  padding: 15px;
  border-left: 3px solid #525252;
  background: #dfdfdf;
}
.bs-callout h4 {
  margin-top: 0;
  margin-bottom: 5px;
  color: #525252;
}
.no-padding .bs-callout {
  border:0;
}
.page-header {
  margin: 0 0 10px;
  border-bottom: 1px solid #c7c7c7;
}
.box-content .page-header, legend, .full-calendar .page-header {
  margin: 0 0 10px;
  border-bottom: 1px dashed #B6B6B6;
}
.invoice-header {
  margin: 0 0 10px;
  border-bottom: 1px dashed #B6B6B6;
  display: inline-block;
}
.box-content .form-group, .devoops-modal-inner .form-group {
  margin-top:5px;
  margin-bottom:5px;
}
.show-grid [class^="col-"] {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #525252;
  background-color: rgba(129, 199, 199, 0.2);
  border: 1px solid #ebebeb;
}
.show-grid [class^="col-"]:hover {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: rgba(107, 134, 182, 0.2);
  border: 1px solid #ebebeb;
}
.show-grid, .show-grid-forms {
  margin-bottom: 15px;
}
.show-grid-forms [class^="col-"] {
  padding-top: 10px;
  padding-bottom: 10px;
}
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th,
td.beauty-hover {
  background-color: rgba(219, 219, 219, 0.3) !important;
}
.table-hover > tbody > tr:hover > td.beauty-hover:hover {
  background-color: rgba(219, 219, 219, 0.9) !important;
}
.DTTT.btn-group {
  position: absolute;
  top: -28px;
  right: 83px;
  border-right:1px solid #DBDBDB;
}
.DTTT.btn-group a {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  line-height: 1em;
  font-size: 14px;
  font-weight: bold;
  outline: none;
  box-shadow: none !important;
  padding: 6px 12px;
  margin: 0;
  background: #F7F7F7;
  border: 0;
}
#screensaver {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  background: #000;
  display: none;
}
#screensaver.show {
  display: block;
}
#canvas {
  position: relative;
}
#screensaver i {
  position: absolute;
  top: 50px;
  right: 50px;
  background: rgba(255, 255, 255, 0.5);
  line-height: 100px;
  width: 100px;
  height: 100px;
  text-align: center;
  font-size: 60px;
  color: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.well pre {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  background-color: transparent;
  border: 0;
  white-space: nowrap;
}
.well pre code {
  white-space: normal;
}
.btn {
  border-width: 1px;
  border-style: solid;
  border-width: 1px;
  text-decoration: none;
  border-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  outline: none;
  font-family: "Lucida Grande","Lucida Sans","Lucida Sans Unicode","Segoe UI",Verdana,sans-serif;
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  background-color: #a2a2a2;
  background: #a2a2a2 -moz-linear-gradient(top, rgba(255,255,255,0.6), rgba(255,255,255,0));
  background: #a2a2a2 -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.6)), to(rgba(255,255,255,0)));
  line-height: 24px;
  margin: 0 0 10px 0;
  padding: 0 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-user-select: none;
  -webkit-user-select: none;
  outline: none !important;
}
.btn-label-left, .btn-label-right {
  padding: 0 10px;
}
.btn-label-left span {
  position: relative;
  left: -10px;
  display: inline-block;
  padding: 0px 8px;
  background: rgba(0, 0, 0, 0.1);
}
.btn-label-right span {
  position: relative;
  right: -10px;
  display: inline-block;
  padding: 0px 8px;
  background: rgba(0, 0, 0, 0.1);
}
.btn i {
  vertical-align: middle;
}
.btn-app {
  width: 80px;
  height: 80px;
  padding: 0;
  font-size: 16px;
}
.btn-app i {
  font-size: 36px;
  line-height: 78px;
  display: block;
}
.btn-app-sm {
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 12px;
}
.btn-app-sm i {
  font-size: 18px;
  line-height: 48px;
  display: block;
}
.btn-circle {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.25);
}
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-default, .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active, .progress-bar {
  background-color: #D8D8D8;
  border-color: rgba(0, 0, 0, 0.3);
  color: #929292;
}
.btn-primary, .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active,
.table > thead > tr > td.primary, .table > tbody > tr > td.primary, .table > tfoot > tr > td.primary, .table > thead > tr > th.primary, .table > tbody > tr > th.primary, .table > tfoot > tr > th.primary, .table > thead > tr.primary > td, .table > tbody > tr.primary > td, .table > tfoot > tr.primary > td, .table > thead > tr.primary > th, .table > tbody > tr.primary > th, .table > tfoot > tr.primary > th {
  background-color: #6AA6D6;
  border-color: rgba(0, 0, 0, 0.3);
  color: #f8f8f8;
}
.btn-success, .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active, .progress-bar-success,
.table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th {
  background-color: #63CC9E;
  border-color: rgba(0, 0, 0, 0.3);
  color: #f8f8f8;
}
.btn-info, .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active, .progress-bar-info,
.table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th {
  background-color: #7BC5D3;
  border-color: rgba(0, 0, 0, 0.3);
  color: #f8f8f8;
}
.btn-warning, .btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active, .progress-bar-warning,
.table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th {
  background-color: #DFD271;
  border-color: rgba(0, 0, 0, 0.3);
  color: #f8f8f8;
}
.btn-danger, .btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active, .progress-bar-danger,
.table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th {
  background-color: #D15E5E;
  border-color: rgba(0, 0, 0, 0.3);
  color: #f8f8f8;
}
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
  color: #525252;
  background-color: #b8b8b8;
  border-color: rgba(0, 0, 0, 0.3);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary,
.table-hover > tbody > tr > td.primary:hover, .table-hover > tbody > tr > th.primary:hover, .table-hover > tbody > tr.primary:hover > td, .table-hover > tbody > tr.primary:hover > th {
  color: #fff;
  background-color: #5a8db6;
  border-color: rgba(0, 0, 0, 0.3);
}
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success,
.table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr.success:hover > th {
  color: #fff;
  background-color: #54ae86;
  border-color: rgba(0, 0, 0, 0.3);
}
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info,
.table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr.info:hover > th {
  color: #fff;
  background-color: #69a8b4;
  border-color: rgba(0, 0, 0, 0.3);
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning,
.table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr.warning:hover > th {
  color: #fff;
  background-color: #beb360;
  border-color: rgba(0, 0, 0, 0.3);
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger,
.table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr.danger:hover > th {
  color: #fff;
  background-color: #b25050;
  border-color: rgba(0, 0, 0, 0.3);
}
.progress {
  overflow: visible;
}
.progress-ui {
  height: 10px;
}
.progress-bar {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.progress-bar.ui-widget-content {
  background: none;
  border: 0;
  height: 100%;
  position: relative;
}
.progress-bar .ui-state-default {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  height: 10px;
  width: 10px;
  top: 0;
  margin-left: -5px;
  cursor:pointer;
  border:0px solid #d3d3d3;
  outline:none !important;
  background-color: #f0f0f0;
  background-image: -webkit-linear-gradient(top, #f0f0f0, #dfdfdf);
  background-image:    -moz-linear-gradient(top, #f0f0f0, #dfdfdf);
  background-image:     -ms-linear-gradient(top, #f0f0f0, #dfdfdf);
  background-image:      -o-linear-gradient(top, #f0f0f0, #dfdfdf);
  background-image:         linear-gradient(to bottom, #f0f0f0, #dfdfdf);
}
.progress-bar .ui-widget-header {
  background: #D8D8D8;
}
.progress-bar-primary .ui-widget-header {
  background: #6AA6D6;
  color:#f8f8f8;
}
.progress-bar-success .ui-widget-header {
  background: #63CC9E;
  color:#f8f8f8;
}
.progress-bar-info .ui-widget-header {
  background: #7BC5D3;
  color:#f8f8f8;
}
.progress-bar-warning .ui-widget-header {
  background: #DFD271;
  color:#f8f8f8;
}
.progress-bar-danger .ui-widget-header {
  background: #D15E5E;
  color:#f8f8f8;
}
.progress-bar .ui-state-default {
  background: #b8b8b8;
}
.progress-bar-primary .ui-state-default {
  background: #5a8db6;
}
.progress-bar-success .ui-state-default {
  background: #54ae86;
}
.progress-bar-info .ui-state-default {
  background: #69a8b4;
}
.progress-bar-warning .ui-state-default {
  background: #beb360;
}
.progress-bar-danger .ui-state-default {
  background: #b25050;
}
.slider-range-min-amount, .slider-range-max-amount, .slider-range-amount {
  border: 0;
  background: none;
  outline: none !important;
}
.progress-bar.ui-slider-vertical {
  width:20px;
}
.progress-bar.ui-slider-vertical .ui-state-default {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  height: 20px;
  width: 20px;
  top: auto;
  margin-left: 0px;
  left: 0;
}
#equalizer .progress {
  height:160px;
  display:inline-block;
  margin:15px;
}
.beauty-table {
  width:100%;
  border-collapse:separate;
  border-spacing:0;
}
.beauty-table input {
  border:1px solid transparent;
  background: none;
  font-size: 16px;
  text-align: center;
  padding:2px 15px !important;
  width:100%;
  outline:none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.beauty-table input:focus {
  border:1px solid #dfdfdf;
  background: #fefefe;
  font-size: 16px;
  text-align: center;
  padding: 2px 15px !important;
  width:100%;
  outline:none;
}
.c {
  color: #999;
  display: block;
}
.nt {
  color: #2f6f9f;
}
.na {
  color: #4f9fcf;
}
.s {
  color: #d44950;
}
.radio, .checkbox, .radio-inline, .checkbox-inline {
  position: relative;
}
.radio label, .checkbox label, .radio-inline label, .checkbox-inline label {
  font-weight: normal;
  cursor: pointer;
  padding-left: 8px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.radio + .radio, .checkbox + .checkbox {
  margin-top: 10px;
}
.checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
.checkbox i, .checkbox-inline i, .radio i, .radio-inline i {
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.checkbox i.small, .checkbox-inline i.small, .radio i.small, .radio-inline i.small {
  font-size: 18px;
  top:2px;
}
.checkbox input[type=checkbox]:checked + i:before, .checkbox-inline input[type=checkbox]:checked + i:before {
  content:"\f046";
}
.radio input[type=radio]:checked + i:before, .radio-inline input[type=radio]:checked + i:before {
  content:"\f192";
}
.toggle-switch {
  position: relative;
  width: 60px;
}
.toggle-switch input {
  display: none;
}
.toggle-switch label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.toggle-switch-inner {
  width: 200%;
  margin-left: -100%;
  -webkit-transition: margin 0.3s ease-in 0s;
  -moz-transition: margin 0.3s ease-in 0s;
  -o-transition: margin 0.3s ease-in 0s;
  transition: margin 0.3s ease-in 0s;
}
.toggle-switch-inner:before, .toggle-switch-inner:after {
  float: left;
  width: 50%;
  height: 20px;
  padding: 0;
  line-height: 20px;
  font-size: 12px;
  text-shadow: 1px 1px 1px #FFFFFF;
  color:#929292;
  background-color: #F5F5F5;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.toggle-switch-inner:before {
  content: "YES";
  padding-left: 15px;
  -webkit-border-radius: 20px 0 0 20px;
  -moz-border-radius: 20px 0 0 20px;
  border-radius: 20px 0 0 20px;
}
.toggle-switch-inner:after {
  content: "NO";
  padding-right: 15px;
  text-align: right;
  -webkit-border-radius: 0 20px 20px 0;
  -moz-border-radius: 0 20px 20px 0;
  border-radius: 0 20px 20px 0;
}
.toggle-switch-switch {
  width: 20px;
  margin: 0;
  border: 2px solid #d8d8d8;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  color: #f8f8f8;
  line-height: 1em;
  text-shadow: 0 0px 1px #ADADAD;
  text-align: center;
  -webkit-transition: all 0.3s ease-in 0s;
  -moz-transition: all 0.3s ease-in 0s;
  -o-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
  background-color: #f0f0f0;
  background-image: -webkit-linear-gradient(top, #f0f0f0, #dfdfdf);
  background-image:    -moz-linear-gradient(top, #f0f0f0, #dfdfdf);
  background-image:     -ms-linear-gradient(top, #f0f0f0, #dfdfdf);
  background-image:      -o-linear-gradient(top, #f0f0f0, #dfdfdf);
  background-image:         linear-gradient(to bottom, #f0f0f0, #dfdfdf);
}
.toggle-switch input:checked + .toggle-switch-inner {
  margin-left: 0;
}
.toggle-switch input:checked + .toggle-switch-inner + .toggle-switch-switch {
  right: 0px; 
}
.toggle-switch-danger input:checked + .toggle-switch-inner + .toggle-switch-switch {
  border:2px solid #D15E5E;
  background: #D15E5E;
}
.toggle-switch-warning input:checked + .toggle-switch-inner + .toggle-switch-switch {
  border:2px solid #DFD271;
  background: #DFD271;
}
.toggle-switch-info input:checked + .toggle-switch-inner + .toggle-switch-switch {
  border:2px solid #7BC5D3;
  background: #7BC5D3;
}
.toggle-switch-success input:checked + .toggle-switch-inner + .toggle-switch-switch {
  border:2px solid #63CC9E;
  background: #63CC9E;
}
.toggle-switch-primary input:checked + .toggle-switch-inner + .toggle-switch-switch {
  border:2px solid #6AA6D6;
  background: #6AA6D6;
}
.select2-container {
  width: 100%;
}
.select2-container .select2-choice {
  height: 30px;
}
.knob-slider {
  position: relative;
  text-align: center;
  display: inline-block;
  width: 100%;
  margin-bottom: 5px;
}
.knob-slider > div {
  display: inline-block !important;
}
.knob-slider input {
  outline: none !important;
}
.ipod {
  background:#dedede;
  text-align: center;
  padding:50px 0;
}
.knob-clock {
  text-align: center;
}
.knob-clock > div {
  font-size:50px;
  text-align: center;
  color:#a2a2a2;
}
.knob {
  border:0;
  background: 0;
}
.box-pricing:hover {
  box-shadow: 0 0 5px #525252;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.box-pricing .row-fluid > div {
  padding: 18px 15px 8px;
  line-height: 1.428571429;
  vertical-align: top;
}
.box-pricing .row-fluid.centered > div {
  background-color: #f5f5f5;
  padding: 8px;
  text-align: center;
}
.box-pricing .row-fluid.centered > div:nth-child(odd) {
  background-color: #f9f9f9;
}
.box-pricing .box-header {
  height: 80px;
  padding: 10px 0;
}
.box-pricing .box-name {
  padding: 0 10px;
  text-align: center;
}
.box-pricing .box-name:hover {
  cursor: inherit;
}
#messages #breadcrumb {
  margin-bottom: 0;
  position: fixed;
  width: 100%;
  z-index: 2;
}
#messages-menu {
  position:fixed;
  top:90px;
  background:#a5a5a5;
  margin:0;
  height: 100%;
  z-index: 2;
}
#messages-list {
  margin-top: 40px;
  padding: 0;
}
.one-list-message {
  background: #F1F1F1;
  border-bottom: 1px solid #CCC;
  padding: 15px 15px 15px 25px;
  margin: 0;
}
.one-list-message .checkbox {
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
}
.one-list-message .message-title {
  overflow: hidden;
  white-space: nowrap;
  width: 80%;
}
.one-list-message .message-date {
  overflow: hidden;
  white-space: nowrap;
  font-size: 11px;
  line-height: 20px;
  text-align: center;
  position: absolute;
  right: 10px;
  font-weight: bold;
  background: #D8D8D8;
  padding: 0;
  width: 50px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  color: #000;
}
.form-control {
  height: 26px;
  padding: 2px 12px;
}
.input-lg {
  height:39px;
}
.input-sm {
  height:18px;
}
.bg-default {
  background: #D8D8D8 !important;
}
.bg-primary {
  background: #6AA6D6 !important;
  color:#f8f8f8 !important;
}
.bg-success {
  background: #63CC9E !important;
  color:#f8f8f8 !important;
}
.bg-info {
  background: #7BC5D3 !important;
  color:#f8f8f8 !important;
}
.bg-warning {
  background: #DFD271 !important;
  color:#f8f8f8 !important;
}
.bg-danger {
  background: #D15E5E !important;
  color:#f8f8f8 !important;
}
.txt-default {
  color: #D8D8D8 !important;
}
.txt-primary {
  color: #6AA6D6 !important;
}
.txt-success, .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline {
  color: #63CC9E !important;
}
.txt-info {
  color: #7BC5D3 !important;
}
.txt-warning, .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline {
  color: #DFD271 !important;
}
.txt-danger, .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline {
  color: #D15E5E !important;
}
.has-success .form-control {
  border-color:#63CC9E;
}
.has-warning .form-control {
  border-color:#DFD271;
}
.has-error .form-control {
  border-color:#D15E5E;
}
.has-success .form-control:focus {
  border-color: #63CC9E;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #63CC9E;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #63CC9E;
}
.has-warning .form-control:focus {
  border-color: #DFD271;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #DFD271;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #DFD271;
}
.has-error .form-control:focus {
  border-color: #D15E5E;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #D15E5E;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #D15E5E;
}
.select2-container-multi .select2-choices {
  min-height: 26px;
  display: block;
  height: 26px;
  padding: 0 0 0 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #aaa;
  white-space: nowrap;
  line-height: 26px;
  color: #444;
  text-decoration: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
  background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
  background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
  background-image: linear-gradient(top, #fff 0%, #eee 50%);
}
.select2-container-multi .select2-choices .select2-search-field input {
  padding: 0;
  margin: 0;
}
.has-feedback .form-control-feedback {
  width: 26px;
  height: 26px;
  line-height: 26px;
}
.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
  min-height: inherit;
  padding-top: 0;
}
.form-horizontal .control-label {
  padding-top: 4px;
}
.input-group-addon {
  padding: 0px 6px;
}
.form-group .form-control, .form-group .input-group {
  margin-bottom: 5px;
}
.input-group .form-control {
  margin:0;
}
#ui-datepicker-div {
  background: rgba(0, 0, 0, 0.7) !important;
  border:0;
}
#ui-datepicker-div .ui-widget-header {
  background: rgba(0, 0, 0, 0.2);
  border: 0;
  border-bottom: 1px solid #686868;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #f8f8f8;
  padding: 1px 0;
}
#ui-datepicker-div.ui-widget-content {
  color:#f8f8f8 !important;
}
#ui-datepicker-div .ui-state-default, #ui-datepicker-div .ui-widget-content .ui-state-default, #ui-datepicker-div .ui-widget-header .ui-state-default {
  background: none;
  border:0;
  color:#f8f8f8;
  text-align: center;
}
#ui-datepicker-div .ui-state-hover, #ui-datepicker-div.ui-widget-content .ui-state-hover, #ui-datepicker-div .ui-widget-header .ui-state-hover, #ui-datepicker-div .ui-state-focus, #ui-datepicker-div.ui-widget-content .ui-state-focus, #ui-datepicker-div .ui-widget-header .ui-state-focus,
#ui-datepicker-div .ui-state-highlight, #ui-datepicker-div.ui-widget-content .ui-state-highlight, #ui-datepicker-div .ui-widget-header .ui-state-highlight {
  background: rgba(0, 0, 0, 0.3) !important;
  border:0;
  top:2px;
}
#ui-datepicker-div .ui-datepicker-group {
  border-left: 1px solid #686868;
}
#ui-datepicker-div .ui-datepicker-group:first-child {
  border-left:0;
}
#ui-datepicker-div .ui-datepicker-buttonpane {
  margin: 0;
}
#ui-datepicker-div .ui-datepicker-group table {
  margin:0 auto !important;
}
.ui-datepicker .ui-datepicker-prev {
  left: 2px !important;
  cursor: pointer;
}
.ui-datepicker .ui-datepicker-next {
  right: 2px !important;
  cursor: pointer;
}
.ui-icon-circle-triangle-w {
  background: url(../img/ui-left.png) 0 0 no-repeat !important;
}
.ui-icon-circle-triangle-e {
  background: url(../img/ui-right.png) 0 0 no-repeat !important;
}
.ui-icon-circle-arrow-s {
  background: url(../img/ui-accordion-down.png) 0 0 no-repeat !important;
}
.ui-icon-circle-arrow-e {
  background: url(../img/ui-accordion-right.png) 0 0 no-repeat !important;
}
#ui-datepicker-div .ui-slider-horizontal {
  background: rgba(0, 0, 0, 0.5);
  height: 4px;
  border: 0;
}
#ui-datepicker-div .ui-slider-horizontal .ui-slider-handle {
  background: #D8D8D8 !important;
  border: 1px solid #f8f8f8;
  height: 8px;
  width: 8px;
  top:-2px;
  margin-left: -4px;
  outline: none;
  cursor: pointer;
}
.ui-spinner-input {
  margin:0;
}
.ui-spinner .form-control {
  margin-bottom: 0;
}
#tabs.ui-widget-content, #tabs .ui-widget-header {
  border:0;
  background: none;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#tabs .ui-widget-header {
  border-bottom: 1px solid #d8d8d8;
}
#tabs .ui-state-default, #tabs.ui-widget-content .ui-state-default, #tabs .ui-widget-header .ui-state-default {
  border:0;
  margin: 0 0 -1px 0;
  background: none !important;
}
#tabs .ui-state-active, #tabs.ui-widget-content .ui-state-active, #tabs .ui-widget-header .ui-state-active {
  background: none !important;
}
.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: pointer;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin: 0;
  padding: 0;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  padding: 5px 15px;
  outline: none !important;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  background:#fcfcfc;
  border:1px solid #d8d8d8;
  border-bottom: 0;
}
.ui-tabs .ui-tabs-nav {
  padding: 0;
}
.ui-tabs .ui-tabs-panel {
  padding: 1em 0;
}
.ui-widget {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.jqstooltip {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border:0!important;
  text-align:center !important;
  margin:0px!important;
  width:50px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding:0px;
}
.ui-accordion .ui-accordion-header {
  padding: 6px 12px;
  margin: 0;
  top:0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.ui-accordion .ui-accordion-icons {
  padding-left:28px;
}
.ui-accordion-header.ui-state-default {
  background: #f5f5f5 !important;
  border: 1px solid #fcfcfc;
  border-left: 0;
  border-right: 0;
}
.ui-accordion-header.ui-state-hover, .ui-accordion-header.ui-state-focus {
  background: #ebebeb !important;
}
.ui-accordion-header.ui-state-active {
  background: #d8d8d8 !important;
}
.ui-accordion .ui-accordion-content {
  padding:10px 12px;
  background: none;
  border:1px solid #d8d8d8;
  border-top:0;
  border-bottom:0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#simple_gallery {
  text-align: center;
}
#simple_gallery a.fancybox {
  display: inline-block;
  padding: 5px;
}
#simple_gallery a.fancybox img {
  width: 100%;
  padding: 2px;
  border: 1px solid #979797;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
#simple_gallery a.fancybox img:hover {
  box-shadow: 0 0 10px #C7C7C7;
}
.justifiedGallery {
  overflow: hidden;
  width: 100%;
}
.jg-row {
  position: relative;
  white-space: nowrap;
}
.justifiedGallery .jg-image {
  position: absolute;
  display: inline-block;
  vertical-align: top;
  margin-left: 0;
}
.justifiedGallery .jg-image a {
  text-decoration: none;
}
.justifiedGallery .jg-image img {
  border: none;
}
.justifiedGallery .jg-image-label {
  white-space: normal;
  font: normal 12px arial;
  background: #000;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  padding: 5px 5px 10px 8px;
  text-align: left;
  opacity: 0;
}
.ex-tooltip {
  position: absolute;
  display: none;
  z-index: 2000;
}
.morris-hover {
  position:absolute;
  z-index:1000;
}
.morris-hover.morris-default-style, .ex-tooltip {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 6px 20px;
  color: #525252;
  background: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  text-align: center;
}
.morris-hover.morris-default-style .morris-hover-row-label{
  font-weight:bold;
  margin:0.25em 0;
}
.morris-hover.morris-default-style .morris-hover-point{
  white-space:nowrap;
  margin:0.1em 0;
}
#dashboard-header {
  margin-bottom:20px;
}
#dashboard_links {
  padding: 0;
}
#dashboard_links .nav {
  background:#3575A0 url(../img/devoops_pattern_b10.png) 0 0 repeat;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  overflow: hidden;
}
#dashboard_links .nav-stacked > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
  padding: 0;
  margin: 0;
}
#dashboard_links .nav-pills > li > a {
  color: #f8f8f8;
  display: block;
  padding: 20px 10px 20px 15px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  outline:none;
}
#dashboard_links .nav-pills > li.active {
  border-top-color: rgba(0, 0, 0, 0.11);
  position: relative;
  margin: 0;
}
#dashboard_links .nav-pills > li.active > a, #dashboard_links .nav-pills > li.active > a:hover, #dashboard_links .nav-pills > li.active > a:focus, #dashboard_links .nav > li > a:hover, #dashboard_links .nav > li > a:focus {
  background:rgba(0, 0, 0, 0.1);
}
#dashboard_links .nav-pills > li.active > a:before {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  left: -2px;
  font-size: 30px;
  color: #f8f8f8;
}
#dashboard_tabs {
  background:#f8f8f8;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
#dashboard-overview {
  padding-bottom:15px;
}
.sparkline-dashboard {
  float: left;
  margin-right: 10px;
  text-align: center;
}
.sparkline-dashboard-info {
  float: left;
  display: block;
  text-align: center;
}
.sparkline-dashboard-info span {
  display: block;
  font-weight: bold;
  color: #b25050;
}
#ow-marketplace {
  margin-top: 20px;
}
.ow-server {
  padding-top: 8px;
  padding-bottom: 25px;
}
.ow-server:hover {
  background:#e7e7e7;
}
.ow-server .page-header {
  padding-bottom: 3px;
}
.ow-server h4 i {
  position: absolute;
  left: 15px;
}
.ow-server small {
  position: absolute;
  right: 15px;
  top: 51px;
}
.ow-server-bottom {
  margin-top:25px;
}
.ow-server-bottom .knob-slider {
  font-size: 11px;
}
#ow-server-footer {
  overflow: hidden;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.ow-settings {
  position: absolute;
  top: 7px;
  left: 40px;
  display:none;
}
.ow-settings a {
  color:#525252;
}
.ow-server:hover .ow-settings {
  display: block;
}
#ow-server-footer a {
  display: block;
  padding:10px 0;
  border-left:1px solid #f8f8f8;
  text-decoration:none;
}
#ow-server-footer a:first-child {
  border-left:0;
}
#ow-server-footer span {
  display: block;
}
.m-table > thead > tr > th, .m-table > tbody > tr > th, .m-table > tfoot > tr > th, .m-table > thead > tr > td, .m-table > tbody > tr > td, .m-table > tfoot > tr > td {
  vertical-align: middle;
  padding: 2px 5px;
}
.m-ticker span {
  display: block;
  font-size: 0.8em;
  line-height: 1em;
}
.m-price {
  text-align: right;
}
.m-change .fa-angle-up {
  color:#54ae86;
  font-weight: bold;
}
.m-change .fa-angle-down {
  color:#b25050;
  font-weight: bold;
}
#ow-summary {
  font-size: 12px;
}
#ow-summary b {
  float:right;
  padding:1px 4px;
  margin:1px;
  border:1px solid #d8d8d8;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
#ow-donut {
  margin:0 0 20px;
}
#ow-donut > div {
  padding:0;
}
#ow-activity .row {
  margin: 0 0 0 -15px;
  font-size: 13px;
}
#ow-setting {
  border: 1px solid #C7C7C7;
  padding: 0;
  position: absolute;
  width: 158px;
  height: 28px;
  top: 1px;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  opacity: 0;
  right: -200px;
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}
#ow-marketplace:hover #ow-setting {
  opacity:1;
  right:15px;
}
#ow-setting a {
  text-align: center;
  float: left;
  margin-left: 10px;
  color: #d8d8d8;
  font-size: 16px;
  display:block;
  line-height: 28px;
  width:20px;
  height:26px;
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}
#ow-setting a:hover {
  font-size:16px;
  color:#222;
  line-height:24px;
}
#ow-licenced {
  margin:20px 0;
}
#ow-licenced .row {
  margin:0;
}
#ow-stat .row {
  margin: 0;
}
#dashboard-clients .one-list-message {
  background:none;
  padding:10px 15px;
}
#dashboard-clients .one-list-message:last-child {
  border-bottom: 0;
}
#dashboard-clients .one-list-message .message-date {
  position: relative;
  width: auto;
  right: auto;
  left: 15px;
  padding: 0 15px;
}
.btn + .dropdown-menu {
  margin-top: -10px;
  background: rgba(0, 0, 0, 0.7) !important; padding: 0; border: 0; 
  right: 0; 
  left: auto; 
  min-width: 100%;
}
.btn + .dropdown-menu > li > a {
  padding: 5px 10px !important;
  color: #f0f0f0;
}
.v-txt {
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  position: absolute;
  top: 60px;
  left: -20px;
  color: #d8d8d8;
  font-size: 18px;
  box-shadow: 0 0 10px #d8d8d8;
  padding: 0px 5px;
}
.full-calendar {
  padding: 25px 0;
  background: #FCFCFC;
}
.external-event {
  padding: 2px 6px;
  margin: 4px 0;
  background: #f5f5f5;
}
.external-event:hover {
  cursor: move;
  background: #6AA6D6;
  color:#f8f8f8;
}
#add-new-event {
  background: #EBEBEB;
  margin-bottom: 30px;
  padding: 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.modal-backdrop {
  z-index: 10500 !important;
}
.modal {
  z-index: 10600 !important;
}
/* Modal header draggable handle */
.modal-dialog .modal-header {
  cursor: move;
}
.fc-event {
  border: 1px solid #6AA6D6;
  background-color: #6AA6D6;
}
.qq-upload-drop-area {
  position: absolute;
  background: #fcfcfc;
  width: 100%;
  height: 100%;
}
.qq-upload-button {
  float:right;
  margin:20px 15px 0 0;
}
.qq-upload-list {
  position: relative;
  z-index: 3;
  margin: 60px 15px 0;
  padding: 0;
  list-style: none;
}
.qq-upload-list li {
  position: relative;
  display: inline-block;
  padding: 15px;
  margin: 15px;
  border: 1px solid #E6E6E6;
  text-align: center;
  font-size: 12px;
  background: rgba(245, 245, 245, 0.9);
}
.qq-upload-settings {
  opacity: 0;
  visibility: hidden;
  bottom: 0;
  position: absolute;
  width: 100%;
  left: 0;
  padding: 7px 0;
  background: #FFF;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.qq-upload-list li:hover .qq-upload-settings {
  opacity: 1;
  visibility: visible;
}
.qq-upload-list li img {
  border:1px solid #b4b4b4;
  margin-bottom: 5px;
}
.qq-upload-filename {
  display: block;
  overflow: hidden;
}
.qq-upload-file, .qq-upload-size, .qq-upload-status-text {
  display: block;
}
.qq-dropped-zone {
  position: absolute;
  top: 5%;
  left: 50%;
  margin-left: -71px;
  text-align: center;
  font-weight: bold;
}
.qq-dropped-zone i {
  font-size: 5em;
  display: block;
  color: #f5f5f5;
  text-shadow: 0 -1px 1px #d8d8d8;
}
#page-500 h1, .page-404 h1 {
  font-size: 5em;
}
.page-404 .form-inline {
  margin: 40px auto;
  width: 60%;
  padding: 15px;
  background: #FAFAFA;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.page-404 .input-group-btn:last-child > .btn, .page-404 .input-group-btn:last-child > .btn-group {
  margin-left: -1px;
  margin-bottom: 0;
  height: 39px;
}
#page-500 h3, .page-404 h3 {
  margin: 5px 0 20px;
}
.preloader {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background: #ebebeb;
  z-index: 2000;
}
.devoops-getdata {
  position: absolute;
  top: 25px;
  left: 15px;
  color:#ebebeb;
}
#page-500, #page-login {
  /*background-color: rgb(26, 121, 146);*/
  position: absolute;
  height: 100%;
  width: 100%;
  
  background-image: url("../img/Login_Background.png") ;
  background-size:     cover;                      /* <------ */
  background-repeat:   no-repeat;
  background-position: center center;
  
}
#page-500 {
  background: #ebebeb;
}
#page-500 img {
  display: block;
  margin:30px auto;
}
#page-login .logo {
  position:absolute;
}
#page-login h3 {
  font-size:20px;
  font-family: 'Righteous', cursive;
}
#page-login .text-right {
  margin-top: 15px;
}
#page-login .box {
  margin-top:15%;
}
.one-result {
  margin-top:20px;
}
.one-result p {
  margin:0;
}
.large {
  font-size: 1.25em;
}
.nav-search > li.active > a {
  background: #F0F0F0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: #525252;
  border-bottom: 1px solid #CECECE;
  font-weight: bold;
}
.page-feed .avatar {
  width: 60px;
  float: left;
  margin: 10px 15px;
  text-align: center;
  overflow: hidden;
}
.page-feed .avatar img {
  width: 60px;
  height: 60px;
  border: 1px solid #F8F8F8;
}
.page-feed-content {
  position: relative;
  padding: 3px 15px 5px;
  background: #FCFCFC;
  margin-left:90px;
  min-height: 80px;
}
.page-feed-content small.time {
  font-style: italic;
}
.page-feed .page-feed-content:before {
  font-family: FontAwesome;
  content: "\f0d9";
  position: absolute;
  left: -10px;
  top: 15px;
  font-size: 30px;
  color: #fcfcfc;
}
.likebox {
  overflow: hidden;
}
.likebox .navbar-nav {
  margin:0;
}
.likebox .navbar-nav li {
  margin-right: 15px;
  float: left;
}
.likebox .fa-thumbs-up {
  color:#6AA6D6;
}
.likebox .fa-thumbs-down {
  color:#D15E5E;
}
#modalbox {
  display:none;
  position: fixed;
  overflow: auto;
  overflow-x: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5000;
  background:rgba(0,0,0,0.8);
}
#modalbox .devoops-modal {
  position:absolute;top:90px;margin-left: -300px;left: 50%;
  border: 1px solid #f8f8f8;
  box-shadow: 0 0 20px #6AA6D6;
  background: transparent;
  margin-bottom: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 600px;
  z-index:6000;
}
#modalbox .devoops-modal-header {
  color: #363636;
  font-size: 16px;
  position:relative;
  overflow: hidden;
  background: #f5f5f5;
  border-bottom: 1px solid #E4E4E4;
  height: 28px;
}
#modalbox .devoops-modal-inner {
  position: relative;
  overflow: hidden;
  padding: 15px;
  background: #FCFCFC;
}
#modalbox .devoops-modal-bottom {
  position: relative;
  overflow: hidden;
  padding: 15px;
  background: #d8d8d8;
}
.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  padding: 4px 10px;
  margin-left: -1px;
  line-height: 1.428571429;
  color: #969696;
  text-decoration: none;
  background-color: #F5F5F5;
  border: 1px solid #D8D8D8;
}
.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
  color: #8A8A8A;
  background-color: #eee;
}
.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
  color: #979797;
  cursor: not-allowed;
  background-color: #FCFCFC;
  border-color: #D8D8D8;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #6AA6D6;
  border-color: #6AA6D6;
}
.fancybox-nav {
  position: fixed;
  width: 50%;
}
.fancybox-close {
  position: fixed;
  top: 20px;
  right: 36px;
  background: url(../img/times.png) 0 0 no-repeat;
}
.fancybox-prev span {
  left: 21px;
  background: url(../img/chevron-left.png) 0 0 no-repeat;
}
.fancybox-next span {
  right: 36px;
  background: url(../img/chevron-right.png) 0 0 no-repeat;
}
#social a {
  margin: 10px 3px;
  color: #666;
  display: block;
  float: left;
}
#event_delete {
  margin-left:20px;
}
@media (min-width: 768px) {
  #sidebar-left.col-sm-2 {
    opacity: 1;
    width: 16.666666666666664%;
    padding: 0 1px;
  }
  .sidebar-show #sidebar-left.col-sm-2 {
    opacity: 0;
    width:0;
    padding:0;
  }
  .sidebar-show #content.col-sm-10 {
    opacity: 1;
    width:100%;
  }
  .page-404 .form-inline {
    width: 60%;
  }
}
@media (min-width: 992px) {
  .nav.main-menu > li > a, .nav.msg-menu > li > a {
    text-align: left;
  }
  .nav.main-menu > li > a > i, .nav.msg-menu > li > a > i {
    font-size:14px;
    width: 20px;
    display: inline-block;
  }
  .main-menu .dropdown-menu {
    position: relative;
    z-index: inherit;
    left:0;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    /*background:rgba(0, 0, 0, 0.2);*/
    visibility: visible;
    
  }
  .main-menu .dropdown-menu > li > a {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
  }
  .page-404 .form-inline {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .app-drawer-toggle-strip {
    display: inline-flex;
  }
  #main {
    margin-top: 0 !important;
  }
  /* Mobile/PWA: sidebar as standard off-canvas drawer */
  .sidebar-overlay {
    display: block !important;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    z-index: 4000;
    transition: opacity 0.2s ease;
  }
  body.drawer-open .sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* Override: by default theme hides #sidebar-left.col-xs-2, but drawer needs it off-canvas instead. */
  #sidebar-left.col-xs-2 {
    opacity: 1 !important;
    width: 280px !important;
    min-width: 280px !important;
    padding: 0 !important;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    position: fixed;
    top: var(--header-height, 60px);
    height: calc(var(--app-height, 100vh) - var(--header-height, 60px));
    z-index: 4500;
  }
  body.drawer-open #sidebar-left.col-xs-2 {
    transform: translateX(0);
  }

  /* Ensure main content takes full width when drawer is closed. */
  #content {
    width: 100% !important;
    margin-left: 0 !important;
  }

  /* Sidebar (mobile/PWA): show menu text that uses Bootstrap .hidden-xs */
  #sidebar-left .hidden-xs {
    display: inline-block !important;
    visibility: visible !important;
  }
  /* Mobile/PWA: keep dropdown inside sidebar (avoid left:100% clipping). */
  .main-menu .dropdown-menu {
    position: relative;
    left: 0;
    top: 0;
    float: none;
    visibility: hidden; /* shown by open/active-parent rules */
  }
  /* Mobile: allow vertical scrolling inside main containers */
  #content {
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }
  #content-body.content-body-scroll {
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }
  /* Mobile: reduce desktop layer padding so windows never overflow */
  .content-layer.layer-desktop {
    padding: 12px !important;
  }
  /* Mobile: tighten window body padding */
  .desktop-window-body {
    padding: 12px !important;
    padding-bottom: calc(var(--layout-footer-height, 48px) + 10px) !important;
  }
  /* Mobile: make fixed header slightly smaller */
  #content-header.content-header-fixed {
    padding: 10px 12px !important;
    font-size: 16px !important;
  }
  #messages-menu {
    top:140px;
  }
  .page-404 .form-inline {
    width: 100%;
  }
  #dashboard_links .nav {
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
  }
  #dashboard_links .nav-stacked > li {
    float:left;
  }
  #dashboard_links .nav-pills > li > a {
    padding:15px;
  }
  #dashboard_links .nav-pills > li.active > a:before {
    bottom: 0;
    left: 50%;
    margin-left: -9px;
  }
}
@media (max-width: 620px) {
  .user-mini {
    display: none;
  }
}
@media (max-width: 400px) {
  .panel-menu a.account {
    padding: 5px 0px 5px 0;
  }
  .avatar {
    margin: 0;
  }
  .panel-menu i.pull-right {
    margin-left: 0;
  }
  .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background: none;
  }
  #dashboard_links .nav-stacked > li {
    float:none;
  }
  #dashboard_links .nav-pills > li.active > a:before {
    display: none;
  }
}



.col-centered {
    float: none;
    margin: 0 auto;
}


//--------- customs start -----------------
.ui-pg-input { //jqrrid pager input class
    height: 20px;
}

.gridAction {
    cursor:pointer;
}

.selectCustom {
    margin-bottom: 15px;
    margin-top : 5px;
}

.dropdown {
    border-bottom: 1px solid #B3D3EC;
}

.dropdown:last-child {
    border-bottom: none;
}

.dropdown-menu > li:first-child {
    border-top: 1px solid #B3D3EC;
}

ul.dropdown-menu > li > a.active-parent.active{
    background: #83c9ef;
}

.main-menu {
    background: unset;
    background-color: unset;
    background-image: none;
    border-color: rgba(0, 0, 0, 0);
    border-image: none;
}

.modal_link {
    cursor: pointer;
}

.modal-head {
    margin-left: -20px;
}

/* Superadmin > Devices: Delegated Controllers — stacked layout so Select2 multi never overlaps Save/Clear */
#deviceDelegateForm.device-delegate-form-stacked {
    display: block;
    max-width: 100%;
}
#deviceDelegateForm.device-delegate-form-stacked .control-label {
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 4px;
}
#deviceDelegateForm .dd-form-row--actions {
    position: relative;
    z-index: 1;
    clear: both;
}
/* Devices > Delegates: fixed-width dropdown (standard control size), checkboxes, scroll after ~4 rows */
#deviceDelegateForm .dd-company-dropdown-wrap {
    position: relative;
    width: 280px;
    max-width: 100%;
}
#deviceDelegateForm .dd-company-toggle {
    width: 100%;
    max-width: 280px;
    height: 34px;
    padding: 6px 10px;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
#deviceDelegateForm .dd-company-panel {
    position: absolute;
    left: 0;
    width: 280px;
    max-width: 100%;
    box-sizing: border-box;
    top: 100%;
    margin-top: 2px;
    z-index: 10070;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
#deviceDelegateForm .dd-company-panel-inner {
    max-height: 136px;
    overflow-y: auto;
    overflow-x: hidden;
}
#deviceDelegateForm .dd-company-row {
    display: block;
    padding: 7px 10px;
    margin: 0;
    font-weight: normal;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#deviceDelegateForm .dd-company-row:hover {
    background: #f5f5f5;
}
#deviceDelegateForm .dd-company-row input[type="checkbox"] {
    margin: 0 8px 0 0;
    vertical-align: middle;
}
#deviceDelegateForm .dd-company-empty {
    padding: 8px 10px;
}

/* Device Console: health check row stacks on narrow screens */
.device-console-health-row .device-console-health-actions {
    margin-top: 8px;
}
@media (min-width: 768px) {
    .device-console-health-row .device-console-health-actions {
        margin-top: 0;
    }
}


//---------customs end -------------