/*!***********************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/main.css ***!
  \***********************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Anton&display=swap);
/*!***************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/main.css (1) ***!
  \***************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap);
/*!***************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/main.css (2) ***!
  \***************************************************************************/
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700);
/*!***************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/main.css (3) ***!
  \***************************************************************************/
@import url(https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css);
/*!**************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[1].use[3]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[4]!./src/sass/main.scss ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Anton&display=swap);
/*!******************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[1].use[3]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[4]!./src/sass/main.scss (1) ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap);
/*!******************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[1].use[3]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[4]!./src/sass/main.scss (2) ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700);
/*!******************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[1].use[3]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[4]!./src/sass/main.scss (3) ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************/
@import url(https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css);
/*!**************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/sidebar.css ***!
  \**************************************************************************/
/* =============================================
   APP LAYOUT — TWINEXA ERP LITE
   Design system: modern minimal
   ============================================= */

:root {
  --sidebar-width: 240px;
  --sidebar-width-collapsed: 64px;
  --sidebar-bg: #0c0c0e;
  --sidebar-border: rgba(255, 255, 255, 0.06);
  --sidebar-text: rgba(255, 255, 255, 0.58);
  --sidebar-text-hover: #ffffff;
  --sidebar-accent: #a855f7;
  --sidebar-accent-bg: rgba(168, 85, 247, 0.09);
  --sidebar-active-bg: rgba(168, 85, 247, 0.14);
  --topbar-height: 56px;
  --topbar-bg: #ffffff;
  --topbar-border: rgba(0, 0, 0, 0.07);
  --content-bg: #f4f5f8;
  --radius-sm: 6px;
  --radius-md: 8px;
  --transition: 0.2s ease;
}

/* ─── App Structure ────────────────────── */
.app-layout {
  display: flex;
  min-height: 100vh;
  background: var(--content-bg);
}

.app-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--content-bg);
}

.app-content {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 0;
}

/* ─── Sidebar ──────────────────────────── */
.app-sidebar {
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  overflow: hidden;
  border-right: 1px solid var(--sidebar-border);
  transition: width var(--transition);
  z-index: 100;
}

.app-sidebar--collapsed {
  width: var(--sidebar-width-collapsed);
}

/* ─── Sidebar Logo ─────────────────────── */
.sidebar-logo {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-bottom: 1px solid var(--sidebar-border);
  flex-shrink: 0;
  overflow: hidden;
  text-decoration: none;
}

.sidebar-logo-img {
  max-width: 140px;
  max-height: 48px;
  object-fit: contain;
}

.sidebar-logo-mono {
  font-size: 22px;
  font-weight: 800;
  color: var(--sidebar-accent);
  letter-spacing: -1px;
}

/* ─── Sidebar Nav ──────────────────────── */
.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px 0 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}

.sidebar-nav::-webkit-scrollbar { width: 3px; }
.sidebar-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

/* ─── Category header ──────────────────── */
.sidebar-category { margin-bottom: 2px; }

.sidebar-category-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 16px 4px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.28);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  transition: color var(--transition);
  white-space: nowrap;
}

.sidebar-category-btn:hover { color: rgba(255, 255, 255, 0.5); }
.sidebar-category-label { min-width: 0; overflow: hidden; text-overflow: ellipsis; }

.sidebar-chevron {
  font-size: 11px;
  transition: transform var(--transition);
  display: inline-block;
  flex-shrink: 0;
  margin-left: 4px;
}

.sidebar-chevron--open { transform: rotate(90deg); }

/* ─── Nav Item ─────────────────────────── */
.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 16px;
  color: var(--sidebar-text);
  text-decoration: none !important;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border-left: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  line-height: 1.35;
  min-width: 0;
}

.nav-icon {
  flex-shrink: 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  opacity: 0.55;
  transition: opacity var(--transition), color var(--transition);
}

.nav-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1;
}

.sidebar-nav-item:hover {
  color: var(--sidebar-text-hover);
  background: var(--sidebar-accent-bg);
  border-left-color: rgba(168, 85, 247, 0.45);
  text-decoration: none !important;
}

.sidebar-nav-item:hover .nav-icon { opacity: 0.9; }

.sidebar-nav-item--active {
  color: #ffffff;
  background: var(--sidebar-active-bg);
  border-left-color: var(--sidebar-accent);
  font-weight: 600;
}

.sidebar-nav-item--active .nav-icon {
  opacity: 1;
  color: var(--sidebar-accent);
}

.sidebar-nav-home { margin-bottom: 4px; }

/* ─── Reports SubMenu ──────────────────── */
.sidebar-reports-section {
  margin: 4px 0 2px;
}

/* Parent "Reportes" label row */
.sidebar-reports-parent {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  pointer-events: none;
  user-select: none;
}

.sidebar-reports-parent .nav-icon {
  flex-shrink: 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  opacity: 0.9;
}

.sidebar-reports-parent-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Group header button */
.sidebar-reports-group {
  margin-bottom: 1px;
}

.sidebar-reports-group-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 5px 14px 5px 28px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.32);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  transition: color var(--transition);
  white-space: nowrap;
  text-align: left;
}

.sidebar-reports-group-btn:hover {
  color: rgba(255, 255, 255, 0.55);
}

.sidebar-reports-group-btn--active {
  color: rgba(168, 85, 247, 0.75);
}

.sidebar-reports-group-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.sidebar-reports-chevron {
  font-size: 14px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 4px;
  opacity: 0.7;
}

/* Individual report links */
.sidebar-reports-items {
  padding-bottom: 2px;
}

.sidebar-reports-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 34px;
  color: var(--sidebar-text);
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1px;
  border-left: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1.35;
  min-width: 0;
}

.sidebar-reports-item-icon {
  flex-shrink: 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  opacity: 0.45;
  transition: opacity var(--transition), color var(--transition);
}

.sidebar-reports-item:hover {
  color: var(--sidebar-text-hover);
  background: var(--sidebar-accent-bg);
  border-left-color: rgba(168, 85, 247, 0.35);
  text-decoration: none !important;
}

.sidebar-reports-item:hover .sidebar-reports-item-icon {
  opacity: 0.8;
}

.sidebar-reports-item--active {
  color: #ffffff;
  background: var(--sidebar-active-bg);
  border-left-color: var(--sidebar-accent);
  font-weight: 600;
}

.sidebar-reports-item--active .sidebar-reports-item-icon {
  opacity: 1;
  color: var(--sidebar-accent);
}

/* Collapsed state */
.app-sidebar--collapsed .sidebar-category-btn { display: none; }

.app-sidebar--collapsed .sidebar-nav-item {
  justify-content: center;
  padding: 10px 0;
  border-left-color: transparent;
  border-radius: 0;
}

.app-sidebar--collapsed .sidebar-nav-item:hover { border-left-color: transparent; }

.nav-initial {
  font-size: 13px;
  font-weight: 600;
  color: inherit;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* ─── Sidebar Footer ───────────────────── */
.sidebar-footer {
  padding: 12px 14px 16px;
  border-top: 1px solid var(--sidebar-border);
  flex-shrink: 0;
}

.sidebar-logout-btn {
  width: 100%;
  padding: 7px 12px;
  background: transparent;
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: rgba(239, 68, 68, 0.7);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.2px;
}

.sidebar-logout-btn:hover {
  background: rgba(239, 68, 68, 0.07);
  border-color: #ef4444;
  color: #ef4444;
}

/* ─── Topbar ───────────────────────────── */
.app-topbar {
  height: var(--topbar-height);
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--topbar-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-toggle-btn {
  background: none;
  border: none;
  padding: 7px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}

.topbar-toggle-btn:hover { background: #f3f4f6; }

.topbar-mobile-brand {
  font-size: 15px;
  font-weight: 700;
  display: none;
  gap: 3px;
}

.topbar-btn {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: #4b5563;
  font-size: 13px;
  line-height: 1;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}

.topbar-btn:hover {
  background: #f9fafb;
  border-color: rgba(0, 0, 0, 0.18);
}

/* ─── Language dropdown ────────────────── */
.topbar-dropdown { position: relative; }

.topbar-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  min-width: 140px;
  overflow: hidden;
  z-index: 200;
}

.topbar-dropdown-item {
  display: block;
  width: 100%;
  padding: 9px 14px;
  background: none;
  border: none;
  text-align: left;
  font-size: 13px;
  color: #374151;
  cursor: pointer;
  transition: background var(--transition);
}

.topbar-dropdown-item:hover { background: #f9fafb; }
.topbar-dropdown-item--active { color: var(--sidebar-accent); font-weight: 500; }

/* ─── App Footer ───────────────────────── */
.app-footer {
  padding: 20px 32px;
  background: var(--sidebar-bg);
  border-top: 1px solid rgba(168, 85, 247, 0.18);
}

.app-footer a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--transition);
}

.app-footer a:hover { color: var(--sidebar-accent); }

/* ─── Mobile ───────────────────────────── */
@media (max-width: 774px) {
  .app-sidebar { display: none; }
  .topbar-toggle-btn { display: none !important; }
  .topbar-mobile-brand { display: flex; }
  .app-footer { display: none; }
}

@media (min-width: 775px) {
  .topbar-hamburger-mobile { display: none; }
}

/* ─── Dashboard ────────────────────────────────────────── */
.dash-welcome {
  padding: 28px 32px 0;
}

.dash-welcome-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--sidebar-accent);
  gap: 16px;
}

.dash-welcome-greeting {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  line-height: 1.3;
}

.dash-welcome-sub {
  font-size: 12px;
  color: #9ca3af;
  margin: 4px 0 0;
}

.dash-welcome-date {
  font-size: 12px;
  color: #6b7280;
  text-align: right;
  line-height: 1.7;
  text-transform: capitalize;
  flex-shrink: 0;
}

.dash-section {
  padding: 24px 32px;
}

.dash-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 16px;
}

/* ─── Category card grid ─── */
.dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.dash-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.dash-card:hover {
  box-shadow: 0 6px 18px rgba(168, 85, 247, 0.13);
  border-color: rgba(168, 85, 247, 0.35);
  transform: translateY(-2px);
}

.dash-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sidebar-accent);
  font-size: 20px;
  flex-shrink: 0;
}

.dash-card-name {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  margin: 0;
}

.dash-card-desc {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.dash-card-action {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--sidebar-accent);
  margin-top: 4px;
}

/* ─── Sub-module card grid ─── */
.dash-sub-title {
  padding: 24px 32px 12px;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.dash-subgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  padding: 0 32px 32px;
}

.dash-subcard {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 18px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.18s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.dash-subcard:hover {
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.1);
  transform: translateY(-1px);
}

.dash-subcard-label {
  font-size: 12px;
  font-weight: 500;
  color: #111827;
  line-height: 1.4;
  flex: 1;
}

.dash-subcard-arrow {
  color: #d1d5db;
  font-size: 14px;
  flex-shrink: 0;
  transition: color 0.18s ease, transform 0.18s ease;
}

.dash-subcard:hover .dash-subcard-arrow {
  color: var(--sidebar-accent);
  transform: translateX(3px);
}

/* ─── Dashboard responsive ─── */
@media (max-width: 774px) {
  .dash-welcome { padding: 16px 16px 0; }
  .dash-welcome-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .dash-welcome-date { text-align: left; }
  .dash-section { padding: 16px; }
  .dash-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .dash-sub-title { padding: 16px 16px 8px; }
  .dash-subgrid { padding: 0 16px 24px; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

/* ═══════════════════════════════════════════
   LOGISTIC MODULE
   ═══════════════════════════════════════════ */

.logi-page {
  padding: 24px 32px;
}

.logi-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 20px;
}

/* ─── Generic card container ─── */
.logi-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 20px 24px;
  margin-bottom: 16px;
}

/* ─── Step blocks ─── */
.logi-step {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 20px 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.logi-step-num {
  width: 28px;
  height: 28px;
  background: var(--sidebar-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.logi-step-num--done { background: #10b981; }

.logi-step-body { flex: 1; min-width: 0; }

.logi-step-title {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 14px;
}

/* ─── Tab switcher ─── */
.logi-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.logi-tab {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #374151;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.logi-tab:hover {
  border-color: var(--sidebar-accent);
  color: var(--sidebar-accent);
}

.logi-tab--active {
  background: var(--sidebar-accent);
  color: #fff;
  border-color: var(--sidebar-accent);
}

/* ─── Stats bar ─── */
.logi-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.logi-stat {
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 12px 18px;
  flex: 1;
  min-width: 120px;
}

.logi-stat-val {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  line-height: 1;
  display: block;
}

.logi-stat-label {
  font-size: 11px;
  color: #9ca3af;
  display: block;
  margin-top: 4px;
}

/* ─── Search bar ─── */
.logi-search {
  position: relative;
  margin-bottom: 16px;
}

.logi-search-input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 13px;
  background: #fff;
  outline: none;
  transition: border-color 0.15s ease;
}

.logi-search-input:focus {
  border-color: var(--sidebar-accent);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.08);
}

.logi-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
  font-size: 15px;
}

/* ─── Warehouse row cards ─── */
.logi-whs-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  width: 100%;
  text-align: left;
}

.logi-whs-row:hover {
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 3px 10px rgba(168, 85, 247, 0.08);
}

.logi-whs-code {
  font-size: 12px;
  font-weight: 700;
  color: var(--sidebar-accent);
  background: rgba(168, 85, 247, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

.logi-whs-name {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}

.logi-whs-area {
  font-size: 11px;
  color: #9ca3af;
  display: block;
  margin-top: 2px;
}

.logi-whs-chevron {
  color: #d1d5db;
  font-size: 16px;
  transition: color 0.15s ease, transform 0.15s ease;
}

.logi-whs-row:hover .logi-whs-chevron {
  color: var(--sidebar-accent);
  transform: translateX(3px);
}

/* ─── Logistic form selects/labels ─── */
.logi-label {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
  display: block;
  letter-spacing: 0.3px;
}

.logi-select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 13px;
  background: #fff;
  outline: none;
  transition: border-color 0.15s ease;
  appearance: auto;
}

.logi-select:focus {
  border-color: var(--sidebar-accent);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.08);
}

.logi-select:disabled {
  background: #f9fafb;
  color: #9ca3af;
  cursor: not-allowed;
}

/* ─── Mobile ─── */
@media (max-width: 774px) {
  .logi-page { padding: 16px; }
  .logi-whs-row { grid-template-columns: auto 1fr; }
  .logi-whs-chevron { display: none; }
  .logi-stats { gap: 8px; }
  .logi-stat { min-width: 100px; }
}

/* ════════════════════════════════════════════════════════════════
   TABLE DATA RENDER — empty + skeleton states
════════════════════════════════════════════════════════════════ */
.tdr-empty {
  padding: 52px 16px !important;
  text-align: center;
}
.tdr-empty-icon {
  display: block;
  margin: 0 auto 8px;
  font-size: 2.4rem;
  color: #c4c9d4;
}
.tdr-empty span {
  font-size: 0.85rem;
  color: #9ca3af;
  font-weight: 500;
}

/* skeleton rows */
.tdr-skeleton-row td {
  padding: 10px 12px !important;
}
.tdr-skeleton-cell {
  display: inline-block;
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(90deg, #e8eaed 25%, #f3f4f6 50%, #e8eaed 75%);
  background-size: 200% 100%;
  animation: tdr-shimmer 1.4s infinite;
}
@keyframes tdr-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ════════════════════════════════════════════════════════════════
   REPORTS MODULE — rpt-* namespace
════════════════════════════════════════════════════════════════ */
.rpt-page { padding: 28px 32px; max-width: 1400px; }

.rpt-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f3f4f6;
}
.rpt-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
  line-height: 1.2;
}
.rpt-subtitle {
  font-size: 0.85rem;
  color: #9ca3af;
  margin: 0;
}

/* Section label */
.rpt-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
}

/* KPI cards */
.rpt-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}
.rpt-kpi {
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: box-shadow 0.18s, transform 0.15s;
  position: relative;
  overflow: hidden;
}
.rpt-kpi::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #e5e7eb;
  border-radius: 14px 14px 0 0;
}
.rpt-kpi--danger::before  { background: #ef4444; }
.rpt-kpi--warning::before { background: #f59e0b; }
.rpt-kpi--success::before { background: #10b981; }
.rpt-kpi:hover { box-shadow: 0 6px 22px rgba(0,0,0,.09); transform: translateY(-1px); }

.rpt-kpi-icon {
  font-size: 1.3rem;
  color: #d1d5db;
  margin-bottom: 6px;
  line-height: 1;
}
.rpt-kpi--danger  .rpt-kpi-icon { color: #ef4444; }
.rpt-kpi--warning .rpt-kpi-icon { color: #f59e0b; }
.rpt-kpi--success .rpt-kpi-icon { color: #10b981; }

.rpt-kpi-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.rpt-kpi-value {
  font-size: clamp(0.9rem, 1.3vw, 1.35rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 4px;
}
.rpt-kpi--danger  .rpt-kpi-value { color: #ef4444; }
.rpt-kpi--warning .rpt-kpi-value { color: #d97706; }
.rpt-kpi--success .rpt-kpi-value { color: #059669; }
.rpt-kpi-sub {
  font-size: 0.73rem;
  color: #9ca3af;
  margin-top: 3px;
}

/* Filter bar */
.rpt-filter-bar {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 20px;
}
.rpt-filter-group { display: flex; flex-direction: column; gap: 4px; }
.rpt-filter-label { font-size: 0.7rem; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.05em; }
.rpt-filter-input {
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.84rem;
  color: #374151;
  background: #f9fafb;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-width: 145px;
}
.rpt-filter-input:focus {
  border-color: var(--sidebar-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(168,85,247,.1);
}
.rpt-filter-btn {
  padding: 9px 22px;
  background: var(--sidebar-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.1s;
  align-self: flex-end;
}
.rpt-filter-btn:hover  { background: #9333ea; }
.rpt-filter-btn:active { transform: scale(0.97); }
.rpt-filter-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* Table card */
.rpt-table-card {
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
}
.rpt-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #f3f4f6;
  background: #fafafa;
}
.rpt-table-title { font-size: 0.88rem; font-weight: 700; color: #374151; }
.rpt-table-count {
  font-size: 0.72rem;
  color: #a855f7;
  font-weight: 700;
  background: rgba(168,85,247,.08);
  padding: 3px 10px;
  border-radius: 20px;
}

/* Badges */
.rpt-badge { display: inline-block; padding: 3px 9px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; }
.rpt-badge--positive { background: #d1fae5; color: #065f46; }
.rpt-badge--negative { background: #fee2e2; color: #991b1b; }
.rpt-badge--neutral  { background: #f3f4f6; color: #6b7280; }
.rpt-badge--warning  { background: #fef3c7; color: #92400e; }

.rpt-results-meta { padding: 12px 20px; font-size: 0.78rem; color: #9ca3af; border-top: 1px solid #f3f4f6; }

/* Dashboard landing cards */
.rpt-landing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 4px;
}
.rpt-landing-card {
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 20px 18px;
  cursor: pointer;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.rpt-landing-card:hover {
  box-shadow: 0 8px 28px rgba(168,85,247,.15);
  border-color: #a855f7;
  transform: translateY(-3px);
}
.rpt-landing-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(168,85,247,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #a855f7;
  margin-bottom: 2px;
  flex-shrink: 0;
  transition: background 0.18s;
}
.rpt-landing-card:hover .rpt-landing-card-icon { background: rgba(168,85,247,.18); }
.rpt-landing-card-icon--danger  { background: rgba(239,68,68,.09);  color: #ef4444; }
.rpt-landing-card-icon--warning { background: rgba(245,158,11,.09); color: #d97706; }
.rpt-landing-card-icon--success { background: rgba(16,185,129,.09); color: #059669; }
.rpt-landing-card:hover .rpt-landing-card-icon--danger  { background: rgba(239,68,68,.18); }
.rpt-landing-card:hover .rpt-landing-card-icon--warning { background: rgba(245,158,11,.18); }
.rpt-landing-card:hover .rpt-landing-card-icon--success { background: rgba(16,185,129,.18); }

.rpt-landing-card-title { font-size: 0.93rem; font-weight: 700; color: #111827; line-height: 1.3; }
.rpt-landing-card-desc  { font-size: 0.77rem; color: #9ca3af; line-height: 1.5; }
.rpt-landing-card-arrow {
  position: absolute;
  top: 20px; right: 18px;
  color: #e5e7eb;
  font-size: 1rem;
  transition: color 0.18s, transform 0.18s;
}
.rpt-landing-card:hover .rpt-landing-card-arrow { color: #a855f7; transform: translateX(3px); }

/* Inventory color cells */
.rpt-low  { color: #ef4444; font-weight: 600; }
.rpt-ok   { color: #059669; font-weight: 600; }
.rpt-dead { color: #d97706; font-weight: 600; }

/* Alert row */
.rpt-alert-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.83rem;
  font-weight: 500;
  line-height: 1.4;
}
.rpt-alert-row--red    { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.rpt-alert-row--yellow { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.rpt-alert-row--green  { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }

@media (max-width: 774px) {
  .rpt-page { padding: 16px; }
  .rpt-kpis { grid-template-columns: 1fr 1fr; }
  .rpt-filter-bar { flex-direction: column; align-items: stretch; }
  .rpt-filter-input { min-width: unset; }
  .rpt-landing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .rpt-kpis { grid-template-columns: 1fr; }
  .rpt-landing-grid { grid-template-columns: 1fr; }
}

/*!***************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/__widths.css ***!
  \***************************************************************************/
@media (min-width: 992px) {
  /* lg en Bootstrap */
  .w-lg-25 {
    width: 25% !important;
  }
}

@media (min-width: 768px) {
  /* md en Bootstrap */
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-50{
    width: 50%;
  }
}

/*!***************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/main.css (4) ***!
  \***************************************************************************/
@charset "UTF-8";

.carousel-control-next,
.carousel-control-prev {
  margin: 0px;
}

.form-floating label {
  color: rgba(0, 0, 0, 0.5) !important; /* Color gris más claro */
  transition: color 0.3s ease-in-out;
}

.form-floating input:focus + label,
.form-floating input:not(:placeholder-shown) + label {
  color: rgba(0, 0, 0, 0.8) !important; /* Se oscurece al escribir o enfocar */
}



.btn-test {
  background-color: #7f00c9;
  color: white;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%; /* Ocupa todo el ancho del contenedor */
  max-width: 150px; /* Evita que sea demasiado ancho */
  margin: 0 auto; /* Centra el botón */
}

.btn-test:hover {
  background-color: #9947c9;
  color: white;
}

.btn-test:disabled {
  background-color: #9f00fc;
  color: white;
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-info {
  background-color: #00909b;
}

.btn-info:hover {
  background-color: #00909b;
  border-color: #00909b;
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.btn-module {
  color: white;
}
.btn-module.btn-module-overtimeRequest {
  background-color: #a00136;
}
.btn-module.btn-module-overtimeRequest:hover {
  background-color: #ca3567;
}
.btn-module.btn-module-expensse {
  background-color: rgb(18, 148, 1);
}
.btn-module.btn-module-expensse:hover {
  background-color: rgba(49, 172, 33, 0.8274509804);
}
.btn-module.btn-module-operationMeeting {
  background-color: #1691e3;
}
.btn-module.btn-module-operationMeeting:hover {
  background-color: #49a9e9;
}
.btn-module.btn-module-quick8d {
  background-color: #8000a0;
}
.btn-module.btn-module-quick8d:hover {
  background-color: #a644be;
}
.btn-module.btn-module-absenteism {
  background-color: #d68b00;
}
.btn-module.btn-module-absenteism:hover {
  background-color: #eea216;
}
.btn-module.btn-module-exitPass {
  background-color: #1ebac5;
}
.btn-module.btn-module-exitPass:hover {
  background-color: #4ec8d1;
}
.btn-module.btn-module-payroll {
  background-color: #28d88c;
}
.btn-module.btn-module-payroll:hover {
  background-color: #28d88c;
}
.btn-module.btn-module-adminIT {
  background-color: #a73ba7;
}
.btn-module.btn-module-adminIT:hover {
  background-color: #a73ba7;
}
.btn-module.btn-module-reporting {
  background-color: #180ea8;
}
.btn-module.btn-module-reporting:hover {
  background-color: #453ae6;
}
.btn-module.btn-module-jit {
  background-color: #cc2626;
}
.btn-module.btn-module-jit:hover {
  background-color: #cc2626;
}
.btn-module.btn-module-managerActions {
  background-color: #178254;
}
.btn-module.btn-module-managerActions:hover {
  background-color: #178254;
}

.file_button label {
  overflow: hidden;
  padding: 4px;
  position: relative;
  outline: none;
  border-radius: 4px;
  height: 40px;
  cursor: pointer;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  width: 132px;
  /* Estilos para el icono o contenido antes del label */
  /* Estilos para el texto después del label */
}
@supports (-moz-appearance: none) {
  .file_button label {
    color: #005ec9;
  }
}
.file_button label:hover {
  background-color: #f3f4f6;
}
.file_button label:active {
  background-color: #e5e7eb;
}
.file_button label::before {
  position: absolute;
  pointer-events: none;
  top: 10px;
  left: 10px;
  width: 25px;
  height: 20px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27%230964B0%27%3E%3Cpath d=%27M13 19v-4h3l-4-5-4 5h3v4z%27%3E%3C/path%3E%3Cpath d=%27M7 19h2v-2H7c-1.654 0-3-1.346-3-3 0-1.404 1.199-2.756 2.673-3.015l.581-.102.192-.558C8.149 8.274 9.895 7 12 7c2.757 0 5 2.243 5 5v1h1c1.103 0 2 .897 2 2s-.897 2-2 2h-3v2h3c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888C18.507 7.67 15.56 5 12 5 9.244 5 6.85 6.611 5.757 9.15 3.609 9.792 2 11.82 2 14c0 2.757 2.243 5 5 5z%27%3E%3C/path%3E%3C/svg%3E");
}
.file_button label::after {
  position: absolute;
  pointer-events: none;
  top: 8px;
  left: 40px;
  color: black;
  content: "Subir PDF";
}

.file_download a {
  overflow: hidden;
  padding: 4px;
  position: relative;
  outline: none;
  border-radius: 4px;
  width: 122px !important;
  height: 40px !important;
  cursor: pointer;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  /* Estilos para el icono o contenido antes del label */
  /* Estilos para el texto después del label */
}
@supports (-moz-appearance: none) {
  .file_download a {
    color: #0e4d32;
  }
}
.file_download a:hover {
  background-color: #f3f4f6;
}
.file_download a:active {
  background-color: #e5e7eb;
}
.file_download a::before {
  position: absolute;
  pointer-events: none;
  top: 8px;
  left: 12px;
  width: 25px;
  height: 20px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath d=%27M18.948 11.112C18.511 7.67 15.563 5 12.004 5c-2.756 0-5.15 1.611-6.243 4.15-2.148.642-3.757 2.67-3.757 4.85 0 2.757 2.243 5 5 5h1v-2h-1c-1.654 0-3-1.346-3-3 0-1.404 1.199-2.757 2.673-3.016l.581-.102.192-.558C8.153 8.273 9.898 7 12.004 7c2.757 0 5 2.243 5 5v1h1c1.103 0 2 .897 2 2s-.897 2-2 2h-2v2h2c2.206 0 4-1.794 4-4a4.008 4.008 0 0 0-3.056-3.888z%27 fill=%27var%28--success-color%29%27%3E%3C/path%3E%3Cpath d=%27M13.004 14v-4h-2v4h-3l4 5 4-5z%27 fill=%27var%28--success-color%29%27%3E%3C/path%3E%3C/svg%3E");
}
.file_download a::after {
  position: absolute;
  pointer-events: none;
  top: 8px;
  left: 45px;
  color: var(--success-color);
  content: "Ver PDF";
}

.box {
  position: relative;
  padding-bottom: 10px;
}

.box_advance {
  outline: 2px dashed #ccc;
  transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear;
}

.box_icon {
  width: 100%;
  display: block;
  color: #ccc;
  margin-bottom: 15px;
  margin-top: 0px;
  font-size: 50px;
}
@media (max-width: 396px) {
  .box_icon svg {
    font-size: 1em;
  }
}

.drag-over {
  color: #005ec9;
}

.box_file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.box_file input[type="file"] {
  display: block;
}

.box_file + label {
  font-size: 1.25em;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 0;
}
@media (max-width: 396px) {
  .box_file + label {
    font-size: 0.7em;
  }
}

.btn-slide {
  position: relative;
  display: inline-block;
  height: 55px;
  width: 200px;
  line-height: 50px;
  padding: 0;
  border-radius: 50px;
  margin: 10px;
  transition: 0.5s;
}
.btn-slide.btn-slide-primary {
  background: #fdfdfd;
  border: 2px solid #0099cc;
}
.btn-slide.btn-slide-primary:hover {
  background-color: #0099cc;
  color: white;
}
.btn-slide.btn-slide-secondary {
  background: #fdfdfd;
  border: 2px solid #b1cc00;
}
.btn-slide.btn-slide-secondary:hover {
  background-color: #b1cc00;
  color: white;
}
.btn-slide.btn-slide-pink {
  background: #fdfdfd;
  border: 2px solid #b80099;
}
.btn-slide.btn-slide-pink:hover {
  background-color: #b80099;
  color: white;
}
.btn-slide:hover span.circle {
  left: 100%;
  margin-left: -45px;
}
.btn-slide:hover span.circle.circle-primary {
  background-color: #fdfdfd;
  color: #0099cc;
}
.btn-slide:hover span.circle.circle-secondary {
  background-color: #fdfdfd;
  color: #b1cc00;
}
.btn-slide:hover span.circle.circle-pink {
  background-color: #fdfdfd;
  color: #b80099;
}
.btn-slide:hover span.title {
  left: 40px;
  opacity: 0;
}
.btn-slide:hover span.title-hover {
  opacity: 1;
  left: 40px;
  color: #fdfdfd;
}
.btn-slide span.circle {
  display: block;
  position: absolute;
  float: left;
  margin: 5px;
  line-height: 42px;
  height: 40px;
  width: 40px;
  top: 0;
  left: 0;
  transition: 0.5s;
  border-radius: 50%;
}
.btn-slide span.circle.circle-primary {
  background-color: #0099cc;
  color: #fff;
}
.btn-slide span.circle.circle-secondary {
  background-color: #b1cc00;
  color: #fff;
}
.btn-slide span.circle.circle-pink {
  background-color: #b80099;
  color: #fff;
}
.btn-slide span.title-hover {
  opacity: 0;
}
.btn-slide span.title,
.btn-slide span.title-hover {
  position: absolute;
  left: 60px;
  bottom: 0px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  transition: 0.5s;
}
.btn-slide span.title.title-hover,
.btn-slide span.title-hover.title-hover {
  left: 40px;
  color: #fff;
}
.btn-slide span.title.title-primary,
.btn-slide span.title-hover.title-primary {
  color: #30abd5;
}
.btn-slide span.title.title-secondary,
.btn-slide span.title-hover.title-secondary {
  color: #b1cc00;
}
.btn-slide span.title.title-pink,
.btn-slide span.title-hover.title-pink {
  color: #b80099;
}

.description {
  width: 450px;
}

.table-report {
  font-size: small;
}

.table-scroll {
  max-height: 500px;
  overflow-y: auto;
  position: relative;
}

.table-scroll table {
  border-collapse: separate;
}

.table-scroll table thead {
  position: sticky;
  top: 0;
  z-index: 1;
  margin-top: 0;
  border-bottom: 1px solid black;
}

.table-scroll-large {
  max-height: 800px;
  overflow-y: auto;
  position: relative;
}

.table-scroll-large table {
  border-collapse: separate;
}

.table-scroll-large table thead {
  position: sticky;
  top: 0;
  z-index: 1;
  margin-top: 0;
  border-bottom: 1px solid black;
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  table tr th,
  table tr td {
    border: 0px solid #dddddd;
  }
  table.resp,
  .resp thead,
  .resp tbody,
  .resp tr,
  .resp th,
  .resp td,
  .resp caption {
    display: block;
  }
  table.resp {
    border: none;
  }
  .resp thead tr {
    display: none;
  }
  .resp tbody tr {
    margin: 1em 0;
    border: 1px solid #595959;
  }
  .resp td {
    border: none;
    border-bottom: 1px solid #dddddd;
    position: relative;
    padding-left: 45%;
    text-align: left;
  }
  .resp tr td:last-child {
    border-bottom: 1px double #595959;
  }
  .resp tr:last-child td:last-child {
    border: none;
  }
  .resp td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }
  table.table-open-issues.resp td:nth-of-type(1):before {
    content: "FECHA:";
  }
  table.table-open-issues.resp td:nth-of-type(2):before {
    content: "DETALLE:";
  }
  table.table-open-issues.resp td:nth-of-type(3):before {
    content: "ESTADO:";
  }
  table.table-open-issues.resp td:nth-of-type(4)::before {
    content: "CRITICIDAD: ";
  }
  table.table-notes.resp td:nth-of-type(1):before {
    content: "NOTA:";
  }
  table.table-notes.resp td:nth-of-type(2):before {
    content: "FECHA:";
  }
  table.table-generate-over-req.resp td:nth-of-type(1):before {
    content: "LEGAJO:";
  }
  table.table-generate-over-req.resp td:nth-of-type(2):before {
    content: "NOMBRE:";
  }
  table.table-generate-over-req.resp td:nth-of-type(3):before {
    content: "MOD:";
  }
  table.table-generate-over-req.resp td:nth-of-type(4):before {
    content: "HORA INICIO:";
  }
  table.table-generate-over-req.resp td:nth-of-type(5):before {
    content: "HORA FIN:";
  }
  table.table-details.resp td:nth-of-type(1):before {
    content: "LEGAJO:";
  }
  table.table-details.resp td:nth-of-type(2):before {
    content: "NOMBRE:";
  }
  table.table-details.resp td:nth-of-type(3):before {
    content: "HORA INICIO:";
  }
  table.table-details.resp td:nth-of-type(4):before {
    content: "HORA FIN:";
  }
  table.table-details.resp td:nth-of-type(5):before {
    content: "CANT. HORAS:";
  }
}
.table-present {
  background-color: #4caf50 !important;
}

.table-missing {
  background-color: #ff6f61 !important;
}

.table-suspend {
  background-color: #fabb1c !important;
}

.table-info {
  background-color: #2093ff !important;
}

body {
  margin-top: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

body.modal-open {
  padding-right: 0 !important;
}

body[style] {
  padding-right: 0 !important;
}

.custom-pre {
  white-space: pre-wrap;
  overflow: hidden;
  max-width: 90%;
  word-wrap: break-word;
  height: auto;
  overflow-y: auto;
  margin: 0px;
}


.app-container {
  background-color: #ffffff;
  display: flex;
  height: 100%;
  flex-direction: column;
  margin-bottom: 70px;
}

.preserve-newline {
  white-space: pre-line;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.swal2-confirm {
  background-color: #198754 !important;
  border: #198754;
}

/*Header*/
.Header {
  display: grid;
  grid-template-areas: "logo nav";
}

.img-header {
  margin-left: 1%;
  margin-right: 1%;
}

.Nav {
  display: grid;
  grid-area: nav;
  grid-template-columns: repeat(4, auto);
  align-items: center;
  justify-items: center;
}

.stepper-line {
  border: none;
  border-top: 2px solid #ccc;
  margin-top: 12px;
}

image {
  filter: invert(100%);
}

.logo {
  width: 20%;
  height: 20%;
  filter: invert(80%);
}

.pagination {
  display: flex;
  justify-content: center;
}

/*Forms*/
.background-form {
  background-color: white;
  border-radius: 1%;
  padding: 2%;
}

.background-form-dark {
  background-color: white;
  border-radius: 1%;
  padding: 2%;
  border: 0.3px solid black;
}

/*Forms*/
.background-form-meeting {
  background-color: white;
  border-radius: 8px;
  padding: 2%;
  width: 90%;
}

.background-form-login {
  background-color: white;
  border-radius: 1%;
  margin-top: 3%;
  padding: 2%;
  width: 40%;
  box-shadow: 10px 10px 8px rgb(117, 117, 117);
}

.background-form-charge-user {
  background-color: white;
  border-radius: 1%;
  margin-top: 3%;
  padding: 2%;
  width: 80%;
  box-shadow: 10px 10px 8px rgb(117, 117, 117);
}

.background-table {
  background-color: rgb(219, 219, 219);
  border-radius: 1%;
  margin-top: 2%;
  padding: 18px;
  border-radius: 12px;
}

.avatar {
  font-size: 120px;
}

.btn {
  cursor: pointer;
}

/*Aca se encuentra los estilos del hover de los botones*/
.btn:hover {
  transition: 0.3s ease-in-out;
}

.hide {
  opacity: 0;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.visible {
  opacity: 1;
}

.LoginWithCreden {
  background-color: rgba(255, 255, 255, 0);
  border: none;
  border-color: rgba(255, 255, 255, 0);
}

.ForgotPass {
  background-color: rgba(255, 255, 255, 0);
  border: none;
  font-size: small;
}

.container-user {
  text-align: center !important;
}

.input-bucket {
  width: 100px;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.input-group-text {
  padding: 3px;
}

.print {
  font-size: 10px;
}

.preformat {
  width: 500px;
  white-space: pre-wrap;
}

.list-without-dots {
  list-style-type: none;
  padding-left: 0;
}

@media screen and (max-width: 1000px) {
  .card {
    margin-top: 30px;
  }
}
@media screen and (max-width: 720px) {
  body {
    margin: 0%;
  }
  .background-form-meeting {
    padding: 5;
  }
  .background-form-login {
    width: 90%;
    margin-top: 80px;
  }
  .avatar {
    font-size: 50px;
  }
  .background-form {
    margin-left: 2%;
    margin-right: 2%;
  }
  .foot {
    width: 100%;
    height: 10%;
  }
  .logo {
    width: 60%;
    height: 60%;
  }
  hr {
    margin-top: 10px;
  }
  h4 {
    font-size: medium;
  }
  h3 {
    font-size: medium;
  }
  .LoginWithCredenden {
    font-size: smaller;
  }
  .ForgotPass {
    font-size: smaller;
  }
  .export-excel {
    visibility: hidden;
  }
  .btn-cargar-trabajador {
    font-size: small;
  }
}
@media screen and (max-width: 427px) {
  .card {
    width: 180px;
    height: 100px;
  }
  .card-title {
    font-size: 12px;
  }
  .card-subtitle {
    font-size: 12px;
  }
}
@media screen and (max-width: 427px) {
  .no-mobile {
    display: none !important;
  }
}
a {
  text-decoration: none;
}

body.menu-open {
  overflow: hidden !important;
  overflow-x: hidden !important;
}

h5 {
  font-size: 20px;
}

@media screen and (max-with: 427px) {
  h5 {
    font-size: 12px;
  }
}
article.container h3 {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
}
article.container.mt-5 h3 {
  text-align: initial;
  margin-top: initial;
  margin-bottom: initial;
}

.form-label.required::after {
  content: " *";
  color: red;
}

.snow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.snowflake {
  position: absolute;
  top: -10px;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes fall {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(50vh) translateX(20px) rotate(180deg);
  }
  100% {
    transform: translateY(100vh) translateX(-20px) rotate(360deg);
  }
}
.fireworks-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 10;
}

.firework {
  position: absolute;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.particle {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: white;
  border-radius: 50%;
  opacity: 0;
  animation-name: explode, fadeOut;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

/* Animación de explosión */
@keyframes explode {
  0% {
    transform: translate(0);
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
/* Animación de desvanecimiento */
@keyframes fadeOut {
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.carousel-control-next,
.carousel-control-prev {
  margin: 0px;
}

.btn-primary {
  background-color: #005ec9;
}
.btn-primary:hover {
  background-color: #097cff;
  border-color: #097cff;
}

.btn-modules {
  width: 200px;
  height: 100px;
  font-size: 1em;
  background-color: rgb(155, 57, 247) ;
  color: #fff;
  border: none;
  padding: 0.85em 0.75em;
  margin-top: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.12s;
}

.btn-modules:hover{
  transform: scale(1.02);
}


/* Estilos para pantallas laptop */
@media (max-width: 1081px) {
  .btn-modules {
    width: 160px;
    height: 100px;
    font-size: 0.9em;
  }
}
/* Estilos para pantallas pequeñas */
@media (max-width: 769px) {
  .btn-modules {
    width: 150px;
    height: 110px;
    font-size: 0.8em;
  }
}
@media (max-width: 427px) {
  .btn-modules {
    width: 170px;
    height: 90px;
    font-size: 0.9em;
  }
}
@media (max-width: 376px) {
  .btn-modules {
    width: 150px;
    height: 100px;
    font-size: 0.8em;
  }
}
@media (max-width: 336px) {
  .btn-modules {
    width: 135px;
    height: 100px;
    font-size: 0.8em;
  }
}
@media (max-width: 321px) {
  .btn-modules {
    width: 120px;
    height: 100px;
    font-size: 0.8em;
  }
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

/* Estilos para pantallas pequeñas */
@media (max-width: 769px) {
  .description-modules {
    display: none;
  }

  .module-line {
    display: none;
  }

  .icon-modules {
    font-size: 0.9rem; /* Reduce tamaño del icono */
    top: 5px; /* Ajusta la posición más arriba */
    right: 6px; /* Más pegado a la derecha */
  }

  .line-modules {
    display: none;
  }

  .btn-test {
    display: none;
  }
}

.btn-module {
  color: white;
}
.btn-module.btn-module-overtimeRequest {
  background-color: #a00136;
}
.btn-module.btn-module-overtimeRequest:hover {
  background-color: #ca3567;
}
.btn-module.btn-module-expensse {
  background-color: rgb(18, 148, 1);
}
.btn-module.btn-module-expensse:hover {
  background-color: rgba(49, 172, 33, 0.8274509804);
}
.btn-module.btn-module-operationMeeting {
  background-color: #1691e3;
}
.btn-module.btn-module-operationMeeting:hover {
  background-color: #49a9e9;
}
.btn-module.btn-module-quick8d {
  background-color: #8000a0;
}
.btn-module.btn-module-quick8d:hover {
  background-color: #a644be;
}
.btn-module.btn-module-absenteism {
  background-color: #d68b00;
}
.btn-module.btn-module-absenteism:hover {
  background-color: #eea216;
}
.btn-module.btn-module-exitPass {
  background-color: #1ebac5;
}
.btn-module.btn-module-exitPass:hover {
  background-color: #4ec8d1;
}
.btn-module.btn-module-payroll {
  background-color: #28d88c;
}
.btn-module.btn-module-payroll:hover {
  background-color: #28d88c;
}
.btn-module.btn-module-adminIT {
  background-color: #a73ba7;
}
.btn-module.btn-module-adminIT:hover {
  background-color: #a73ba7;
}
.btn-module.btn-module-reporting {
  background-color: #180ea8;
}
.btn-module.btn-module-reporting:hover {
  background-color: #453ae6;
}
.btn-module.btn-module-jit {
  background-color: #cc2626;
}
.btn-module.btn-module-jit:hover {
  background-color: #cc2626;
}
.btn-module.btn-module-managerActions {
  background-color: #178254;
}
.btn-module.btn-module-managerActions:hover {
  background-color: #178254;
}

.file_button label {
  overflow: hidden;
  padding: 4px;
  position: relative;
  outline: none;
  border-radius: 4px;
  height: 40px;
  cursor: pointer;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  width: 132px;
  /* Estilos para el icono o contenido antes del label */
  /* Estilos para el texto después del label */
}
@supports (-moz-appearance: none) {
  .file_button label {
    color: #005ec9;
  }
}
.file_button label:hover {
  background-color: #f3f4f6;
}
.file_button label:active {
  background-color: #e5e7eb;
}
.file_button label::before {
  position: absolute;
  pointer-events: none;
  top: 10px;
  left: 10px;
  width: 25px;
  height: 20px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27%230964B0%27%3E%3Cpath d=%27M13 19v-4h3l-4-5-4 5h3v4z%27%3E%3C/path%3E%3Cpath d=%27M7 19h2v-2H7c-1.654 0-3-1.346-3-3 0-1.404 1.199-2.756 2.673-3.015l.581-.102.192-.558C8.149 8.274 9.895 7 12 7c2.757 0 5 2.243 5 5v1h1c1.103 0 2 .897 2 2s-.897 2-2 2h-3v2h3c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888C18.507 7.67 15.56 5 12 5 9.244 5 6.85 6.611 5.757 9.15 3.609 9.792 2 11.82 2 14c0 2.757 2.243 5 5 5z%27%3E%3C/path%3E%3C/svg%3E");
}
.file_button label::after {
  position: absolute;
  pointer-events: none;
  top: 8px;
  left: 40px;
  color: black;
  content: "Subir PDF";
}

.file_download a {
  overflow: hidden;
  padding: 4px;
  position: relative;
  outline: none;
  border-radius: 4px;
  width: 122px !important;
  height: 40px !important;
  cursor: pointer;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  /* Estilos para el icono o contenido antes del label */
  /* Estilos para el texto después del label */
}
@supports (-moz-appearance: none) {
  .file_download a {
    color: #0e4d32;
  }
}
.file_download a:hover {
  background-color: #f3f4f6;
}
.file_download a:active {
  background-color: #e5e7eb;
}
.file_download a::before {
  position: absolute;
  pointer-events: none;
  top: 8px;
  left: 12px;
  width: 25px;
  height: 20px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath d=%27M18.948 11.112C18.511 7.67 15.563 5 12.004 5c-2.756 0-5.15 1.611-6.243 4.15-2.148.642-3.757 2.67-3.757 4.85 0 2.757 2.243 5 5 5h1v-2h-1c-1.654 0-3-1.346-3-3 0-1.404 1.199-2.757 2.673-3.016l.581-.102.192-.558C8.153 8.273 9.898 7 12.004 7c2.757 0 5 2.243 5 5v1h1c1.103 0 2 .897 2 2s-.897 2-2 2h-2v2h2c2.206 0 4-1.794 4-4a4.008 4.008 0 0 0-3.056-3.888z%27 fill=%27var%28--success-color%29%27%3E%3C/path%3E%3Cpath d=%27M13.004 14v-4h-2v4h-3l4 5 4-5z%27 fill=%27var%28--success-color%29%27%3E%3C/path%3E%3C/svg%3E");
}
.file_download a::after {
  position: absolute;
  pointer-events: none;
  top: 8px;
  left: 45px;
  color: var(--success-color);
  content: "Ver PDF";
}

.box {
  position: relative;
  padding-bottom: 10px;
}

.box_advance {
  outline: 2px dashed #ccc;
  transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear;
}

.box_icon {
  width: 100%;
  display: block;
  color: #ccc;
  margin-bottom: 15px;
  margin-top: 0px;
  font-size: 50px;
}
@media (max-width: 396px) {
  .box_icon svg {
    font-size: 1em;
  }
}

.drag-over {
  color: #005ec9;
}

.box_file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.box_file input[type="file"] {
  display: block;
}

.box_file + label {
  font-size: 1.25em;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 0;
}
@media (max-width: 396px) {
  .box_file + label {
    font-size: 0.7em;
  }
}

.btn-slide {
  position: relative;
  display: inline-block;
  height: 55px;
  width: 200px;
  line-height: 50px;
  padding: 0;
  border-radius: 50px;
  margin: 10px;
  transition: 0.5s;
}
.btn-slide.btn-slide-primary {
  background: #fdfdfd;
  border: 2px solid #0099cc;
}
.btn-slide.btn-slide-primary:hover {
  background-color: #0099cc;
  color: white;
}
.btn-slide.btn-slide-secondary {
  background: #fdfdfd;
  border: 2px solid #b1cc00;
}
.btn-slide.btn-slide-secondary:hover {
  background-color: #b1cc00;
  color: white;
}
.btn-slide.btn-slide-pink {
  background: #fdfdfd;
  border: 2px solid #b80099;
}
.btn-slide.btn-slide-pink:hover {
  background-color: #b80099;
  color: white;
}
.btn-slide:hover span.circle {
  left: 100%;
  margin-left: -45px;
}
.btn-slide:hover span.circle.circle-primary {
  background-color: #fdfdfd;
  color: #0099cc;
}
.btn-slide:hover span.circle.circle-secondary {
  background-color: #fdfdfd;
  color: #b1cc00;
}
.btn-slide:hover span.circle.circle-pink {
  background-color: #fdfdfd;
  color: #b80099;
}
.btn-slide:hover span.title {
  left: 40px;
  opacity: 0;
}
.btn-slide:hover span.title-hover {
  opacity: 1;
  left: 40px;
  color: #fdfdfd;
}
.btn-slide span.circle {
  display: block;
  position: absolute;
  float: left;
  margin: 5px;
  line-height: 42px;
  height: 40px;
  width: 40px;
  top: 0;
  left: 0;
  transition: 0.5s;
  border-radius: 50%;
}
.btn-slide span.circle.circle-primary {
  background-color: #0099cc;
  color: #fff;
}
.btn-slide span.circle.circle-secondary {
  background-color: #b1cc00;
  color: #fff;
}
.btn-slide span.circle.circle-pink {
  background-color: #b80099;
  color: #fff;
}
.btn-slide span.title-hover {
  opacity: 0;
}
.btn-slide span.title,
.btn-slide span.title-hover {
  position: absolute;
  left: 60px;
  bottom: 0px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  transition: 0.5s;
}
.btn-slide span.title.title-hover,
.btn-slide span.title-hover.title-hover {
  left: 40px;
  color: #fff;
}
.btn-slide span.title.title-primary,
.btn-slide span.title-hover.title-primary {
  color: #30abd5;
}
.btn-slide span.title.title-secondary,
.btn-slide span.title-hover.title-secondary {
  color: #b1cc00;
}
.btn-slide span.title.title-pink,
.btn-slide span.title-hover.title-pink {
  color: #b80099;
}

.description {
  width: 450px;
}

.table-report {
  font-size: small;
}

.table-scroll {
  max-height: 500px;
  overflow-y: auto;
  position: relative;
}

.table-scroll table {
  border-collapse: separate;
}

.table-scroll table thead {
  position: sticky;
  top: 0;
  z-index: 1;
  margin-top: 0;
  border-bottom: 1px solid black;
}

.table-scroll-large {
  max-height: 800px;
  overflow-y: auto;
  position: relative;
}

.table-scroll-large table {
  border-collapse: separate;
}

.table-scroll-large table thead {
  position: sticky;
  top: 0;
  z-index: 1;
  margin-top: 0;
  border-bottom: 1px solid black;
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  table tr th,
  table tr td {
    border: 0px solid #dddddd;
  }
  table.resp,
  .resp thead,
  .resp tbody,
  .resp tr,
  .resp th,
  .resp td,
  .resp caption {
    display: block;
  }
  table.resp {
    border: none;
  }
  .resp thead tr {
    display: none;
  }
  .resp tbody tr {
    margin: 1em 0;
    border: 1px solid #595959;
  }
  .resp td {
    border: none;
    border-bottom: 1px solid #dddddd;
    position: relative;
    padding-left: 45%;
    text-align: left;
  }
  .resp tr td:last-child {
    border-bottom: 1px double #595959;
  }
  .resp tr:last-child td:last-child {
    border: none;
  }
  .resp td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }
  table.table-open-issues.resp td:nth-of-type(1):before {
    content: "FECHA:";
  }
  table.table-open-issues.resp td:nth-of-type(2):before {
    content: "DETALLE:";
  }
  table.table-open-issues.resp td:nth-of-type(3):before {
    content: "ESTADO:";
  }
  table.table-open-issues.resp td:nth-of-type(4)::before {
    content: "CRITICIDAD: ";
  }
  table.table-notes.resp td:nth-of-type(1):before {
    content: "NOTA:";
  }
  table.table-notes.resp td:nth-of-type(2):before {
    content: "FECHA:";
  }
  table.table-generate-over-req.resp td:nth-of-type(1):before {
    content: "LEGAJO:";
  }
  table.table-generate-over-req.resp td:nth-of-type(2):before {
    content: "NOMBRE:";
  }
  table.table-generate-over-req.resp td:nth-of-type(3):before {
    content: "MOD:";
  }
  table.table-generate-over-req.resp td:nth-of-type(4):before {
    content: "HORA INICIO:";
  }
  table.table-generate-over-req.resp td:nth-of-type(5):before {
    content: "HORA FIN:";
  }
  table.table-details.resp td:nth-of-type(1):before {
    content: "LEGAJO:";
  }
  table.table-details.resp td:nth-of-type(2):before {
    content: "NOMBRE:";
  }
  table.table-details.resp td:nth-of-type(3):before {
    content: "HORA INICIO:";
  }
  table.table-details.resp td:nth-of-type(4):before {
    content: "HORA FIN:";
  }
  table.table-details.resp td:nth-of-type(5):before {
    content: "CANT. HORAS:";
  }
}
.table-present {
  background-color: #4caf50 !important;
}

.table-missing {
  background-color: #ff6f61 !important;
}

.table-suspend {
  background-color: #fabb1c !important;
}

.table-info {
  background-color: #2093ff !important;
}

.img_container {
  background-color: rgb(235, 235, 235);
  border: 1px solid rgb(189, 189, 189);
  height: 250px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 3px;
}
.img_container:hover {
  background-color: rgb(108, 155, 255);
  transition: ease-in 0.6s;
}
.img_container img {
  width: 50%;
  height: auto;
  object-fit: cover;
}
.img_container embed {
  width: 80%;
  height: auto;
}

.ant-image {
  margin-top: 20px !important;
}

.embed-container {
  margin-top: 20px;
  width: 400px;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.embed {
  width: 100%;
  height: 100%;
  border: none;
  position: relative;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 2;
  transition: background-color 0.3s ease;
}

.embed-container:hover .overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.open-button {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: auto;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 3;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.open-button:hover {
  background-color: #0077f7;
}

.embed-container:hover .open-button {
  display: block;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: transparent;
  width: 36px;
  height: 36px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.card-dark {
  background-color: black;
}

.article {
  padding: 15px;
}

.report summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  font-weight: bold;
  cursor: pointer;
}

.report summary::after {
  content: "";
  width: 18px;
  height: 10px;
  background: url("https://uploads.sitepoint.com/wp-content/uploads/2023/10/1697699669arrow.svg")
    no-repeat;
  background-size: cover;
  transition: 0.2s ease-in;
}

.report details[open] > summary::after {
  transform: rotate(180deg);
}

.report summary::-webkit-details-marker {
  display: none;
}

.report summary {
  color: #30353b;
  border-radius: 5px;
}

.report details[open] summary {
  border-radius: 5px 5px 0 0;
}

.report details {
  background-color: #e5eeef;
  background-image: linear-gradient(45deg, #dfe8e9 0%, #c8d7e3 100%);
  border-radius: 5px;
}

.report details article {
  opacity: 0;
}

.report details[open] article {
  animation: fadeIn 0.75s linear forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.sidebar {
  color: #fff;
  height: 100% !important;
  width: 280px !important;
  min-width: none !important;
  display: flex !important;
  flex-direction: column !important;
  z-index: 2 !important;
}
@media screen and (max-width: 480px) {
  .sidebar {
    display: none !important;
  }
}
.sidebar.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 10px;
}

.menu-item {
  height: 88vh;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1rem;
  position: relative;
}

.ant-layout-header {
  height: 77px;
  background-color: black;
}


@media screen and (min-width: 427px) {
  .header-mobile-title {
    display: none !important;
  }
}

@media screen and (max-width: 427px) {
  .ant-layout-header {
    padding: 0.4px !important;
  }
}


.toolbar {
  background-color: #001529;
  opacity: 0.92;
  position: fixed;
  bottom: 0;
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 200;
  color: #eef8ff;
  display: none;
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%; /* Divide el ancho igualmente entre los iconos */
  font-size: 25px;
}

@media only screen and (max-width: 480px) {
  .toolbar {
    display: flex;
  }
}
.menu-mobile,
.submenu-mobile {
  background-color: #005195;
  color: #eef8ff;
  position: absolute;
  top: 62px;
  height: 50%;
  width: 100%;
  font-size: 1em;
  overflow: auto;
  border-bottom: black 1px solid;
  align-items: center;
}

.menu-mobile {
  z-index: 1000;
}

.submenu-mobile {
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.submenu-mobile.show {
  transform: translateX(0);
}

.menu-background {
  margin-top: 62px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  inset: 0;
}

.menu-mobile ul {
  list-style: none;
  padding-left: 0;
  border-bottom: solid 0.5px #00427a;
  margin: 0;
}
.menu-mobile ul:hover {
  background-color: #00427a;
  transition: all 0.8s ease-out;
}

.menu-mobile .label-options {
  padding: 20px 16px;
  border-bottom: solid 0.5px  rgb(159, 51, 159);
  background-color: #000000;
}

.submenu-mobile .label-options {
  padding: 20px 16px;
  
}

.category-name {
  margin-top: 0;
  font-weight: bold;
}

.submenu-mobile ul {
  list-style: none;
  padding-left: 0;
  border-bottom: solid 0.5px #00427a;
  margin: 0;
}
.submenu-mobile ul:hover {
  background-color: #00427a;
  transition: all 0.3s ease-out;
}


.submenu-mobile a .label-options {
  padding: 20px 16px;
  text-decoration: none;
  color: #eef8ff;
}

.animated-logo-mobile {
  display: none;
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-btn {
  background-color: rgb(39, 195, 81) !important;
  border-color: rgb(39, 195, 81) !important;
  color: #fff !important;
}
.custom-btn .ant-btn-inner {
  color: rgba(0, 0, 0, 0) !important;
}
.custom-btn:hover {
  background-color: rgb(25, 150, 58) !important;
  border-color: rgb(25, 150, 58) !important;
}
.custom-btn:hover .ant-btn-inner {
  color: #000000 !important;
}

@media (max-width: 768px) {
 
}
@media (min-width: 1920px) {
  .animated-logo img,
  .animated-forward img {
    width: 700px;
  }
  .login-form-section {
    flex: 0 0 40%;
    padding: 0 40px;
    font-size: 1.2em;
  }
}
.animated-square {
  animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) square-in-center both;
}

.animated-square-shadow {
  animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) square-in-center both;
}

@keyframes square-in-center {
  from {
    clip-path: inset(100% 100% 100% 100%);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
[transition-style="in:square:center"] {
  animation: 0.75s cubic-bezier(0.25, 1, 0.3, 1) square-in-center both;
}

.animated-cilcle {
  animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1);
}

@keyframes circle-in-center {
  from {
    clip-path: circle(0%);
  }
  to {
    clip-path: circle(125%);
  }
}
[transition-style="in:circle:center"] {
  animation: 1s cubic-bezier(0.25, 1, 0.3, 1) circle-in-center both;
}

.animated-wipe-down {
  animation: 1s cubic-bezier(0.25, 1, 0.3, 1);
}

@keyframes wipe-in-down {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
[transition-style="in:wipe:down"] {
  animation: 1s cubic-bezier(0.5, 1, 0.3, 1) wipe-in-down both;
}

.animated-wipe-down-fast {
  animation: 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}

@keyframes wipe-in-down-fast {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
[transition-style="in:wipe:down-fast"] {
  animation: 0.6s cubic-bezier(0.6, 1, 0.3, 1) wipe-in-down both;
}

.animated-wipe-up-fast {
  animation: 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}

@keyframes wipe-in-up-fast {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
[transition-style="in:wipe:up-fast"] {
  animation: 0.6s cubic-bezier(0.6, 1, 0.3, 1) wipe-in-up both;
}
@media (max-width: 768px) {
  .responsive-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .responsive-input {
    width: 100%;
  }

  .responsive-button-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .responsive-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  /* Contenedor flexible en mobile */
  .mobile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  /* Hacer que el input ocupe todo el ancho */
  .mobile-input {
    
  }

  /* Hacer que el botón ocupe todo el ancho */
  .mobile-button {
    width: 100%;
    white-space: nowrap; /* Evita que el texto se divida en varias líneas */
    text-align: center;
    margin-top: 30px;
  }

  /* Ajuste de la info */
  .mobile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
  }

  .moviment {
    margin-top: 40px;
  }
}
/*!******************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[1].use[3]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[4]!./src/sass/main.scss (4) ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* ESTILOS GENERALES */
.btn-dashboard {
  width: 200px;
  height: 250px;
  max-width: 300px;
  max-height: 250px;
  transition: ease-in-out 0.1s;
}
@media (max-width: 850px) {
  .btn-dashboard {
    width: 100%;
    height: 100px;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1300px) {
  .btn-dashboard {
    width: 300px;
  }
}

.btn-dashboard:hover {
  transform: scale(1.05);
}

.carousel-control-next,
.carousel-control-prev {
  margin: 0px;
}

.btn-test {
  background-color: #7f00c9;
  color: white;
  border: none;
  box-shadow: none;
}
.btn-test:hover {
  background-color: #9947c9;
  color: white;
}
.btn-test:disabled {
  background-color: rgb(159.223880597, 0, 252);
  color: white;
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-info {
  background-color: #00909b;
}
.btn-info:hover {
  background-color: #00909b;
  border-color: #00909b;
}

.btn-primary {
  background-color: #005ec9;
}
.btn-primary:hover {
  background-color: #097cff;
  border-color: #097cff;
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.btn-module {
  color: white;
}
.btn-module.btn-module-overtimeRequest {
  background-color: #a00136;
}
.btn-module.btn-module-overtimeRequest:hover {
  background-color: #ca3567;
}
.btn-module.btn-module-expensse {
  background-color: rgb(18, 148, 1);
}
.btn-module.btn-module-expensse:hover {
  background-color: rgba(49, 172, 33, 0.8274509804);
}
.btn-module.btn-module-operationMeeting {
  background-color: #1691e3;
}
.btn-module.btn-module-operationMeeting:hover {
  background-color: #49a9e9;
}
.btn-module.btn-module-quick8d {
  background-color: #8000a0;
}
.btn-module.btn-module-quick8d:hover {
  background-color: #a644be;
}
.btn-module.btn-module-absenteism {
  background-color: #d68b00;
}
.btn-module.btn-module-absenteism:hover {
  background-color: #eea216;
}
.btn-module.btn-module-exitPass {
  background-color: #1ebac5;
}
.btn-module.btn-module-exitPass:hover {
  background-color: #4ec8d1;
}
.btn-module.btn-module-payroll {
  background-color: #28d88c;
}
.btn-module.btn-module-payroll:hover {
  background-color: #28d88c;
}
.btn-module.btn-module-adminIT {
  background-color: #a73ba7;
}
.btn-module.btn-module-adminIT:hover {
  background-color: #a73ba7;
}
.btn-module.btn-module-reporting {
  background-color: #180ea8;
}
.btn-module.btn-module-reporting:hover {
  background-color: #453ae6;
}
.btn-module.btn-module-jit {
  background-color: #cc2626;
}
.btn-module.btn-module-jit:hover {
  background-color: #cc2626;
}
.btn-module.btn-module-managerActions {
  background-color: #178254;
}
.btn-module.btn-module-managerActions:hover {
  background-color: #178254;
}

.file_button label {
  overflow: hidden;
  padding: 4px;
  position: relative;
  outline: none;
  border-radius: 4px;
  height: 40px;
  cursor: pointer;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  width: 132px;
  /* Estilos para el icono o contenido antes del label */
  /* Estilos para el texto después del label */
}
@supports (-moz-appearance: none) {
  .file_button label {
    color: #005ec9;
  }
}
.file_button label:hover {
  background-color: #f3f4f6;
}
.file_button label:active {
  background-color: #e5e7eb;
}
.file_button label::before {
  position: absolute;
  pointer-events: none;
  top: 10px;
  left: 10px;
  width: 25px;
  height: 20px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27%230964B0%27%3E%3Cpath d=%27M13 19v-4h3l-4-5-4 5h3v4z%27%3E%3C/path%3E%3Cpath d=%27M7 19h2v-2H7c-1.654 0-3-1.346-3-3 0-1.404 1.199-2.756 2.673-3.015l.581-.102.192-.558C8.149 8.274 9.895 7 12 7c2.757 0 5 2.243 5 5v1h1c1.103 0 2 .897 2 2s-.897 2-2 2h-3v2h3c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888C18.507 7.67 15.56 5 12 5 9.244 5 6.85 6.611 5.757 9.15 3.609 9.792 2 11.82 2 14c0 2.757 2.243 5 5 5z%27%3E%3C/path%3E%3C/svg%3E");
}
.file_button label::after {
  position: absolute;
  pointer-events: none;
  top: 8px;
  left: 40px;
  color: black;
  content: "Subir PDF";
}

.file_download a {
  overflow: hidden;
  padding: 4px;
  position: relative;
  outline: none;
  border-radius: 4px;
  width: 122px !important;
  height: 40px !important;
  cursor: pointer;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  /* Estilos para el icono o contenido antes del label */
  /* Estilos para el texto después del label */
}
@supports (-moz-appearance: none) {
  .file_download a {
    color: #0e4d32;
  }
}
.file_download a:hover {
  background-color: #f3f4f6;
}
.file_download a:active {
  background-color: #e5e7eb;
}
.file_download a::before {
  position: absolute;
  pointer-events: none;
  top: 8px;
  left: 12px;
  width: 25px;
  height: 20px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath d=%27M18.948 11.112C18.511 7.67 15.563 5 12.004 5c-2.756 0-5.15 1.611-6.243 4.15-2.148.642-3.757 2.67-3.757 4.85 0 2.757 2.243 5 5 5h1v-2h-1c-1.654 0-3-1.346-3-3 0-1.404 1.199-2.757 2.673-3.016l.581-.102.192-.558C8.153 8.273 9.898 7 12.004 7c2.757 0 5 2.243 5 5v1h1c1.103 0 2 .897 2 2s-.897 2-2 2h-2v2h2c2.206 0 4-1.794 4-4a4.008 4.008 0 0 0-3.056-3.888z%27 fill=%27var%28--success-color%29%27%3E%3C/path%3E%3Cpath d=%27M13.004 14v-4h-2v4h-3l4 5 4-5z%27 fill=%27var%28--success-color%29%27%3E%3C/path%3E%3C/svg%3E");
}
.file_download a::after {
  position: absolute;
  pointer-events: none;
  top: 8px;
  left: 45px;
  color: var(--success-color);
  content: "Ver PDF";
}

.box {
  position: relative;
  padding-bottom: 10px;
}

.box_advance {
  outline: 2px dashed #ccc;
  transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear;
}

.box_icon {
  width: 100%;
  display: block;
  color: #ccc;
  margin-bottom: 15px;
  margin-top: 0px;
  font-size: 50px;
}
@media (max-width: 396px) {
  .box_icon svg {
    font-size: 1em;
  }
}

.drag-over {
  color: #005ec9;
}

.box_file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.box_file input[type=file] {
  display: block;
}

.box_file + label {
  font-size: 1.25em;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 0;
}
@media (max-width: 396px) {
  .box_file + label {
    font-size: 0.7em;
  }
}

.btn-slide {
  position: relative;
  display: inline-block;
  height: 55px;
  width: 200px;
  line-height: 50px;
  padding: 0;
  border-radius: 50px;
  margin: 10px;
  transition: 0.5s;
}
.btn-slide.btn-slide-primary {
  background: #fdfdfd;
  border: 2px solid #0099cc;
}
.btn-slide.btn-slide-primary:hover {
  background-color: #0099cc;
  color: white;
}
.btn-slide.btn-slide-secondary {
  background: #fdfdfd;
  border: 2px solid #b1cc00;
}
.btn-slide.btn-slide-secondary:hover {
  background-color: #b1cc00;
  color: white;
}
.btn-slide.btn-slide-pink {
  background: #fdfdfd;
  border: 2px solid #b80099;
}
.btn-slide.btn-slide-pink:hover {
  background-color: #b80099;
  color: white;
}
.btn-slide:hover span.circle {
  left: 100%;
  margin-left: -45px;
}
.btn-slide:hover span.circle.circle-primary {
  background-color: #fdfdfd;
  color: #0099cc;
}
.btn-slide:hover span.circle.circle-secondary {
  background-color: #fdfdfd;
  color: #b1cc00;
}
.btn-slide:hover span.circle.circle-pink {
  background-color: #fdfdfd;
  color: #b80099;
}
.btn-slide:hover span.title {
  left: 40px;
  opacity: 0;
}
.btn-slide:hover span.title-hover {
  opacity: 1;
  left: 40px;
  color: #fdfdfd;
}
.btn-slide span.circle {
  display: block;
  position: absolute;
  float: left;
  margin: 5px;
  line-height: 42px;
  height: 40px;
  width: 40px;
  top: 0;
  left: 0;
  transition: 0.5s;
  border-radius: 50%;
}
.btn-slide span.circle.circle-primary {
  background-color: #0099cc;
  color: #fff;
}
.btn-slide span.circle.circle-secondary {
  background-color: #b1cc00;
  color: #fff;
}
.btn-slide span.circle.circle-pink {
  background-color: #b80099;
  color: #fff;
}
.btn-slide span.title-hover {
  opacity: 0;
}
.btn-slide span.title,
.btn-slide span.title-hover {
  position: absolute;
  left: 60px;
  bottom: 0px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  transition: 0.5s;
}
.btn-slide span.title.title-hover,
.btn-slide span.title-hover.title-hover {
  left: 40px;
  color: #fff;
}
.btn-slide span.title.title-primary,
.btn-slide span.title-hover.title-primary {
  color: #30abd5;
}
.btn-slide span.title.title-secondary,
.btn-slide span.title-hover.title-secondary {
  color: #b1cc00;
}
.btn-slide span.title.title-pink,
.btn-slide span.title-hover.title-pink {
  color: #b80099;
}

.description {
  width: 450px;
}

.table-report {
  font-size: small;
}

.table-scroll {
  max-height: 500px;
  overflow-y: auto;
  position: relative;
}

.table-scroll table {
  border-collapse: separate;
}

.table-scroll table thead {
  position: sticky;
  top: 0;
  z-index: 1;
  margin-top: 0;
  border-bottom: 1px solid black;
}

.table-scroll-large {
  max-height: 800px;
  overflow-y: auto;
  position: relative;
}

.table-scroll-large table {
  border-collapse: separate;
}

.table-scroll-large table thead {
  position: sticky;
  top: 0;
  z-index: 1;
  margin-top: 0;
  border-bottom: 1px solid black;
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  table tr th,
  table tr td {
    border: 0px solid #dddddd;
  }
  table.resp,
  .resp thead,
  .resp tbody,
  .resp tr,
  .resp th,
  .resp td,
  .resp caption {
    display: block;
  }
  table.resp {
    border: none;
  }
  .resp thead tr {
    display: none;
  }
  .resp tbody tr {
    margin: 1em 0;
    border: 1px solid #595959;
  }
  .resp td {
    border: none;
    border-bottom: 1px solid #dddddd;
    position: relative;
    padding-left: 45%;
    text-align: left;
  }
  .resp tr td:last-child {
    border-bottom: 1px double #595959;
  }
  .resp tr:last-child td:last-child {
    border: none;
  }
  .resp td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }
  table.table-open-issues.resp td:nth-of-type(1):before {
    content: "FECHA:";
  }
  table.table-open-issues.resp td:nth-of-type(2):before {
    content: "DETALLE:";
  }
  table.table-open-issues.resp td:nth-of-type(3):before {
    content: "ESTADO:";
  }
  table.table-open-issues.resp td:nth-of-type(4)::before {
    content: "CRITICIDAD: ";
  }
  table.table-notes.resp td:nth-of-type(1):before {
    content: "NOTA:";
  }
  table.table-notes.resp td:nth-of-type(2):before {
    content: "FECHA:";
  }
  table.table-generate-over-req.resp td:nth-of-type(1):before {
    content: "LEGAJO:";
  }
  table.table-generate-over-req.resp td:nth-of-type(2):before {
    content: "NOMBRE:";
  }
  table.table-generate-over-req.resp td:nth-of-type(3):before {
    content: "MOD:";
  }
  table.table-generate-over-req.resp td:nth-of-type(4):before {
    content: "HORA INICIO:";
  }
  table.table-generate-over-req.resp td:nth-of-type(5):before {
    content: "HORA FIN:";
  }
  table.table-details.resp td:nth-of-type(1):before {
    content: "LEGAJO:";
  }
  table.table-details.resp td:nth-of-type(2):before {
    content: "NOMBRE:";
  }
  table.table-details.resp td:nth-of-type(3):before {
    content: "HORA INICIO:";
  }
  table.table-details.resp td:nth-of-type(4):before {
    content: "HORA FIN:";
  }
  table.table-details.resp td:nth-of-type(5):before {
    content: "CANT. HORAS:";
  }
}
.table-present {
  background-color: #4caf50 !important;
}

.table-missing {
  background-color: #ff6f61 !important;
}

.table-suspend {
  background-color: #fabb1c !important;
}

.table-info {
  background-color: #2093ff !important;
}

body {
  margin-top: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

body.modal-open {
  padding-right: 0 !important;
}

body[style] {
  padding-right: 0 !important;
}

.custom-pre {
  white-space: pre-wrap;
  overflow: hidden;
  max-width: 90%;
  word-wrap: break-word;
  height: auto;
  overflow-y: auto;
  margin: 0px;
}

.app-content > div {
  flex: 1;
}

.preserve-newline {
  white-space: pre-line;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.swal2-confirm {
  background-color: #198754 !important;
  border: #198754;
}

/*Header*/
.Header {
  display: grid;
  grid-template-areas: "logo nav";
}

.img-header {
  margin-left: 1%;
  margin-right: 1%;
}

.Nav {
  display: grid;
  grid-area: nav;
  grid-template-columns: repeat(4, auto);
  align-items: center;
  justify-items: center;
}

.stepper-line {
  border: none;
  border-top: 2px solid #ccc;
  margin-top: 12px;
}

image {
  filter: invert(100%);
}

.logo {
  width: 20%;
  height: 20%;
  filter: invert(80%);
}

.pagination {
  display: flex;
  justify-content: center;
}

/*Forms*/
.background-form {
  background-color: white;
  border-radius: 1%;
  padding: 2%;
}

.background-form-dark {
  background-color: #e1e8ee;
  border-radius: 1%;
  padding: 2%;
}

/*Forms*/
.background-form-meeting {
  background-color: rgb(247, 247, 247);
  border-radius: 8px;
  padding: 2%;
  width: 90%;
}

.background-form-login {
  background-color: white;
  border-radius: 1%;
  margin-top: 3%;
  padding: 2%;
  width: 40%;
  box-shadow: 10px 10px 8px rgb(117, 117, 117);
}

.background-form-charge-user {
  background-color: white;
  border-radius: 1%;
  margin-top: 3%;
  padding: 2%;
  width: 80%;
  box-shadow: 10px 10px 8px rgb(117, 117, 117);
}

.background-table {
  background-color: rgb(219, 219, 219);
  border-radius: 1%;
  margin-top: 2%;
  padding: 18px;
  border-radius: 12px;
}

.avatar {
  font-size: 120px;
}

.btn {
  cursor: pointer;
}

.hide {
  opacity: 0;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.visible {
  opacity: 1;
}

.LoginWithCreden {
  background-color: rgba(255, 255, 255, 0);
  border: none;
  border-color: rgba(255, 255, 255, 0);
}

.ForgotPass {
  background-color: rgba(255, 255, 255, 0);
  border: none;
  font-size: small;
}

.container-user {
  text-align: center !important;
}

.input-bucket {
  width: 100px;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.input-group-text {
  padding: 3px;
}

.print {
  font-size: 10px;
}

.preformat {
  width: 500px;
  white-space: pre-wrap;
}

.list-without-dots {
  list-style-type: none;
  padding-left: 0;
}

@media screen and (max-width: 1000px) {
  .card {
    margin-top: 30px;
  }
}
@media screen and (max-width: 720px) {
  body {
    margin: 0%;
  }
  .background-form-meeting {
    padding: 5;
  }
  .background-form-login {
    width: 90%;
    margin-top: 80px;
  }
  .avatar {
    font-size: 50px;
  }
  .background-form {
    margin-left: 2%;
    margin-right: 2%;
  }
  .logo {
    width: 60%;
    height: 60%;
  }
  hr {
    margin-top: 10px;
  }
  h4 {
    font-size: medium;
  }
  h3 {
    font-size: medium;
  }
  .LoginWithCredenden {
    font-size: smaller;
  }
  .ForgotPass {
    font-size: smaller;
  }
  .export-excel {
    visibility: hidden;
  }
  .btn-cargar-trabajador {
    font-size: small;
  }
}
@media screen and (max-width: 427px) {
  .card {
    width: 180px;
    height: 100px;
  }
  .card-title {
    font-size: 12px;
  }
  .card-subtitle {
    font-size: 12px;
  }
}
@media screen and (max-width: 427px) {
  .no-mobile {
    display: none !important;
  }
}
a {
  text-decoration: none;
}

body.menu-open {
  overflow: hidden !important;
  overflow-x: hidden !important;
}

h5 {
  font-size: 20px;
}

@media screen and (max-with: 427px) {
  h5 {
    font-size: 12px;
  }
}
article.container h3 {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
}
article.container.mt-5 h3 {
  text-align: initial;
  margin-top: initial;
  margin-bottom: initial;
}

.form-label.required::after {
  content: " *";
  color: red;
}

.login-container {
  display: flex;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.image-login {
  flex: 1;
  overflow: hidden;
  height: 100%;
}

.image-login img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Asegura que la imagen cubra todo el espacio disponible */
}

.form-login {
  flex: 0.4;
  background-color: #dcf0ff;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.snow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.snowflake {
  position: absolute;
  top: -10px;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes fall {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(50vh) translateX(20px) rotate(180deg);
  }
  100% {
    transform: translateY(100vh) translateX(-20px) rotate(360deg);
  }
}
.fireworks-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 10;
}

.firework {
  position: absolute;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.particle {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: white;
  border-radius: 50%;
  opacity: 0;
  animation-name: explode, fadeOut;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

/* Animación de explosión */
@keyframes explode {
  0% {
    transform: translate(0);
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
/* Animación de desvanecimiento */
@keyframes fadeOut {
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ESTILOS GENERALES */
.btn-dashboard {
  width: 200px;
  height: 250px;
  max-width: 300px;
  max-height: 250px;
  transition: ease-in-out 0.1s;
}
@media (max-width: 850px) {
  .btn-dashboard {
    width: 100%;
    height: 100px;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1300px) {
  .btn-dashboard {
    width: 300px;
  }
}

.btn-dashboard:hover {
  transform: scale(1.05);
}

.carousel-control-next,
.carousel-control-prev {
  margin: 0px;
}

.btn-test {
  background-color: #7f00c9;
  color: white;
  border: none;
  box-shadow: none;
}
.btn-test:hover {
  background-color: #9947c9;
  color: white;
}
.btn-test:disabled {
  background-color: rgb(159.223880597, 0, 252);
  color: white;
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-info {
  background-color: #00909b;
}
.btn-info:hover {
  background-color: #00909b;
  border-color: #00909b;
}

.btn-primary {
  background-color: #005ec9;
}
.btn-primary:hover {
  background-color: #097cff;
  border-color: #097cff;
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.btn-module {
  color: white;
}
.btn-module.btn-module-overtimeRequest {
  background-color: #a00136;
}
.btn-module.btn-module-overtimeRequest:hover {
  background-color: #ca3567;
}
.btn-module.btn-module-expensse {
  background-color: rgb(18, 148, 1);
}
.btn-module.btn-module-expensse:hover {
  background-color: rgba(49, 172, 33, 0.8274509804);
}
.btn-module.btn-module-operationMeeting {
  background-color: #1691e3;
}
.btn-module.btn-module-operationMeeting:hover {
  background-color: #49a9e9;
}
.btn-module.btn-module-quick8d {
  background-color: #8000a0;
}
.btn-module.btn-module-quick8d:hover {
  background-color: #a644be;
}
.btn-module.btn-module-absenteism {
  background-color: #d68b00;
}
.btn-module.btn-module-absenteism:hover {
  background-color: #eea216;
}
.btn-module.btn-module-exitPass {
  background-color: #1ebac5;
}
.btn-module.btn-module-exitPass:hover {
  background-color: #4ec8d1;
}
.btn-module.btn-module-payroll {
  background-color: #28d88c;
}
.btn-module.btn-module-payroll:hover {
  background-color: #28d88c;
}
.btn-module.btn-module-adminIT {
  background-color: #a73ba7;
}
.btn-module.btn-module-adminIT:hover {
  background-color: #a73ba7;
}
.btn-module.btn-module-reporting {
  background-color: #180ea8;
}
.btn-module.btn-module-reporting:hover {
  background-color: #453ae6;
}
.btn-module.btn-module-jit {
  background-color: #cc2626;
}
.btn-module.btn-module-jit:hover {
  background-color: #cc2626;
}
.btn-module.btn-module-managerActions {
  background-color: #178254;
}
.btn-module.btn-module-managerActions:hover {
  background-color: #178254;
}

.file_button label {
  overflow: hidden;
  padding: 4px;
  position: relative;
  outline: none;
  border-radius: 4px;
  height: 40px;
  cursor: pointer;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  width: 132px;
  /* Estilos para el icono o contenido antes del label */
  /* Estilos para el texto después del label */
}
@supports (-moz-appearance: none) {
  .file_button label {
    color: #005ec9;
  }
}
.file_button label:hover {
  background-color: #f3f4f6;
}
.file_button label:active {
  background-color: #e5e7eb;
}
.file_button label::before {
  position: absolute;
  pointer-events: none;
  top: 10px;
  left: 10px;
  width: 25px;
  height: 20px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27%230964B0%27%3E%3Cpath d=%27M13 19v-4h3l-4-5-4 5h3v4z%27%3E%3C/path%3E%3Cpath d=%27M7 19h2v-2H7c-1.654 0-3-1.346-3-3 0-1.404 1.199-2.756 2.673-3.015l.581-.102.192-.558C8.149 8.274 9.895 7 12 7c2.757 0 5 2.243 5 5v1h1c1.103 0 2 .897 2 2s-.897 2-2 2h-3v2h3c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888C18.507 7.67 15.56 5 12 5 9.244 5 6.85 6.611 5.757 9.15 3.609 9.792 2 11.82 2 14c0 2.757 2.243 5 5 5z%27%3E%3C/path%3E%3C/svg%3E");
}
.file_button label::after {
  position: absolute;
  pointer-events: none;
  top: 8px;
  left: 40px;
  color: black;
  content: "Subir PDF";
}

.file_download a {
  overflow: hidden;
  padding: 4px;
  position: relative;
  outline: none;
  border-radius: 4px;
  width: 122px !important;
  height: 40px !important;
  cursor: pointer;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  /* Estilos para el icono o contenido antes del label */
  /* Estilos para el texto después del label */
}
@supports (-moz-appearance: none) {
  .file_download a {
    color: #0e4d32;
  }
}
.file_download a:hover {
  background-color: #f3f4f6;
}
.file_download a:active {
  background-color: #e5e7eb;
}
.file_download a::before {
  position: absolute;
  pointer-events: none;
  top: 8px;
  left: 12px;
  width: 25px;
  height: 20px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath d=%27M18.948 11.112C18.511 7.67 15.563 5 12.004 5c-2.756 0-5.15 1.611-6.243 4.15-2.148.642-3.757 2.67-3.757 4.85 0 2.757 2.243 5 5 5h1v-2h-1c-1.654 0-3-1.346-3-3 0-1.404 1.199-2.757 2.673-3.016l.581-.102.192-.558C8.153 8.273 9.898 7 12.004 7c2.757 0 5 2.243 5 5v1h1c1.103 0 2 .897 2 2s-.897 2-2 2h-2v2h2c2.206 0 4-1.794 4-4a4.008 4.008 0 0 0-3.056-3.888z%27 fill=%27var%28--success-color%29%27%3E%3C/path%3E%3Cpath d=%27M13.004 14v-4h-2v4h-3l4 5 4-5z%27 fill=%27var%28--success-color%29%27%3E%3C/path%3E%3C/svg%3E");
}
.file_download a::after {
  position: absolute;
  pointer-events: none;
  top: 8px;
  left: 45px;
  color: var(--success-color);
  content: "Ver PDF";
}

.box {
  position: relative;
  padding-bottom: 10px;
}

.box_advance {
  outline: 2px dashed #ccc;
  transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear;
}

.box_icon {
  width: 100%;
  display: block;
  color: #ccc;
  margin-bottom: 15px;
  margin-top: 0px;
  font-size: 50px;
}
@media (max-width: 396px) {
  .box_icon svg {
    font-size: 1em;
  }
}

.drag-over {
  color: #005ec9;
}

.box_file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.box_file input[type=file] {
  display: block;
}

.box_file + label {
  font-size: 1.25em;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 0;
}
@media (max-width: 396px) {
  .box_file + label {
    font-size: 0.7em;
  }
}

.btn-slide {
  position: relative;
  display: inline-block;
  height: 55px;
  width: 200px;
  line-height: 50px;
  padding: 0;
  border-radius: 50px;
  margin: 10px;
  transition: 0.5s;
}
.btn-slide.btn-slide-primary {
  background: #fdfdfd;
  border: 2px solid #0099cc;
}
.btn-slide.btn-slide-primary:hover {
  background-color: #0099cc;
  color: white;
}
.btn-slide.btn-slide-secondary {
  background: #fdfdfd;
  border: 2px solid #b1cc00;
}
.btn-slide.btn-slide-secondary:hover {
  background-color: #b1cc00;
  color: white;
}
.btn-slide.btn-slide-pink {
  background: #fdfdfd;
  border: 2px solid #b80099;
}
.btn-slide.btn-slide-pink:hover {
  background-color: #b80099;
  color: white;
}
.btn-slide:hover span.circle {
  left: 100%;
  margin-left: -45px;
}
.btn-slide:hover span.circle.circle-primary {
  background-color: #fdfdfd;
  color: #0099cc;
}
.btn-slide:hover span.circle.circle-secondary {
  background-color: #fdfdfd;
  color: #b1cc00;
}
.btn-slide:hover span.circle.circle-pink {
  background-color: #fdfdfd;
  color: #b80099;
}
.btn-slide:hover span.title {
  left: 40px;
  opacity: 0;
}
.btn-slide:hover span.title-hover {
  opacity: 1;
  left: 40px;
  color: #fdfdfd;
}
.btn-slide span.circle {
  display: block;
  position: absolute;
  float: left;
  margin: 5px;
  line-height: 42px;
  height: 40px;
  width: 40px;
  top: 0;
  left: 0;
  transition: 0.5s;
  border-radius: 50%;
}
.btn-slide span.circle.circle-primary {
  background-color: #0099cc;
  color: #fff;
}
.btn-slide span.circle.circle-secondary {
  background-color: #b1cc00;
  color: #fff;
}
.btn-slide span.circle.circle-pink {
  background-color: #b80099;
  color: #fff;
}
.btn-slide span.title-hover {
  opacity: 0;
}
.btn-slide span.title,
.btn-slide span.title-hover {
  position: absolute;
  left: 60px;
  bottom: 0px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  transition: 0.5s;
}
.btn-slide span.title.title-hover,
.btn-slide span.title-hover.title-hover {
  left: 40px;
  color: #fff;
}
.btn-slide span.title.title-primary,
.btn-slide span.title-hover.title-primary {
  color: #30abd5;
}
.btn-slide span.title.title-secondary,
.btn-slide span.title-hover.title-secondary {
  color: #b1cc00;
}
.btn-slide span.title.title-pink,
.btn-slide span.title-hover.title-pink {
  color: #b80099;
}

.description {
  width: 450px;
}

.table-report {
  font-size: small;
}

.table-scroll {
  max-height: 500px;
  overflow-y: auto;
  position: relative;
}

.table-scroll table {
  border-collapse: separate;
}

.table-scroll table thead {
  position: sticky;
  top: 0;
  z-index: 1;
  margin-top: 0;
  border-bottom: 1px solid black;
}

.table-scroll-large {
  max-height: 800px;
  overflow-y: auto;
  position: relative;
}

.table-scroll-large table {
  border-collapse: separate;
}

.table-scroll-large table thead {
  position: sticky;
  top: 0;
  z-index: 1;
  margin-top: 0;
  border-bottom: 1px solid black;
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  table tr th,
  table tr td {
    border: 0px solid #dddddd;
  }
  table.resp,
  .resp thead,
  .resp tbody,
  .resp tr,
  .resp th,
  .resp td,
  .resp caption {
    display: block;
  }
  table.resp {
    border: none;
  }
  .resp thead tr {
    display: none;
  }
  .resp tbody tr {
    margin: 1em 0;
    border: 1px solid #595959;
  }
  .resp td {
    border: none;
    border-bottom: 1px solid #dddddd;
    position: relative;
    padding-left: 45%;
    text-align: left;
  }
  .resp tr td:last-child {
    border-bottom: 1px double #595959;
  }
  .resp tr:last-child td:last-child {
    border: none;
  }
  .resp td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }
  table.table-open-issues.resp td:nth-of-type(1):before {
    content: "FECHA:";
  }
  table.table-open-issues.resp td:nth-of-type(2):before {
    content: "DETALLE:";
  }
  table.table-open-issues.resp td:nth-of-type(3):before {
    content: "ESTADO:";
  }
  table.table-open-issues.resp td:nth-of-type(4)::before {
    content: "CRITICIDAD: ";
  }
  table.table-notes.resp td:nth-of-type(1):before {
    content: "NOTA:";
  }
  table.table-notes.resp td:nth-of-type(2):before {
    content: "FECHA:";
  }
  table.table-generate-over-req.resp td:nth-of-type(1):before {
    content: "LEGAJO:";
  }
  table.table-generate-over-req.resp td:nth-of-type(2):before {
    content: "NOMBRE:";
  }
  table.table-generate-over-req.resp td:nth-of-type(3):before {
    content: "MOD:";
  }
  table.table-generate-over-req.resp td:nth-of-type(4):before {
    content: "HORA INICIO:";
  }
  table.table-generate-over-req.resp td:nth-of-type(5):before {
    content: "HORA FIN:";
  }
  table.table-details.resp td:nth-of-type(1):before {
    content: "LEGAJO:";
  }
  table.table-details.resp td:nth-of-type(2):before {
    content: "NOMBRE:";
  }
  table.table-details.resp td:nth-of-type(3):before {
    content: "HORA INICIO:";
  }
  table.table-details.resp td:nth-of-type(4):before {
    content: "HORA FIN:";
  }
  table.table-details.resp td:nth-of-type(5):before {
    content: "CANT. HORAS:";
  }
}
.table-present {
  background-color: #4caf50 !important;
}

.table-missing {
  background-color: #ff6f61 !important;
}

.table-suspend {
  background-color: #fabb1c !important;
}

.table-info {
  background-color: #2093ff !important;
}

.img_container {
  background-color: rgb(235, 235, 235);
  border: 1px solid rgb(189, 189, 189);
  height: 250px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 3px;
}
.img_container:hover {
  background-color: rgb(108, 155, 255);
  transition: ease-in 0.6s;
}
.img_container img {
  width: 50%;
  height: auto;
  object-fit: cover;
}
.img_container embed {
  width: 80%;
  height: auto;
}

.ant-image {
  margin-top: 20px !important;
}

.embed-container {
  margin-top: 20px;
  width: 400px;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.embed {
  width: 100%;
  height: 100%;
  border: none;
  position: relative;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 2;
  transition: background-color 0.3s ease;
}

.embed-container:hover .overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.open-button {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: auto;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 3;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.open-button:hover {
  background-color: #0077f7;
}

.embed-container:hover .open-button {
  display: block;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: transparent;
  width: 36px;
  height: 36px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bg-card-index {
  background-color: rgb(0, 0, 0);
  background-image: radial-gradient(at 88% 40%, #000000 0px, transparent 85%), radial-gradient(at 49% 30%, #000000 0px, transparent 85%), radial-gradient(at 14% 26%, #000000 0px, transparent 85%), radial-gradient(at 0% 64%, #6b24bd 0px, transparent 85%), radial-gradient(at 41% 94%, #9f24b3 0px, transparent 85%), radial-gradient(at 100% 99%, #6b24bd 0px, transparent 85%);
}

.bg-purple {
  background-color: #6b24bd;
}

.bg-purple:hover {
  background-color: #8b33f0;
}

.card-dark {
  background-color: black;
}

.article {
  padding: 15px;
}

.report summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  font-weight: bold;
  cursor: pointer;
}

.report summary::after {
  content: "";
  width: 18px;
  height: 10px;
  background: url("https://uploads.sitepoint.com/wp-content/uploads/2023/10/1697699669arrow.svg") no-repeat;
  background-size: cover;
  transition: 0.2s ease-in;
}

.report details[open] > summary::after {
  transform: rotate(180deg);
}

.report summary::-webkit-details-marker {
  display: none;
}

.report summary {
  color: #30353b;
  border-radius: 5px;
}

.report details[open] summary {
  border-radius: 5px 5px 0 0;
}

.report details {
  background-color: #e5eeef;
  background-image: linear-gradient(45deg, #dfe8e9 0%, #c8d7e3 100%);
  border-radius: 5px;
}

.report details article {
  opacity: 0;
}

.report details[open] article {
  animation: fadeIn 0.75s linear forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.sidebar {
  color: #fff;
  height: 100% !important;
  width: 280px !important;
  min-width: none !important;
  display: flex !important;
  flex-direction: column !important;
  z-index: 2 !important;
}
@media screen and (max-width: 480px) {
  .sidebar {
    display: none !important;
  }
}
.sidebar.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 10px;
}

.menu-item {
  height: 88vh;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1rem;
  position: relative;
}

/* FOOTER */
.ant-layout-footer {
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  padding: 50px 40px;
}

.ant-layout-footer a {
  color: #fff;
}

.ant-layout-footer a:hover {
  color: #7f00c9;
}

@media screen and (max-width: 700px) {
  .ant-layout-footer {
    display: none;
  }
}
@media screen and (min-width: 427px) {
  .header-mobile-title {
    display: none !important;
  }
}

.toolbar {
  background-color: #38156c;
  opacity: 0.92;
  position: fixed;
  bottom: 0;
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 200;
  color: #eef8ff;
  display: none;
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%; /* Divide el ancho igualmente entre los iconos */
  font-size: 25px;
}

@media only screen and (max-width: 480px) {
  .toolbar {
    display: flex;
  }
}
.menu-mobile,
.submenu-mobile {
  background-color: #005195;
  color: #eef8ff;
  position: absolute;
  top: 62px;
  height: 50%;
  width: 100%;
  font-size: 1em;
  overflow: auto;
  border-bottom: black 1px solid;
  align-items: center;
}

.menu-mobile {
  z-index: 1000;
}

.submenu-mobile {
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.submenu-mobile.show {
  transform: translateX(0);
}

.menu-background {
  margin-top: 62px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  inset: 0;
}

.menu-mobile ul {
  list-style: none;
  padding-left: 0;
  border-bottom: solid 0.5px #00427a;
  margin: 0;
}
.menu-mobile ul:hover {
  background-color: #00427a;
  transition: all 0.8s ease-out;
}

.menu-mobile .label-options {
  padding: 20px 16px;
  border-bottom: solid 0.5px rgb(159, 51, 159);
  background-color: #000000;
}

.category-name {
  margin-top: 0;
  font-weight: bold;
  background-color: #00427a;
}

.submenu-mobile ul {
  list-style: none;
  padding-left: 0;
  border-bottom: solid 0.5px #00427a;
  margin: 0;
}
.submenu-mobile ul:hover {
  background-color: #00427a;
  transition: all 0.3s ease-out;
}

.submenu-mobile .label-options {
  padding: 20px 16px;
}

.submenu-mobile a .label-options {
  padding: 20px 16px;
  text-decoration: none;
  color: #eef8ff;
}

.animated-logo-mobile {
  display: none;
}

.login-container {
  display: flex;
  height: 100vh;
  width: 100%;
  z-index: 1;
}
.login-container .login-image-section {
  width: 66.66%;
  height: 100vh;
}
.login-container .company-image {
  position: relative;
  width: 100%;
}
.login-container .company-image .background-image {
  width: 100%;
  height: 100vh;
}
.login-container .background-image {
  width: 100%;
  height: auto;
  display: block;
}
.login-container .top-left-image,
.login-container .bottom-right-image {
  position: absolute;
  width: 40%;
  height: auto;
}
.login-container .top-left-image {
  top: 10px;
  left: 10px;
}
.login-container .bottom-right-image {
  bottom: 10px;
  right: 10px;
}
.login-container .login-form-section {
  flex: 0 0 35%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  background: radial-gradient(circle, rgb(227, 238, 255) 0%, rgb(209, 224, 248) 60%, rgb(177, 200, 235) 100%);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.login-container .animated-text {
  font-family: "Poppins", sans-serif;
  font-size: 120px;
  color: white;
  position: absolute;
  bottom: 30px;
  left: 20px;
  animation: slide-up 1s ease-out forwards;
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-btn {
  background-color: rgb(39, 195, 81) !important;
  border-color: rgb(39, 195, 81) !important;
  color: #fff !important;
}
.custom-btn .ant-btn-inner {
  color: rgba(0, 0, 0, 0) !important;
}
.custom-btn:hover {
  background-color: rgb(25, 150, 58) !important;
  border-color: rgb(25, 150, 58) !important;
}
.custom-btn:hover .ant-btn-inner {
  color: #000000 !important;
}

/*TABLET*/
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    position: relative;
  }
  .login-container .login-image-section {
    display: none;
  }
  .login-container .animated-logo-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    transform: translateX(-50%);
    animation: slide-up 1.5s ease-out forwards;
  }
  .login-container .animated-logo-mobile img {
    width: 200px;
    height: auto;
    object-fit: contain;
  }
  .login-container .login-form-section {
    flex: 1;
    width: 100%;
  }
}
/*LAPTOP*/
@media (min-width: 1024px) {
  .company-image .background-image {
    object-fit: cover;
  }
}
/*PC Y PANTALLAS GRANDES*/
@media (min-width: 1920px) {
  .company-image .background-image {
    object-fit: cover;
  }
  .animated-logo img,
  .animated-forward img {
    width: 700px;
  }
  .login-form-section {
    flex: 0 0 40%;
    padding: 0 40px;
    font-size: 1.2em;
  }
}
.animated-square {
  animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) square-in-center both;
}

.animated-square-shadow {
  animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) square-in-center both;
}

@keyframes square-in-center {
  from {
    clip-path: inset(100% 100% 100% 100%);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
[transition-style="in:square:center"] {
  animation: 0.75s cubic-bezier(0.25, 1, 0.3, 1) square-in-center both;
}

.animated-cilcle {
  animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1);
}

@keyframes circle-in-center {
  from {
    clip-path: circle(0%);
  }
  to {
    clip-path: circle(125%);
  }
}
[transition-style="in:circle:center"] {
  animation: 1s cubic-bezier(0.25, 1, 0.3, 1) circle-in-center both;
}

.animated-wipe-down {
  animation: 1s cubic-bezier(0.25, 1, 0.3, 1);
}

@keyframes wipe-in-down {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
[transition-style="in:wipe:down"] {
  animation: 1s cubic-bezier(0.5, 1, 0.3, 1) wipe-in-down both;
}

.animated-wipe-down-fast {
  animation: 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}

@keyframes wipe-in-down-fast {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
[transition-style="in:wipe:down-fast"] {
  animation: 0.6s cubic-bezier(0.6, 1, 0.3, 1) wipe-in-down both;
}

.animated-wipe-up-fast {
  animation: 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}

@keyframes wipe-in-up-fast {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
[transition-style="in:wipe:up-fast"] {
  animation: 0.6s cubic-bezier(0.6, 1, 0.3, 1) wipe-in-up both;
}
/*!******************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/react-toastify/dist/ReactToastify.css ***!
  \******************************************************************************************************/
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
