/* ==============================================================
   COMMUNAL.DASHBOARDS.CSS - Shared styles for all dashboards
   ============================================================== */

/* ==============================================================
   SIDEBAR LAYOUT (shared across all dashboards)
   ============================================================== */

.bslib-sidebar-layout {
  padding-top: 16px;
  border-radius: 0;
  border: none;
}

.bslib-sidebar-layout > .main {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  width: 100% !important;
  overflow: visible !important;
  padding-top: 0;
}

.layout-sidebar > .main > .container-fluid {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  width: 100% !important;
  padding: 0 !important;
  min-width: 0 !important;
}

.bslib-sidebar-layout > .main > .container-fluid > .tab-content > .tab-pane {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  width: 100% !important;
  min-width: 0 !important;
}

/* Main content scroll area */
.main-content {
  flex: 1 1 auto !important;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  min-width: 0 !important;
  scroll-behavior: smooth;
}

/* Gap spacing container */
.bslib-gap-spacing.html-fill-container {
  display: flex;
  gap: 1rem;
  overflow: hidden;
}

.bslib-gap-spacing.html-fill-container > .d-flex > div:not(:first-child) {
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
}

/* Right-hand sidebar */
.sidebar,
.layout-sidebar .sidebar {
  position: relative;
  height: auto;
  background: #f9f9f9;
  padding: 1rem;
  border-bottom: none !important;
  border-left: none !important;
  overflow-y: auto;
}

.bslib-sidebar-layout.sidebar-right {
  overflow: visible !important;
  padding-right: 0.5rem;
}

.bslib-sidebar-layout.sidebar-right > .sidebar {
  position: sticky;
  top: 20px;
  height: calc(100vh - 20px - 2rem);
  border-left: none !important;
  border-bottom: 1px solid #e0e0e0;
  z-index: 101;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  background-color: #f9f9f9;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.05);
  margin-right: 0.5rem;
}

/* Sticky left nav pills */
.sticky-nav {
  position: sticky;
  top: 20px;
  flex: 0 0 auto;
  align-self: flex-start;
  height: calc(100vh - 20px - 2rem) !important;
  overflow-y: auto;
  background: #f9f9f9;
  z-index: 50;
  border-top-left-radius: .5rem;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 2px 0 6px rgba(0,0,0,0.05);
  width: 20vw;
  min-width: 200px;
  max-width: 300px;
}

/* ==============================================================
   NAVIGATION STYLES (shared nav patterns)
   ============================================================== */

/* Vertical nav-pills (left sidebar) */
.nav-pills .nav-link {
  background-color: transparent;
  color: black;
  padding: 0.4rem 1rem;  
  font-weight: 600; 
  text-transform: none;
  letter-spacing: 0.02em;
  position: relative; 
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link:focus {
  background-color: #9b59b6;
  color: white;
  box-shadow: 0 2px 6px rgba(92,26,130,0.1);
}

.nav-pills .nav-link.active {
  background-color: #5C1A82;
  color: white !important;
  font-weight: 700;
  box-shadow: unset;
}

.nav-pills .nav-link::before { 
  display: none; 
}

/* Horizontal top tabs inside main content */
.main-content .nav-pills.shiny-tab-input .nav-link {
  background: transparent;
  color: black;
  padding: 0.5rem 1rem;
  font-weight: 600;
  border: 0 !important;
  border-radius: 0;
  position: relative;
  overflow: visible;
  cursor: pointer; 
}

.main-content .nav-pills.shiny-tab-input .nav-link::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: #5C1A82;
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transform-origin: left center; 
  z-index: 2;
}

.main-content .nav-pills.shiny-tab-input .nav-item:hover > .nav-link::after,
.main-content .nav-pills.shiny-tab-input .nav-item:focus-within > .nav-link::after,
.main-content .nav-pills.shiny-tab-input .nav-link.active::after {
  transform: scaleX(1);
}

.main-content .nav-pills.shiny-tab-input .nav-link.active {
  color: #5C1A82 !important;
}

/* Nav-tabs pill-style with rounded corners */
ul.nav-tabs {
  gap: 0.25rem;
  margin-bottom: 0.35rem;
  border-bottom: none;
}

ul.nav-tabs > li.nav-item > .nav-link {
  background-color: #fff;
  color: #000 !important;
  padding: 0.4rem 1rem;
  border: none;
  border-radius: 0.5rem !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

ul.nav-tabs > li.nav-item > .nav-link.active {
  background-color: #5c1a82;
  color: #fff !important;
  border: 1px solid #5c1a82;
  border-radius: 0.5rem !important;
}

ul.nav-tabs > li.nav-item:first-child > .nav-link.active {
  border-radius: 0.5rem 0.5rem 0 0.5rem !important; /* bottom-right not rounded */
}

ul.nav-tabs > li.nav-item:not(:first-child) > .nav-link.active {
  border-radius: 0.5rem 0.5rem 0.5rem 0 !important; /* bottom-left not rounded */
}

ul.nav-tabs + .tab-content {
  background-color: #fff;
  border: none;
  border-radius: 0.5rem !important;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}


/* ==============================================================
   FILTER AREA - Radio toggle buttons & action icons
   ============================================================== */

/* Reset radio group buttons to flat style */
.filter-element .radio-group-buttons .btn-check + .btn-outline-primary {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: #333 !important;
  font-weight: 400;
  padding: 0.4rem 0.75rem;
  box-shadow: none !important;
  position: relative;
}

/* Underline + bold when selected */
.filter-element .radio-group-buttons .btn-check:checked + .btn-outline-primary {
  color: #5C1A82 !important;
  font-weight: 700;
  background-color: transparent !important;
}

.filter-element .radio-group-buttons .btn-check:checked + .btn-outline-primary::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: #5C1A82;
  border-radius: 1px;
}

/* Hover state */
.filter-element .radio-group-buttons .btn-check + .btn-outline-primary:hover {
  color: #5C1A82 !important;
  background-color: transparent !important;
}

/* Remove btn-group connected styling */
.filter-element .radio-group-buttons .btn-group-container-sw {
  gap: 0.25rem;
}

/* Unstyled action button — bare icon, no button chrome */
.btn-unstyled {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  line-height: 1;
}

/* Filter action icons (select all / restore) - purple */
.filter-title .btn-unstyled,
.filter-element .btn-unstyled {
  color: #5C1A82 !important;
}

.filter-title .btn-unstyled:hover,
.filter-element .btn-unstyled:hover {
  color: #9b59b6 !important;
}

/* Hide toggle spacers in horizontal tree layouts */
.bs5-tree-children.horizontal .bs5-tree-toggle.no-children {
  display: none;
}

.bs5-tree-toggle {
  color: #333 !important;
}

.bs5-tree-toggle:hover {
  color: #000 !important;
}

/* ==============================================================
   FILTERS (shared checkbox filter styling)
   ============================================================== */

.bs5-tree { font-family: inherit; user-select: none; }
.bs5-tree.card { background: transparent; border: none; box-shadow: none; }
.bs5-tree .card-body { list-style: none; }
.bs5-tree ul { list-style: none; margin-bottom: 0; }
.bs5-tree ul.bs5-tree-node { padding-left: 0; }
.bs5-tree ul.bs5-tree-children { padding-left: 1.5rem; }


.bs5-tree-item {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
  min-height: 1.75rem;
}
.bs5-tree-item:hover { background-color: rgba(var(--bs-primary-rgb), 0.1); }

.bs5-tree-toggle {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.25rem;
  color: var(--bs-secondary);
  cursor: pointer;
  border-radius: 0.25rem;
  flex-shrink: 0;
}
.bs5-tree-toggle:hover { background-color: rgba(var(--bs-secondary-rgb), 0.2); }
.bs5-tree-toggle.no-children { visibility: hidden; pointer-events: none; }
.bs5-tree-toggle i { pointer-events: none; }

.bs5-tree-checkbox { margin-right: 0.5rem; }
.bs5-tree-label {
  flex-grow: 1;
  line-height: 1.5;
  vertical-align: middle;
  cursor: pointer;
}
.bs5-tree-children.collapsed { display: none; }
.bs5-tree-hidden { visibility: hidden; pointer-events: none; }

.bs5-tree-children.horizontal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding-left: 1.5rem;
  justify-content: space-around;
}
.bs5-tree-children.horizontal.collapsed {
  display: none;
}
.bs5-tree-children.horizontal > li {
  flex: 0 0 auto;
}
.bs5-tree-checkbox.form-check-input {
  margin-top: 0;
  margin-bottom: 0.25rem;
  vertical-align: middle;
}

.bs5-tree-checkbox.form-check-input:checked {
  background-color: #5C1A82;
  border-color: #5C1A82;
}

.bs5-tree-checkbox.form-check-input:indeterminate {
  background-color: #5C1A82;
  border-color: #5C1A82;
}

.bs5-tree-checkbox.form-check-input:focus {
  border-color: #9b59b6;
  box-shadow: 0 0 0 0.2rem rgba(92, 26, 130, 0.25);
}


/* Horizontal layout for top-level tree nodes (hidden root) */
.bs5-tree-node.horizontal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding-left: 0;
  justify-content: space-around;
}


.bs5-tree-node.horizontal .bs5-tree-toggle.no-children {
  display: none;
}

/* ==============================================================
   MAIN CONTENT ACCORDIONS - Match tab style
   ============================================================== */

/* Style accordions in main content to look like tabs */
.main-content .accordion .accordion-item {
    background-color: transparent !important;
    border: none !important;
    margin-bottom: 0.25rem !important; /* Smaller spacing between accordions */
}

.main-content .accordion .accordion-button,
.main-content .accordion .accordion-button.collapsed {
    background-color: #eceded !important;
    border: none !important;
    padding: 0.4rem 1rem;
    margin: 0;
    font-weight: 600;
    color: #000 !important;
    box-shadow: none !important; 
}

/* When collapsed, round all corners except bottom-right */
.main-content .accordion .accordion-button.collapsed {
    border-radius: 0.3rem 0.3rem 0 0.3rem !important;
}

/* When open, round only top corners */
.main-content .accordion .accordion-button:not(.collapsed) {
    background-color: #5C1A82 !important;
    color: #fff !important;
    border-radius: 0.3rem 0.3rem 0 0 !important; /* Both bottom corners pointy */
    box-shadow: none !important;
}

.main-content .accordion .accordion-button:hover {
    background-color: #9b59b6 !important;
    color: #fff !important;
}

.main-content .accordion .accordion-button:focus {
    box-shadow: none !important;
    border: none !important;
}

.main-content .accordion .accordion-collapse {
    border: none !important;
    background-color: transparent !important;
}

.main-content .accordion .accordion-body {
    padding: 1rem;
    background-color: #fff;
    border-radius: 0 0 0 0.75rem; /* Bottom-left rounded, bottom-right pointy */
}

/* Ensure accordion chevron icon stays visible */
.main-content .accordion .accordion-button::after {
    filter: brightness(1);
}

.main-content .accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}


/* ==============================================================
   LEFT SIDEBAR ACCORDION
   ============================================================== */

.sidebar-accordion {
    position: sticky;
    top: 20px;
    flex: 0 0 auto;
    align-self: flex-start;
    height: calc(100vh - 20px - 2rem) !important;
    overflow-y: auto;
    background: #f9f9f9;
    z-index: 50;
    border-top-left-radius: .5rem;
    border-bottom-left-radius: 1rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 2px 0 6px rgba(0,0,0,0.05);
    width: 20vw;
    min-width: 200px;
    max-width: 300px;
}

.sidebar-accordion .accordion {
    border: none !important;
    background: transparent !important;
    --bs-accordion-border-color: transparent;
    --bs-accordion-bg: transparent;
}

.sidebar-accordion .accordion-item {
    border: none !important;
    background: transparent !important;
}

.sidebar-accordion .accordion-button {
    background-color: transparent !important;
    color: black;
    padding: 1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.sidebar-accordion .accordion-button:not(.collapsed) {
    background-color: #5C1A82 !important;
    color: white !important;
    font-weight: 700;
}

.sidebar-accordion .accordion-button:hover {
    background-color: #9b59b6 !important;
    color: white !important;
    box-shadow: 0 2px 6px rgba(92,26,130,0.1) !important;
}

.sidebar-accordion .accordion-button:focus {
    box-shadow: none !important;
}

.sidebar-accordion .accordion-button::after {
    filter: brightness(1);
}

.sidebar-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.sidebar-accordion .accordion-body {
    padding: 0.25rem 0;
    background: transparent;
}

/* Hide empty accordion body and chevron for panels with no sub-items */
.sidebar-accordion .accordion-body:empty {
    display: none;
    padding: 0;
}

.sidebar-accordion .accordion-item:has(.accordion-body:empty) .accordion-button::after {
    display: none !important;
}

/* Section links inside accordion panels */
.sidebar-section-link {
    display: block;
    color: #333;
    text-decoration: none !important;
    font-size: 0.85em;
    font-weight: 400;
    padding: 0.3rem 1rem 0.3rem 1.5rem;
    border-left: 3px solid transparent;
    transition: all 0.15s ease;
}

.sidebar-section-link:hover {
    color: #5C1A82;
    background-color: rgba(92, 26, 130, 0.05);
    /*border-left-color: #9b59b6;*/
    text-decoration: none !important;
}

.sidebar-section-link.active-section {
    color: #5C1A82;
    font-weight: 700;
    /* border-left-color: #5C1A82; */
    background-color: rgba(92, 26, 130, 0.08);
}


/* ==============================================================
   BUTTONS & CONTROLS (shared button patterns)
   ============================================================== */

/* View toggle buttons */
button.btn-view {
  width: 42px !important;
  height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 8px !important;
  border: none !important;
  background-color: #f2f2f2 !important;
  color: #333 !important; 
  padding: 0 !important;
}

button.btn-view:hover {
  background-color: #e0e0e0 !important;
  transform: translateY(-1px);
}

button.btn-view i {
  font-size: 18px !important;
}

button.btn-view.active,
button.btn-view:active {
  background-color: #1a171b !important;
  color: #fff !important;
  transform: translateY(-1px);
}

button.btn-view.active:hover {
  background-color: #9c9e9f !important;
}

.btn-plot i, .btn-table i {
  font-size: 1rem;
  width: 1em;
  text-align: center;
}

/* ==============================================================
   CONTENT COMPONENTS (shared layout patterns)
   ============================================================== */

/* Cards */
.main-content > .card {
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #fff;
}

/* Intro card (white card with shadow, no header) */
.intro-card {
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1.5rem 2rem;
  margin: 2rem 3rem;
  text-align: center;
}

/* Pill buttons enlarge on hover */
.btn.rounded-pill {
  transition: transform 0.15s ease;
}

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

/* ==============================================================
   TOOLTIPS (shared tooltip pattern — position: fixed + JS positioning)
   ============================================================== */
.tooltip-wrapper {
  position: relative;
}

.custom-tooltip {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 10000;
  background-color: #333;
  color: #fff;
  text-align: left;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.8em;
  width: max-content;
  max-width: 200px;
  transition: opacity 0.1s;
}

.tooltip-wrapper:hover .custom-tooltip {
  visibility: visible;
  opacity: 1;
}

.tooltip-wrapper > .bs5-tree-item {
  width: fit-content;
}

/* ==============================================================
   EXTRA DONT KNOW WHERE TO PUT
   ============================================================== */

.top-row-displaydata {
    align-items: flex-start !important;
}


.tab-pane {
    padding: 0px !important;
}


/* ==============================================================
   CAROUSEL
   ============================================================== */

.carousel-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 0.5rem;
  width: 100%;
}

.carousel-button {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: 0px;
  background: #ecf0f1;
  color: #2c3e50;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.2s ease;
  min-width: 50px;
  flex: 0 0 auto;
}

.carousel-button:hover {
  background: #e0e6e8;
  border-color: #95a5a6;
}

.carousel-current-picker {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
}

.carousel-current-picker .form-group {
  margin-bottom: 0 !important;
  width: 100%;
  display: flex;
  align-items: stretch;
}

.carousel-current-picker .bootstrap-select {
  width: 100% !important;
  display: flex;
  align-items: stretch;
}

.carousel-current-picker .bootstrap-select .btn {
  background: #ecf0f1;
  color: #2c3e50;
  font-weight: 500;
  border: none !important;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: none !important;
}

.carousel-current-picker .bootstrap-select .btn:hover {
  background: #e0e6e8;
}

.carousel-current-picker .bootstrap-select .btn:focus {
  outline: none;
  box-shadow: none;
}

.carousel-current-picker .dropdown-menu {
  width: 100% !important;
  max-width: 100% !important;
  border: none;
  box-shadow: none;
  margin-top: 0;
}

.carousel-current-picker .dropdown-menu .dropdown-item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.5rem 1rem;
}

.carousel-current-picker .dropdown-menu .dropdown-item:hover {
  background-color: #ecf0f1;
}

.carousel-current-picker .dropdown-menu .dropdown-item.active,
.carousel-current-picker .dropdown-menu .dropdown-item.selected {
  background-color: #5C1A82;
  color: white;
}

/* ==============================================================
   EXPANDABLE INFO CARD
   ============================================================== */

.info-card-expandable {
  margin-top: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  background-color: #fafbfc;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.info-card-expandable:hover {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.info-card-expandable[open] {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-card-summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: #555;
  list-style: none;
  user-select: none;
  transition: background-color 0.15s ease;
}

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

.info-card-summary::marker {
  display: none;
  content: "";
}

.info-card-summary:hover {
  background-color: #f0f1f3;
  color: #333;
}

.info-card-summary .fa-info-circle {
  color: #5C1A82;
  font-size: 1rem;
}

.info-card-chevron {
  margin-left: auto;
  font-size: 0.75rem;
  color: #999;
  transition: transform 0.2s ease;
}

.info-card-expandable[open] .info-card-chevron {
  transform: rotate(180deg);
}

.info-card-body {
  padding: 0.75rem 1rem 1rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #444;
  border-top: 1px solid #e8e8e8;
}

.info-card-body p {
  margin: 0 0 0.5rem;
}

.info-card-body p:last-child {
  margin-bottom: 0;
}

.form-control {
    background-color: transparent;
}

.subtheme-header {
  background-color: transparent !important;
}

/* ==============================================================
   PLOT/TABLE LOADING SPINNER
   ============================================================== */

.displaydata3-wrapper {
  overflow: hidden;
  min-width: 0;
}

.flex-grow-1:has(> .shiny-html-output > .displaydata3-wrapper) {
  min-width: 0;
}

.plot-table-layout {
  width: 100%;
  overflow: hidden;
}

.plot-table-content {
  position: relative;
  min-height: 200px;
  max-height: 3000px;
  min-width: 0;
  flex: 1 1 auto;
  padding-right: 1rem;
  overflow-x: auto;
  overflow-y: auto;
}

.plot-table-nav {
  flex-shrink: 0;
  width: 42px;
}

.plot-table-spinner {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
}

.plot-table-content.loading .plot-table-spinner {
  display: flex;
}

.plot-table-spinner .spinner-border {
  color: #5C1A82;
  width: 3rem;
  height: 3rem;
}

/* Page / theme loading spinner */
.lkca-loading-container {
  position: relative;
}

.lkca-loading-spinner {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
}

.lkca-loading-container.loading .lkca-loading-spinner {
  display: flex;
}

.lkca-loading-spinner .spinner-border {
  color: #5C1A82;
  width: 3rem;
  height: 3rem;
}

/* ==============================================================
   MAXIMIZE MODAL
   ============================================================== */

.modal-dialog:has(.modal-maximize) .modal-content {
  border-radius: 0.75rem;
}

.modal-dialog:has(.modal-maximize) .modal-body {
  overflow-y: auto;
  max-height: 85vh;
}

.modal-maximize .modal-plot-table-content {
  width: 100%;
  min-height: 400px;
  position: relative;
}

.modal-maximize .plotly.html-widget {
  width: 100% !important;
}

.modal-maximize .rt-table {
  width: 100%;
}

.modal-dialog.modal-xl {
  max-width: 90vw;
}