/* -------------------------------------
   MISS DIG 811 Global Brand Template
-------------------------------------- */

/* Root Palette Variables */
:root {
  --primary: #0f56cb;
  --secondary: #7d5a41;
  --neutral: #bfc1c4;
  --md-primary: #becd2b;
  --md-secondary: #0094DB; /* or swap with #2196f3 if preferred */

  /* Background Layers */
  --light-bg: #f8f9fa;
  --light-bg-alt: #fdfafa;
  --canvas-bg: #ffffff;

  --alert: #e52e2f;
  --success: #509236;
  --warning: #ef7b24;
  --info: #0e0e0e;
}

/* Base Reset + Typography */
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  background-color: var(--light-bg);
  color: var(--info);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1000px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
}

h1, h2, h3, h4 {
  font-family: 'Open Sans', sans-serif;
  color: var(--primary);
  margin-top: 1.5rem;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
  color: var(--info);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* -------------------------------------
   Buttons
-------------------------------------- */
.btn {
  padding: 10px 16px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}
.btn-primary:hover {
  background-color: #083c92;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
}
.btn-secondary:hover {
  background-color: #5e402f;
  transform: translateY(-2px);
}

.btn.md-primary {
  background-color: var(--md-primary);
  color: black;
}

.btn.md-primary:hover {
  background-color: #a6b624;
  transform: translateY(-2px);
}

.btn.md-secondary {
  background-color: var(--md-secondary);
  color: white;
}

.btn.md-secondary:hover {
  background-color: #007bb3;
  transform: translateY(-2px);
}

.btn-alert {
  background-color: var(--alert);
  color: white;
}
.btn-alert:hover {
  background-color: #b12526;
  transform: translateY(-2px);
}
.btn-outline-primary {
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
}

.btn-outline-secondary {
  border: 2px solid var(--secondary); /* Define the border color */
  background: transparent;
  color: var(--secondary); /* Color the text */
}
.btn-outline-secondary:hover {
  background: var(--secondary); /* Background color on hover */
  color: white; /* Text color on hover */
}

.btn.md-outline-primary {
  border: 2px solid var(--md-primary);
  background: transparent;
  color: var(--md-primary);
}
.btn.md-outline-primary:hover {
  background: var(--md-primary);
  color: black;
}

.btn.md-outline-secondary {
  border: 2px solid var(--md-secondary);
  background: transparent;
  color: var(--md-secondary);
}
.btn.md-outline-secondary:hover {
  background: var(--md-secondary);
  color: white;
}

.btn-info {
  background-color: var(--info); /* dark gray */
  color: white;
}
.btn-info:hover {
  background-color: #2c2c2c;
  transform: translateY(-2px);
}

.btn-neutral {
  background-color: var(--neutral); /* light fog gray */
  color: #333;
}
.btn-neutral:hover {
  background-color: #a6aaae;
  transform: translateY(-2px);
}

.btn-outline-neutral {
  border: 2px solid var(--neutral);
  background: transparent;
  color: var(--info);
}
.btn-outline-neutral:hover {
  background: var(--neutral);
  color: var(--info);
}
.btn-tiny {
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  color: #212529;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 3px;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.btn-tiny:hover {
  background-color: #d8dee2;
  box-shadow: none;
  transform: none;
}

.btn-tiny img {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.btn-tiny:hover img {
  filter: brightness(0.7);
}

.btn-outline-secondary.btn-tiny {
  background-color: transparent;
  color: #212529;
}

.btn-icon {
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: none;
  background-color: #e9ecef;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.btn-icon:hover {
  background-color: #d8dee2;
}

.btn-minimal {
  background: transparent;
  border: none;
  color: var(--primary);
  padding: 6px 10px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  border-radius: 4px;
}

.btn-minimal:hover,
.btn-minimal:focus {
  background-color: rgba(15, 86, 203, 0.1); /* light primary tint */
  outline: none;
}

button:disabled,
.btn:disabled,
.btn-tiny:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  transform: none;
}

.btn-icon-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 50%;
  background: #f8f9fa;
  border: 1px solid #ced4da;
  cursor: pointer;
}

/* Tooltip Styling */
.btn-icon-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%; /* Above the button */
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 4px 8px;
  font-size: 11px;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
}

.btn-icon-tooltip:hover::after {
  opacity: 1;
}

.btn-icon-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-icon-label img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-top: -1px;
}

/* -------------------------------------
   Button Size Variants
-------------------------------------- */
.btn-xs { width: auto; height: 28px; padding: 2px 8px; border-radius: 3px; font-size: 12px; }
.btn-sm { width: auto; height: 32px; padding: 4px 10px; border-radius: 4px; font-size: 13px; }
.btn-md { width: auto; height: 38px; padding: 6px 14px; border-radius: 6px; font-size: 15px; }
.btn-lg { width: auto; height: 44px; padding: 10px 18px; border-radius: 8px; font-size: 16px; }
.btn-xl { width: auto; height: 52px; padding: 14px 24px; border-radius: 10px; font-size: 18px; }

/* Shared for all icon+label buttons */
.btn-icon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: inline-block;
  pointer-events: none;
  margin-top: -1px;
}


/* Optional: Adjust icon size by button size */
.btn-xs .btn-icon-label img { width: 14px; height: 14px; }
.btn-sm .btn-icon-label img { width: 16px; height: 16px; }
.btn-md .btn-icon-label img { width: 18px; height: 18px; }
.btn-lg .btn-icon-label img { width: 20px; height: 20px; }
.btn-xl .btn-icon-label img { width: 22px; height: 22px; }




/* -------------------------------------
   Cards, Badges, Toasts
-------------------------------------- */
.card {
  background: white;
  border: 1px solid var(--neutral);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}
.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}
.card-highlight {
  background-color: #fdfafa;
  border-left: 4px solid var(--md-primary);
}
.badge {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.badge.status-active {
  background-color: var(--success);
  color: white;
}

.badge.status-inactive {
  background-color: var(--neutral);
  color: #333;
}
#toastContainer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background-color: var(--primary);
  color: white;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: opacity 0.5s ease;
  min-width: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toast.success { background-color: var(--success); }
.toast.alert   { background-color: var(--alert); }
.toast.info    { background-color: var(--info); }
.toast.neutral { background-color: var(--neutral); color: #333; }

.toast.fade-out {
  opacity: 0;
}
.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  margin-left: 10px;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}


.info-box {
    background: #f8f9fa; /* Light grey for a subtle note */
    border-left: 6px solid #6c757d; /* Dark grey border */
    padding: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #333;
    border-radius: 6px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

/* Generic Modal */
.modal-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Node Box (can be renamed) */
.node-box {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Color Alerts */
.color-green-bg   { background: #0080001a; color: green; }
.color-gold-bg    { background: #FFD7001a; color: goldenrod; }
.color-orange-bg  { background: #FFA5001a; color: orange; }
.color-red-bg     { background: #FF00001a; color: red; }

/* Styled Table (global) */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.styled-table th, .styled-table td {
  text-align: left;
  padding: 12px;
  border: 1px solid #dee2e6;
}

.styled-table th {
  background: var(--primary);
  color: white;
}
#backToTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Section Breaker - Visual Divider */
.section-breaker {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #6c757d;
    margin: 30px 0;
    padding: 10px 0;
    border-top: 2px solid #dcdcdc;
    border-bottom: 2px solid #dcdcdc;
    background: #f8f9fa;
}
.section-title {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.section-title img {
  vertical-align: middle;
  margin-top: -2px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1rem;
  }
}

/* -------------------------------------
   MISS DIG 811 Floating Action Button
   Aligned to Dashboard Aesthetic
-------------------------------------- */

.fab-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1050;
}

@media (max-width: 768px) {
  .fab-container {
    bottom: 60px;
    right: 15px;
  }
}

.fab-button {
  width: 52px;
  height: 52px;
  background-color: var(--primary); /* #0f56cb */
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.fab-button:hover {
  background-color: #083c92;
}

.fab-options {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 60px;
  right: 0;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fab-options.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* === Updated Card-Like Option Button === */
.fab-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  color: var(--info); /* #0e0e0e */
  border: 1px solid #dee2e6;
  padding: 10px 16px;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  width: max-content;
  min-width: 190px;
  max-width: 260px;
  white-space: nowrap;
  text-align: left;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.fab-option:hover {
  background-color: var(--light-bg); /* #f8f9fa */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* === Icon Style: Monochrome Support === */
.fab-option img {
  height: 18px;
  margin-right: 5px;
  flex-shrink: 0;
  filter: grayscale(1) brightness(0.25); /* subtle gray on light */
  transition: filter 0.2s ease;
}

.fab-option:hover img {
  filter: none; /* colored on hover */
}

/*
 * Final MISS DIG 811 Intro.js Overrides
 * Clean font rendering, brand-aligned colors, and reduced blur.
 */

/* === NEXT: Primary Button === */
.introjs-button.introjs-nextbutton {
  background-color: var(--primary);
  color: white;
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  transition: background-color 0.2s ease;
  border: none;
  box-shadow: none;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

.introjs-button.introjs-nextbutton:hover,
.introjs-button.introjs-nextbutton:focus,
.introjs-button.introjs-nextbutton:active {
  background-color: #083c92;
  color: white;
  box-shadow: none;
  outline: none;
}

/* === BACK: Neutral Button === */
.introjs-button.introjs-prevbutton {
  background-color: var(--neutral);
  color: var(--info);
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  transition: background-color 0.2s ease;
  border: none;
  box-shadow: none;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

.introjs-button.introjs-prevbutton:hover,
.introjs-button.introjs-prevbutton:focus,
.introjs-button.introjs-prevbutton:active {
  background-color: #a6aaae;
  color: var(--info);
  box-shadow: none;
  outline: none;
}

/* === Tooltip Box & Text Refinement === */
.introjs-tooltip,
.introjs-tooltiptext,
.introjs-button {
  font-family: 'Open Sans', sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Tooltip container */
.introjs-tooltip {
  backface-visibility: hidden;
  border: 2px solid var(--md-primary);
  background: var(--light-bg);
  color: var(--info);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Tooltip main text */
.introjs-tooltiptext {
  font-size: 15px;
  color: var(--info);
}

/* Tooltip title */
.introjs-tooltip-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary);
}

/* Remove transitions that cause blur */
.introjs-tooltip *,
.introjs-helperLayer,
.introjs-floating-element {
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

/* === Progress Track Container === */
.introjs-progress {
  background-color: #e0e0e0; /* Light neutral background */
  height: 6px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 16px;
}

/* === Progress Fill Bar (Animated Inline Width) === */
.introjs-progressbar {
  background-color: var(--secondary-color) !important; /* Orange */
  height: 100%;
  border-radius: 10px;
  transition: width 0.3s ease;
}

/* -------------------------------------
   Utility Classes
-------------------------------------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-content-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.w-100 { width: 100%; }
.shadow { box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.container-sm { max-width: 800px; }
.container-md { max-width: 1000px; }
.container-lg { max-width: 1200px; }


/* Color — Add others as needed */
.color-primary     { background-color: var(--primary); }
.color-secondary   { background-color: var(--secondary); }
.color-success     { background-color: var(--success); }
.color-alert       { background-color: var(--alert); }
.color-warning     { background-color: var(--warning); }
.color-neutral     { background-color: var(--neutral); }
.color-info        { background-color: var(--info); }
.color-light-bg    { background-color: var(--light-bg); }

/* Text — Add others as needed */
/* === Override Bootstrap .text-* utilities with MISS DIG 811 brand === */
.text-primary   { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-success   { color: var(--success) !important; }
.text-warning   { color: var(--warning) !important; }
.text-info      { color: var(--info) !important; }
.text-alert     { color: var(--alert) !important; }
.text-neutral   { color: var(--neutral) !important; }
.text-light-bg  { color: var(--light-bg) !important; }

.text-muted {
  color: #6c757d !important; /* Optional: Replace this with one of your neutrals if you want */
}
.text-info2 {
  color: var(--md-primary) !important;
}

/* Border — Add others as needed */
.border-primary     { border-color: var(--primary) !important; }
.border-secondary   { border-color: var(--secondary) !important; }
.border-success     { border-color: var(--success) !important; }
.border-alert       { border-color: var(--alert) !important; }
.border-warning     { border-color: var(--warning) !important; }
.border-neutral     { border-color: var(--neutral) !important; }
.border-info        { border-color: var(--info) !important; }
.border-light-bg    { border-color: var(--light-bg) !important; }

/* Hover Background — Add others as needed */
.hover-bg-primary:hover     { background-color: var(--primary); }
.hover-bg-secondary:hover   { background-color: var(--secondary); }
.hover-bg-success:hover     { background-color: var(--success); }
.hover-bg-alert:hover       { background-color: var(--alert); }
.hover-bg-warning:hover     { background-color: var(--warning); }
.hover-bg-neutral:hover     { background-color: var(--neutral); }
.hover-bg-info:hover        { background-color: var(--info); }
.hover-bg-light-bg:hover    { background-color: var(--light-bg); }

/* Hover Text — Add others as needed */
.hover-text-primary:hover     { color: var(--primary); }
.hover-text-secondary:hover   { color: var(--secondary); }
.hover-text-success:hover     { color: var(--success); }
.hover-text-alert:hover       { color: var(--alert); }
.hover-text-warning:hover     { color: var(--warning); }
.hover-text-neutral:hover     { color: var(--neutral); }
.hover-text-info:hover        { color: var(--info); }
.hover-text-light-bg:hover    { color: var(--light-bg); }

/* Hover Border — Add others as needed */
.hover-border-primary:hover     { border-color: var(--primary) !important; }
.hover-border-secondary:hover   { border-color: var(--secondary) !important; }
.hover-border-success:hover     { border-color: var(--success) !important; }
.hover-border-alert:hover       { border-color: var(--alert) !important; }
.hover-border-warning:hover     { border-color: var(--warning) !important; }
.hover-border-neutral:hover     { border-color: var(--neutral) !important; }
.hover-border-info:hover        { border-color: var(--info) !important; }
.hover-border-light-bg:hover    { border-color: var(--light-bg) !important; }

/* -------------------------------------
   Color Swatch Classes by Brand Palette
-------------------------------------- */

/* Primary Palette */
.color-black         { background-color: #0e0e0e; }
.color-walnut        { background-color: #7d5a41; }
.color-cool-gray     { background-color: #9d9fa2; }
.color-lime          { background-color: #becd2b; }
.color-green         { background-color: #509236; }
.color-fog           { background-color: #bfc1c4; }
.color-brown-sugar   { background-color: #a97e5e; }
.color-white-sand    { background-color: #fdfafa; }
.color-pink-pop      { background-color: #f353be; }
.color-sunshine      { background-color: #fdeb1c; }
.color-orange-blaze  { background-color: #ef7b24; }
.color-bright-blue   { background-color: #0f56cb; }
.color-fire-red      { background-color: #e52e2f; }

/* Alert Palette */
.color-alert-yellow  { background-color: #f9ed32; }
.color-alert-green   { background-color: #509236; }
.color-steel         { background-color: #969699; }
.color-flame-orange  { background-color: #f05831; }
.color-bright-yellow { background-color: #ffc900; }
.color-amber         { background-color: #ffab1d; }

/* OCA Palette */
.color-charcoal      { background-color: #221c1c; }

/* DPP Palette */
.color-blue-sky      { background-color: #248ccf; }

/* Flag Palette */
.color-white-flag     { background-color: #ffffff; }
.color-pink-flag      { background-color: #ff69b4; }
.color-red-flag       { background-color: #ff0000; }
.color-orange-flag    { background-color: #ff9800; }
.color-yellow-flag    { background-color: #ffeb3b; }
.color-blue-flag      { background-color: #2196f3; }
.color-purple-flag    { background-color: #9c27b0; }
.color-green-flag     { background-color: #4caf50; }

/* Swatch Display Utility */
.color-box {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: inline-block;
  margin: 4px;
  border: 1px solid #ccc;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* -------------------------------------
   MISS DIG 811 Responsive Enhancements
-------------------------------------- */

/* Mobile-first column stacking for flex containers */
.flex-column-mobile {
  flex-direction: row;
}
@media (max-width: 768px) {
  .flex-column-mobile {
    flex-direction: column !important;
  }
}

/* Responsive padding/margin helpers */
@media (max-width: 768px) {
  .px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
  .px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
  .px-3 { padding-left: 1rem; padding-right: 1rem; }

  .py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
  .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .py-3 { padding-top: 1rem; padding-bottom: 1rem; }

  .text-center-mobile { text-align: center !important; }
}

/* Responsive scroll container (tables, swatches, etc.) */
.responsive-scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Visibility utilities */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .show-mobile {
    display: none !important;
  }
}