/* ========================================================== */
/* VERTERON CLOUD CORE UI DESIGN SYSTEM                       */
/* Shared Style Tokens for Drawers, Tables, Modals & Dialogs  */
/* ========================================================== */

/* --- 1. Gavetas Laterais & Overlays (Slide-Over Drawers) --- */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.6);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  will-change: opacity;
  transform: translate3d(0, 0, 0);
}
.drawer-overlay.show {
  visibility: visible;
  opacity: 1;
}

.cs-details-drawer,
.verteron-drawer {
  position: fixed;
  top: 0;
  right: 0;
  transform: translate3d(100%, 0, 0);
  width: calc(100vw - 260px);
  max-width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  border-radius: 16px 0 0 16px;
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.12);
  z-index: 10000;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
  will-change: transform;
}

.cs-details-drawer {
  padding: 24px;
}

.verteron-drawer {
  padding: 0 !important;
}
.cs-details-drawer.open,
.verteron-drawer.open {
  transform: translate3d(0, 0, 0);
}

body.sidebar-mini .cs-details-drawer,
body.sidebar-mini .verteron-drawer {
  width: calc(100vw - 70px);
}

@media (max-width: 1199.98px) {
  .cs-details-drawer,
  .verteron-drawer {
    width: 100vw;
  }
}

.drawer-subtab-content {
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
  will-change: scroll-position;
  transform: translate3d(0, 0, 0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1.5px dashed #e9ecef;
  padding-bottom: 12px;
}

.drawer-header h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ca521f;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-close-drawer,
.drawer-close-btn {
  background: transparent;
  border: none;
  color: #adb5bd;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s ease;
}
.btn-close-drawer:hover,
.drawer-close-btn:hover {
  color: #dc3545;
}

.drawer-tabs-nav {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  border-bottom: 1px solid #f1f3f5;
  padding-bottom: 8px;
}

.drawer-tab-btn {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  color: #495057;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.drawer-tab-btn:hover {
  background: #e9ecef;
}
.drawer-tab-btn.active {
  background: #ca521f;
  border-color: #ca521f;
  color: #ffffff;
}

/* Flat tab style (original VM drawer tabs) */
.drawer-tabs {
  display: flex;
  border-bottom: 1px solid #e9ecef;
  gap: 20px;
  margin-bottom: 20px;
}
.drawer-tab {
  padding: 10px 4px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #868788;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  background: transparent;
  border: none;
  border-radius: 0;
}
.drawer-tab:hover {
  color: #1a191b;
  background: transparent;
}
.drawer-tab.active {
  color: #ca521f;
  border-bottom-color: #ca521f;
  background: transparent;
}

.drawer-tab-panel {
  display: none;
}
.drawer-tab-panel.active {
  display: block;
}

.drawer-body {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

.drawer-tab-content {
  flex: 1 !important;
  overflow-y: auto !important;
  min-height: 0 !important;
  padding-right: 8px !important;
  will-change: scroll-position;
  transform: translate3d(0, 0, 0);
}

/* --- 2. Tabelas Premium (Grids) --- */
.cs-table-wrapper {
  overflow-x: auto;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  background: #ffffff;
}

.cs-table-premium {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.cs-table-premium th {
  background: #f8f9fa;
  color: #495057;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 10px 14px;
  border-bottom: 1px solid #e9ecef;
  position: relative;
}

.cs-table-premium td {
  padding: 12px 14px;
  border-bottom: 1px solid #e9ecef;
  font-size: 0.84rem;
  color: #2b303a;
  vertical-align: middle;
}

.cs-table-premium tr:last-child td {
  border-bottom: none;
}

.cs-table-premium tr:hover td {
  background: rgba(202, 82, 31, 0.015);
}

.cs-table-premium.layout-fixed {
  table-layout: fixed;
}

.cs-table-premium.layout-fixed th:not(:first-child):not(:last-child),
.cs-table-premium.layout-fixed td:not(:first-child):not(:last-child) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cs-table-wrapper::-webkit-scrollbar {
  height: 8px;
}
.cs-table-wrapper::-webkit-scrollbar-track {
  background: #f1f3f5;
  border-radius: 4px;
}
.cs-table-wrapper::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.cs-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* --- 3. Redimensionamento de Colunas --- */
.resize-handle {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  cursor: col-resize;
  user-select: none;
  z-index: 10;
  transition: background-color 0.15s;
}
.resize-handle:hover,
.resize-handle.resizing {
  background-color: #ca521f !important;
  opacity: 0.7;
}

/* --- 4. Ordenação e Filtros --- */
.sortable-col {
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s;
}
.sortable-col:hover {
  background-color: #f8f9fa !important;
}

.sortable-col .sort-header-container {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.sortable-col .sort-icon {
  font-size: 0.75rem;
  color: #cbd5e1;
  transition: color 0.2s, transform 0.2s;
}
.sortable-col:hover .sort-icon {
  color: #868788;
}

.filter-trigger-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  transition: background-color 0.15s;
}
.filter-trigger-btn:hover {
  background-color: #f1f5f9;
}

.filter-icon {
  font-size: 0.72rem;
  color: #cbd5e1;
  transition: color 0.2s;
}
.sortable-col:hover .filter-icon {
  color: #868788;
}
.filter-trigger-btn.active .filter-icon {
  color: #ca521f !important;
}

.filter-popover {
  display: none;
  position: absolute;
  top: 100%;
  left: 10px;
  z-index: 1000;
  min-width: 190px;
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  padding: 12px;
  margin-top: 6px;
  text-transform: none;
  font-weight: normal;
  box-sizing: border-box;
}
.filter-popover.show {
  display: block;
}

.filter-popover-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-clear-filter {
  background: none;
  border: none;
  color: #868788;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  text-align: left;
  transition: color 0.2s;
  width: fit-content;
  outline: none;
}
.btn-clear-filter:hover {
  color: #ca521f;
}

.column-filter-input,
.column-filter-select {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  color: #2b303a;
  outline: none;
  background-color: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.column-filter-select {
  cursor: pointer;
}

/* --- 5. Status, Badges & Ações --- */
.status-indicator-pulsing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #10b981;
}

.dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: none !important;
}

.dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: inherit;
  opacity: 0.8;
  animation: pulsing-ring 1.5s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
  transform-origin: center;
  box-shadow: none !important;
}

.status-indicator-pulsing .dot {
  background-color: #10b981;
}

@keyframes pulsing-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  70% {
    transform: scale(2.5);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.badge-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #10b981;
}
.badge-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid #f59e0b;
  color: #f59e0b;
}
.badge-info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid #3b82f6;
  color: #3b82f6;
}

.btn-three-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #ced4da;
  background-color: #ffffff;
  color: #868788;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-three-dots:hover {
  border-color: #ca521f;
  color: #ca521f;
  background-color: rgba(202, 82, 31, 0.04);
}

.dots-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 999;
  min-width: 140px;
  overflow: hidden;
}
.dots-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: #2b303a;
  text-decoration: none;
  transition: background-color 0.2s;
  text-align: left;
}
.dots-dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: #ca521f;
}

/* --- 6. Modal Wizard Stepper --- */
.modal-wizard-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-wizard-container {
  background-color: #ffffff;
  border-radius: 16px;
  width: 800px;
  max-width: 95%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  overflow: hidden;
  animation: modalSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}
@keyframes modalSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-wizard-header {
  padding: 20px 30px;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.modal-wizard-header h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a191b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-wizard-close-btn {
  background: none;
  border: none;
  color: #868788;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.modal-wizard-close-btn:hover {
  color: #ca521f;
}

.wizard-stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  box-sizing: border-box;
}
.stepper-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #868788;
}
.stepper-step.active {
  color: #ca521f;
}
.stepper-step.completed {
  color: #10b981;
}
.stepper-step .step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #e9ecef;
  color: #495057;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.stepper-step.active .step-number {
  background-color: #ca521f;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(202, 82, 31, 0.25);
}
.stepper-step.completed .step-number {
  background-color: #10b981;
  color: #ffffff;
}
.stepper-divider {
  flex-grow: 1;
  height: 2px;
  background-color: #e9ecef;
  margin: 0 16px;
}

.modal-wizard-body {
  padding: 30px;
  overflow-y: auto;
  flex-grow: 1;
  box-sizing: border-box;
}
.wizard-section {
  display: none;
}
.wizard-section.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.modal-wizard-footer {
  padding: 20px 30px;
  border-top: 1px solid #e9ecef;
  background-color: #f8f9fa;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}

/* --- 7. Modais de Diálogo Customizados --- */
#custom-dialog-modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.75);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
#custom-dialog-modal > div {
  background-color: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

/* --- 8. Skeleton Loading Animation (UI/UX) --- */
.skeleton-loader {
  background-color: #e9ecef;
  animation: skeleton-loading 1.5s ease-in-out infinite;
}

.skeleton-row {
  background-color: #f1f3f5;
  border-radius: 4px;
}

.skeleton-card {
  background-color: #f1f3f5;
  border-radius: 8px;
}

@keyframes skeleton-loading {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

/* --- 9. KPI Cards Grid & Styles (Shared) --- */
.kpi-row-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.kpi-card-instances {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.kpi-card-instances:hover {
  transform: translateY(-2px);
  border-color: rgba(202, 82, 31, 0.25);
  box-shadow: 0 8px 24px rgba(202, 82, 31, 0.04);
}

.kpi-card-instances .icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.kpi-card-instances .icon-circle.orange { background-color: rgba(202, 82, 31, 0.08); color: #ca521f; }
.kpi-card-instances .icon-circle.green { background-color: rgba(16, 185, 129, 0.08); color: #10b981; }
.kpi-card-instances .icon-circle.grey { background-color: rgba(108, 117, 125, 0.08); color: #6c757d; }
.kpi-card-instances .icon-circle.blue { background-color: rgba(59, 130, 246, 0.08); color: #3b82f6; }
.kpi-card-instances .icon-circle.red { background-color: rgba(239, 68, 68, 0.08); color: #ef4444; }

.kpi-card-instances .card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kpi-card-instances .card-info .value {
  font-family: 'Barlow', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a191b;
  line-height: 1.1;
}

.kpi-card-instances .card-info .label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #868788;
}

/* Responsividade para KPI Grid */
@media (max-width: 1200px) {
  .kpi-row-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .kpi-row-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .kpi-row-5 {
    grid-template-columns: 1fr;
  }
}

/* --- 10. Page Tabs Layout & Panels (Shared) --- */
.verteron-cs-tabs-container {
  display: flex;
  border-bottom: 1px solid #e9ecef;
  gap: 24px;
  margin-bottom: 24px;
}

.cs-tab-btn {
  padding: 10px 4px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #868788;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  background: transparent;
  border: none;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  outline: none;
}

.cs-tab-btn:hover {
  color: #1a191b;
  background: transparent;
}

.cs-tab-btn.active {
  color: #ca521f;
  border-bottom-color: #ca521f;
  background: transparent;
}

.cs-tab-panel {
  display: none;
}

.cs-tab-panel.active {
  display: block;
}

/* --- 11. Barra de Filtros e Paginação de Auditoria (Design System) --- */
.audit-filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.audit-filter-bar .filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.audit-filter-bar .filter-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #868788;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.audit-filter-bar .filter-control {
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  color: #2b303a;
  outline: none;
  background-color: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 170px;
  height: 38px;
  box-sizing: border-box;
}

.audit-filter-bar select.filter-control {
  cursor: pointer;
}

.audit-filter-bar .filter-control:focus {
  border-color: #ca521f;
  box-shadow: 0 0 0 3px rgba(202, 82, 31, 0.1);
}

.audit-filter-bar .filter-actions {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.btn-filter-submit {
  background-color: #ca521f;
  color: #ffffff;
  border: none;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s;
}

.btn-filter-submit:hover {
  background-color: #b04314;
}

.btn-filter-clear {
  background-color: #ffffff;
  color: #868788;
  border: 1px solid #ced4da;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  height: 38px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-sizing: border-box;
}

.btn-filter-clear:hover {
  background-color: #f8f9fa;
  color: #ca521f;
  border-color: #ca521f;
}

/* Container de Paginação */
.cs-pagination-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
  flex-wrap: wrap;
  gap: 16px;
}

.cs-pagination-info {
  font-size: 0.85rem;
  color: #868788;
  font-weight: 500;
}

.cs-pagination-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cs-pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  background-color: #ffffff;
  color: #495057;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.2s;
  box-sizing: border-box;
}

.cs-pagination-btn:hover:not(.disabled) {
  border-color: #ca521f;
  color: #ca521f;
  background-color: rgba(202, 82, 31, 0.04);
}

.cs-pagination-btn.active {
  background-color: #ca521f;
  border-color: #ca521f;
  color: #ffffff;
}

.cs-pagination-btn.disabled {
  color: #cbd5e1;
  border-color: #e2e8f0;
  cursor: not-allowed;
  pointer-events: none;
  background-color: #f8f9fa;
}

.cs-pagination-limit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #868788;
  font-weight: 500;
}

.cs-pagination-limit select {
  padding: 6px 10px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  outline: none;
  background-color: #ffffff;
  cursor: pointer;
  font-size: 0.82rem;
  height: 32px;
  font-family: 'Inter', sans-serif;
  color: #495057;
  transition: border-color 0.2s;
}

.cs-pagination-limit select:focus {
  border-color: #ca521f;
}

/* --- 10. Mitigacoes de Repaint e Otimizacoes de GPU quando o Drawer esta ativo --- */
body.drawer-open-active .dot::after {
  animation: none !important;
}
body.drawer-open-active #vmDrawer .dot::after {
  animation: pulsing-ring 1.5s cubic-bezier(0.215, 0.610, 0.355, 1) infinite !important;
}

body.drawer-open-active .skeleton-loader {
  animation: none !important;
}
body.drawer-open-active #vmDrawer .skeleton-loader {
  animation: skeleton-loading 1.5s ease-in-out infinite !important;
}



