@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html {
    /* Prevent excessive zooming on high DPI displays */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    
    /* Use viewport units for better scaling */
    font-size: clamp(14px, 1vw, 16px);
}

body {
    /* Ensure consistent scaling behavior */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    /* Prevent Windows scaling from affecting layout */
    zoom: 1;
    -ms-zoom: 1;
}

/* Dashboard-specific scaling fixes */
.dashboard-container {
    /* Use viewport units for better scaling */
    max-width: min(98vw, 98rem);
    width: auto;
    /* Center the dashboard */
    margin-left: auto;
    margin-right: auto;
    /* Better space utilization */
    padding: 0.5rem;
    /* Disable transform-based scaling to avoid extra bottom whitespace */
    transform: none !important;
    transform-origin: top center;
    --samples-label-size: clamp(1.01rem, 1.52vw, 1.22rem);
}

.dashboard-card {
    /* Responsive card sizing */
    max-width: min(420px, 25vw);
    min-height: clamp(180px, 20vh, 200px);
    /* Better scaling behavior */
    flex: 1 1 auto;
}

/* Ensure all dashboard cards have consistent dimensions */
.dashboard-card {
    height: 180px !important;
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

/* Improved layout spacing for different scaling levels */
.dashboard-layout-row {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 1vw, 1rem);
    width: 100%;
    justify-content: space-between;
}

.dashboard-layout-column {
    flex: 1 1 auto;
    min-width: 0;
    /* Better responsive behavior */
    flex-basis: auto;
}

    /* SamplesOverview specific card styling for consistent widths */
    .samples-overview-card {
        min-width: 8rem !important;
        flex-basis: 8rem !important;
        flex-grow: 1 !important;
        flex-shrink: 0 !important;
        width: 8rem !important;
    }
    
    /* 125% scaling adjustments for samples overview cards */
    @media screen and (min-resolution: 120dpi) and (max-resolution: 143dpi) {
        .samples-overview-card {
            min-width: 7rem !important;
            flex-basis: 7rem !important;
            width: 7rem !important;
        }
    }

.samples-overview-card-large {
    min-width: 12rem;
    flex-basis: 12rem;
    flex-grow: 2;
    flex-shrink: 0;
}

.sample-suggestion {
    font-size: 1.1rem !important;
}

/* Ensure consistent card sizing in SamplesOverview */
.dashboard-container .dashboard-layout-column[onclick*="InventoryOnHand"],
.dashboard-container .dashboard-layout-column[onclick*="ShowOnlyWithoutQuantity"],
.dashboard-container .dashboard-layout-column[onclick*="ShowOnlyWithLowQuantity"],
.dashboard-container .dashboard-layout-column[onclick*="ExpiringInventory"],
.dashboard-container .dashboard-layout-column[onclick*="ExpiredInventory"] {
    min-width: 8rem !important;
    flex-basis: 8rem !important;
    flex-grow: 1 !important;
    flex-shrink: 0 !important;
    width: 8rem !important;
}

/* Target the nested cards specifically */
.dashboard-container .dashboard-layout-column .dashboard-layout-column[onclick*="ExpiringInventory"],
.dashboard-container .dashboard-layout-column .dashboard-layout-column[onclick*="ExpiredInventory"] {
    min-width: 8rem !important;
    flex-basis: 8rem !important;
    flex-grow: 1 !important;
    flex-shrink: 0 !important;
    width: 8rem !important;
}

.dispense-page-button {
    background-color: var(--background) !important;
    min-width: 8rem;
    font-size: 1.3rem;
    width: 100%;
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    border: 0.15rem solid var(--background);
    border-radius: 0.5rem;
}

.dispense-page-secondary-button {
    border: 0.15rem solid var(--background);
    background-color: #FFFFFF !important;
    width: 100%;
    border-radius: 0.5rem;
    min-width: 8rem;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    color: var(--background) !important;
}

.dashboard-text {
    /* Responsive text sizing - slightly reduced */
    font-size: var(--samples-label-size);
}

.dashboard-number {
    /* Responsive number sizing */
    font-size: clamp(2.5rem, 4vw, 3rem);
}

.dashboard-icon {
    /* Responsive icon sizing */
    max-height: clamp(80px, 8vh, 100px);
    height: auto;
}

/* Help video link base styles */
.help-video-link {
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--background);
    font-weight: 600;
    text-decoration: underline;
}

/* Responsive breakpoints for different scaling levels */
@media screen and (min-resolution: 120dpi) {
    /* High DPI displays (125% scaling) */
    .dashboard-card {
        max-width: min(380px, 22vw);
    }
    
    .dashboard-text {
        font-size: var(--samples-label-size);
    }
    /* Reduce gap under topbar on high DPI */
    .dashboard-topbar { margin-bottom: 0.25rem; }
    .expiring-menu > .rz-menu > .rz-navigation-item > .rz-navigation-item-wrapper > .rz-navigation-item-link > .rz-navigation-item-text {
        font-size: var(--samples-label-size) !important;
    }
    
    /* Better space utilization for 125% scaling */
    .dashboard-container {
        --samples-label-size: clamp(0.91rem, 1.31vw, 1.105rem);
        padding: 0.6rem;
        gap: 0.6rem;
        min-height: 10rem;
    }
    
    /* SamplesOverview specific adjustments for 125% scaling */
    .dashboard-container .dashboard-layout-column[onclick*="InventoryOnHand"],
    .dashboard-container .dashboard-layout-column[onclick*="ShowOnlyWithoutQuantity"],
    .dashboard-container .dashboard-layout-column[onclick*="ShowOnlyWithLowQuantity"],
    .dashboard-container .dashboard-layout-column[onclick*="ExpiringInventory"],
    .dashboard-container .dashboard-layout-column[onclick*="ExpiredInventory"] {
        min-width: 7rem !important;
        flex-basis: 7rem !important;
        width: 7rem !important;
    }
    
    /* Target the nested cards specifically for 125% scaling */
    .dashboard-container .dashboard-layout-column .dashboard-layout-column[onclick*="ExpiringInventory"],
    .dashboard-container .dashboard-layout-column .dashboard-layout-column[onclick*="ExpiredInventory"] {
        min-width: 7rem !important;
        flex-basis: 7rem !important;
        width: 7rem !important;
    }
    
    /* Reduce font sizes for 125% scaling */
    .dashboard-container .dashboard-text {
        font-size: clamp(0.85rem, 1.2vw, 0.95rem) !important;
    }
    
    .dashboard-container .dashboard-number {
        font-size: clamp(2rem, 3.5vw, 2.5rem) !important;
    }
    
    .dashboard-container .dashboard-icon {
        font-size: 1.4rem !important;
    }
    
    /* Reduce padding and margins for 125% scaling */
    .dashboard-container .samples-overview-card {
        padding: 0.4rem !important;
        border-radius: 0.8rem !important;
    }
    
    .dashboard-container .dashboard-layout-row {
        gap: 0.6rem !important;
    }
    
    /* Expiring menu adjustments for 125% scaling */
    .dashboard-container .expiring-menu .rz-menu .rz-navigation-item .rz-navigation-item-wrapper .rz-navigation-item-link .rz-navigation-item-text {
        font-size: clamp(0.8rem, 1.1vw, 0.9rem) !important;
    }
    
    /* Loader positioning adjustments for 125% scaling */
    .dashboard-container .dashboard-layout-column[onclick*="InventoryOnHand"] .loader,
    .dashboard-container .dashboard-layout-column[onclick*="ShowOnlyWithoutQuantity"] .loader,
    .dashboard-container .dashboard-layout-column[onclick*="ShowOnlyWithLowQuantity"] .loader,
    .dashboard-container .dashboard-layout-column[onclick*="ExpiringInventory"] .loader,
    .dashboard-container .dashboard-layout-column[onclick*="ExpiredInventory"] .loader {
        padding-left: 2.5rem !important;
        padding-top: 0.4rem !important;
        padding-bottom: 0.4rem !important;
    }
    
    /* Apply clamp() to navigation item wrapper padding for 125% scaling */
    .rz-panel-menu .rz-navigation-item-wrapper {
        padding-top: 0.1rem !important;
        padding-bottom: 0.1rem !important;
        padding-left: 0.3rem !important;
        padding-right: 0.3rem !important;
    }
    
    /* Ensure proper spacing between cards at 125% scaling */
    .dashboard-container .dashboard-layout-column[style*="flex-grow: 2"] {
        gap: 0.5rem !important;
    }
    
    /* Scale down help video link for 125% scaling */
    .help-video-link {
        font-size: 0.9rem !important;
    }
    
    /* Scale down practice view dropdown in header for 125% scaling */
    .header .col-12 div[style*="width: fit-content"][style*="color: var(--background)"] {
        font-size: 0.8rem !important;
    }
    
    .header .col-12 .RadzenDropDown {
        font-size: 0.85rem !important;
    }
    
    .header .col-12 .RadzenDropDown .rz-dropdown {
        padding: 0.4rem 0.6rem !important;
        min-height: 2.2rem !important;
    }
    
    .header .col-12 .RadzenDropDown .rz-dropdown-trigger {
        padding: 0.4rem !important;
    }
    
    .header .col-12 .RadzenDropDown .rz-dropdown-items .rz-dropdown-item {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Reduce space between title and number cards for 125% scaling */
    .dashboard-container > div:first-child {
        margin-bottom: 0.5rem !important; /* Reduced from 1rem */
    }
    
    /* Reduce overall container height for 125% scaling */
    .dashboard-container {
        min-height: 9rem !important; /* Reduced from 12rem */
    }
    
    /* Reduce card padding for tighter spacing at 125% scaling */
    .dashboard-container .samples-overview-card {
        padding: 0.3rem !important; /* Further reduced from 0.4rem */
    }
    
    /* Reduce gap between rows for 125% scaling */
    .dashboard-container .dashboard-layout-row {
        gap: 0.4rem !important; /* Further reduced from 0.6rem */
    }
    
    /* ExpiringProducts component adjustments for 125% scaling */
    .expiring-products-card .dashboard-text {
        font-size: clamp(0.85rem, 1.2vw, 0.95rem) !important; /* Match SamplesOverview title size */
    }
    
    /* Last Inventory Count component adjustments for 125% scaling */
    /* Target the main container div with the specific styling */
    div[style*="border-radius: 2rem"][style*="padding: 1rem"] {
        padding: 0.6rem !important; /* Reduced from 1rem */
        border-radius: 1.5rem !important; /* Reduced from 2rem */
    }
    
    /* Reduce title icon size for 125% scaling */
    div[style*="border-radius: 2rem"][style*="padding: 1rem"] .rz-icon {
        font-size: 1.3rem !important; /* Reduced from 2rem */
    }
    
    /* Reduce title icon size for LastCountAndReconciliation component at 125% scaling */
    div[style*="border-radius: 2rem"][style*="padding: 1rem"][style*="height: 100%"] .rz-icon {
        font-size: 1.4rem !important; /* Reduced from 2rem */
    }
    
    /* Reduce title text size for 125% scaling */
    div[style*="border-radius: 2rem"][style*="padding: 1rem"] span[style*="font-size: 1.2rem"] {
        font-size: 1rem !important; /* Reduced from 1.2rem */
    }
    
    /* Reduce subtitle text size for 125% scaling */
    div[style*="border-radius: 2rem"][style*="padding: 1rem"] span[style*="font-size: 1rem"] {
        font-size: 0.85rem !important; /* Reduced from 1rem */
    }
    
    /* Reduce date text size for 125% scaling */
    div[style*="border-radius: 2rem"][style*="padding: 1rem"] span[style*="font-size: 2rem"] {
        font-size: 1.6rem !important; /* Reduced from 2rem */
    }
    
    /* Reduce warning icon size for 125% scaling */
    div[style*="border-radius: 2rem"][style*="padding: 1rem"] .rz-icon[style*="font-size: 1.4rem"] {
        font-size: 1.1rem !important; /* Reduced from 1.4rem */
    }
    
    /* Reduce "No Data" icon size for 125% scaling */
    div[style*="border-radius: 2rem"][style*="padding: 1rem"] .rz-icon[style*="font-size: 2rem"] {
        font-size: 1.6rem !important; /* Reduced from 2rem */
    }
    
    /* Reduce margins and gaps for 125% scaling */
    div[style*="border-radius: 2rem"][style*="padding: 1rem"] > div:first-child {
        margin-bottom: 0.6rem !important; /* Reduced from 1rem */
        gap: 0.2rem !important; /* Reduced from 0.25rem */
    }
    
    /* Reduce inner content gaps for 125% scaling */
    div[style*="border-radius: 2rem"][style*="padding: 1rem"] div[style*="gap: 0.5rem"] {
        gap: 0.4rem !important; /* Reduced from 0.5rem */
    }
    
    /* Reduce inner padding for 125% scaling */
    div[style*="border-radius: 2rem"][style*="padding: 1rem"] div[style*="padding: 0 0.5rem"] {
        padding: 0 0.4rem !important; /* Reduced from 0 0.5rem */
    }
    
    /* Reduce "No Data" container dimensions for 125% scaling */
    div[style*="border-radius: 2rem"][style*="padding: 1rem"] div[style*="min-width: 9rem"][style*="min-height: 5.7rem"] {
        min-width: 7.5rem !important; /* Reduced from 9rem */
        min-height: 4.8rem !important; /* Reduced from 5.7rem */
    }
    
    /* Reduce the 4 small cards on the right of Expiring Products for 125% scaling */
    .expiring-products-row .dashboard-layout-column[style*="flex: 0 0 calc(50% - 0.5rem)"] .dashboard-card {
        min-height: 140px !important; /* Reduced from 180px */
    }
    
    .expiring-products-row .dashboard-layout-column[style*="flex: 0 0 calc(50% - 0.5rem)"] .dashboard-icon {
        height: 3.5rem !important; /* Reduced from default */
        width: 3.5rem !important; /* Reduced from default */
        align-self: center;
    }
    
    .expiring-products-row .dashboard-layout-column[style*="flex: 0 0 calc(50% - 0.5rem)"] .dashboard-text {
        font-size: clamp(0.75rem, 1vw, 1rem) !important; /* Smaller text */
    }
    
    .expiring-products-row .dashboard-layout-column[style*="flex: 0 0 calc(50% - 0.5rem)"] .rz-p-4 {
        padding: 0.75rem !important; /* Reduced from 1rem */
    }
    
    .expiring-products-row .dashboard-layout-column[style*="flex: 0 0 calc(50% - 0.5rem)"] .rz-stack[style*="gap: 0.5rem"] {
        gap: 0.4rem !important; /* Reduced from 0.5rem */
    }
    
    /* Target the inner RadzenStack that has the inline min-height: 180px */
.expiring-products-row .dashboard-layout-column[style*="flex: 0 0 calc(50% - 0.5rem)"] .rz-stack[style*="min-height: 180px"] {
    min-height: 9rem !important; /* Override the inline style - using rem instead of px */
}

/* Target the dashboard-card elements to reduce their height */
.expiring-products-row .dashboard-layout-column[style*="flex: 0 0 calc(50% - 0.5rem)"] .dashboard-card {
    height: 9rem !important; /* Override any height constraints - using rem instead of px */
    min-height: 9rem !important; /* Ensure minimum height is also reduced - using rem instead of px */
}
} /* Close the 120dpi media query */

@media screen and (min-resolution: 144dpi) {
    /* Very high DPI displays (150% scaling) */
    .dashboard-card {
        max-width: min(340px, 20vw);
    }
    
    .dashboard-text {
        font-size: var(--samples-label-size);
    }
    /* Reduce gap under topbar on very high DPI */
    .dashboard-topbar { margin-bottom: 0.3rem; }
    .expiring-menu > .rz-menu > .rz-navigation-item > .rz-navigation-item-wrapper > .rz-navigation-item-link > .rz-navigation-item-text {
        font-size: var(--samples-label-size) !important;
    }
    
    /* Better space utilization for 150% scaling */
    .dashboard-container {
        --samples-label-size: clamp(0.81rem, 1.205vw, 1.01rem);
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    /* Sidebar adjustments for 150% scaling */
    .side-nav {
        width: clamp(12rem, 13vw, 15rem);
        min-width: 12rem;
    }
    
    .body-margin {
        margin-left: clamp(12rem, 13vw, 15rem);
    }
    
    .side-nav-links {
        font-size: clamp(0.75rem, 0.95vw, 0.95rem);
    }
    
    /* SamplesOverview card adjustments for 150% scaling */
    .samples-overview-card {
        min-width: 6rem !important;
        flex-basis: 6rem !important;
        width: 6rem !important;
    }
    
    .dashboard-layout-row {
        gap: 0.5rem;
        justify-content: space-evenly;
    }
    
    /* Adjust flex-basis for better layout on very high DPI */
    .dashboard-container [style*="flex-basis: 20rem"] {
        flex-basis: 16rem !important;
    }
    
    .dashboard-container [style*="flex-basis: 10.5rem"] {
        flex-basis: 8.5rem !important;
    }
    
    .dashboard-container [style*="flex-basis: 40rem"] {
        flex-basis: 32rem !important;
    }
    
    /* SamplesOverview card adjustments for 150% scaling */
    .dashboard-container .dashboard-layout-column[onclick*="InventoryOnHand"],
    .dashboard-container .dashboard-layout-column[onclick*="ShowOnlyWithoutQuantity"],
    .dashboard-container .dashboard-layout-column[onclick*="ExpiringInventory"],
    .dashboard-container .dashboard-layout-column[onclick*="ExpiredInventory"] {
        min-width: 6rem !important;
        flex-basis: 6rem !important;
        width: 6rem !important;
    }
    
    /* Target the nested cards specifically for 150% scaling */
    .dashboard-container .dashboard-layout-column .dashboard-layout-column[onclick*="ExpiringInventory"],
    .dashboard-container .dashboard-layout-column .dashboard-layout-column[onclick*="ExpiredInventory"] {
        min-width: 6rem !important;
        flex-basis: 6rem !important;
        width: 6rem !important;
    }
    
    .dashboard-container [style*="flex-basis: 35rem"] {
        flex-basis: 28rem !important;
    }
    
    /* ExpiringProducts component adjustments for 150% scaling */
    .expiring-products-card .dashboard-text {
        font-size: clamp(0.75rem, 1.1vw, 0.85rem) !important; /* Match SamplesOverview title size for 150% */
    }
    

}

/* Additional scaling improvements */
@media screen and (min-resolution: 96dpi) and (max-resolution: 119dpi) {
    /* Standard DPI displays (100% scaling) */
    .dashboard-container [style*="flex-basis: 20rem"] {
        flex-basis: 20rem !important;
    }
    
    .dashboard-container [style*="flex-basis: 10.5rem"] {
        flex-basis: 10.5rem !important;
    }
    
    /* Sidebar adjustments for 100% scaling */
    .side-nav {
        width: clamp(14rem, 15vw, 17rem);
        min-width: 14rem;
    }
    
    .body-margin {
        margin-left: clamp(14rem, 15vw, 17rem);
    }
    
    .side-nav-links {
        font-size: clamp(0.9rem, 1.1vw, 1.0rem) !important;
    }
}

/* Ensure sidebar fits on very small screens */
@media screen and (max-width: 768px) {
    .side-nav {
        width: clamp(12rem, 13vw, 15rem);
        min-width: 12rem;
    }
    
    .body-margin {
        margin-left: clamp(12rem, 13vw, 15rem);
    }
    
    .side-nav-links {
        font-size: clamp(0.8rem, 1vw, 1rem);
    }
}

/* Additional responsive adjustments for high DPI displays */
@media screen and (min-resolution: 120dpi) and (max-width: 1920px) {
    .side-nav {
        width: clamp(13.5rem, 14.5vw, 16.5rem);
        min-width: 13.5rem;
    }
    
    .body-margin {
        margin-left: clamp(13.5rem, 14.5vw, 16.5rem);
    }
}

/* Windows-specific scaling fixes */
@supports (-ms-ime-align: auto) {
    /* Internet Explorer and Edge specific */
    .dashboard-container {
        zoom: 1;
        -ms-zoom: 1;
    }
    
    .dashboard-card {
        zoom: 1;
        -ms-zoom: 1;
    }
}

/* Prevent excessive zooming on Windows */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .dashboard-container {
        zoom: 1;
        -ms-zoom: 1;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .dashboard-card {
        border-width: 2px;
    }
    
    .dashboard-text {
        font-weight: 600;
    }
}



/* JavaScript-detected scaling classes */
body.scale-125 .dashboard-container {
    --scale-adjustment: 0.9;
}

body.scale-150 .dashboard-container {
    --scale-adjustment: 0.8;
}

/* Apply scaling adjustments using CSS custom properties */
.dashboard-container {
    /* Disable transform-based scaling to avoid extra bottom whitespace */
    transform: none !important;
    transform-origin: top center;
}

/* Ensure proper spacing when scaled */
.dashboard-container > * {
    margin-bottom: calc(1rem / var(--scale-adjustment, 1));
}

/* Better space utilization for different scaling levels */
@media screen and (min-resolution: 120dpi) {
    .dashboard-layout-row {
        width: 100% !important;
        justify-content: space-between !important;
    }
    
    .dashboard-layout-column {
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }
}

@media screen and (min-resolution: 144dpi) {
    .dashboard-layout-row {
        width: 100% !important;
        justify-content: space-between !important;
    }
    
    .dashboard-layout-column {
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }
    
    /* Scale down help video link for 150% scaling */
    .help-video-link {
        font-size: 0.8rem !important;
    }
}

/* Responsive adjustments for different scaling levels */
@media screen and (max-width: 1200px) {
    .dashboard-container {
        transform: none;
        --scale-adjustment: 1;
    }
}

:root {
    --background: #025A94;
    --font-color: white;
    --basic-subscription-color: #206971;
    --standard-subscription-color: #1271a3;
    --premium-subscription-color: #cb7f0d;
    --rz-form-error-color: #C41E3A;
    --rz-form-error-font-size: 0.9rem;
}

@font-face {
    font-family: 'QuickSand';
    src: url(fonts/Quicksand-VariableFont_wght.ttf);
}

@font-face {
  font-family: 'HindVadodara';
  src: url(fonts/HindVadodara-Regular.ttf);
}

@font-face {
  font-family: 'Montserrat';
  src: url(fonts/Montserrat-Regular.ttf);
}

@font-face {
  font-family: 'HindVadodaraBold';
  src: url(fonts/HindVadodara-Bold.ttf);
}

html, body {
    font-family: QuickSand;
}

h1:focus {
    outline: none;
}

a, .btn-link {
    color: #0071c1;
}

/* Landing page - start */
h1, h2, h3, h4, h5, h6, p {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
}

.h3-font-size, h3-font-size {
  font-size: calc(1.3rem + .6vw) !important;
}

.landing {
  color: #fff;
  background: rgb(0, 137, 190) no-repeat;
  background: -moz-linear-gradient(65deg, rgba(0, 137, 190, 1) 0%, rgba(5, 18, 84, 1) 65%) no-repeat;
  background: -webkit-linear-gradient(65deg, rgba(0, 137, 190, 1) 0%, rgba(5, 18, 84, 1) 65%) no-repeat;
  background: linear-gradient(65deg, rgba(0, 137, 190, 1) 0%, rgba(5, 18, 84, 1) 65%) no-repeat;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0089be",endColorstr="#051254",GradientType=1);
  background-size: cover;
  background-attachment: fixed;
}

@media screen and (max-width: 576px) {
  .landing {
    background: rgb(0, 137, 190) no-repeat;
    background: -moz-linear-gradient(35deg, rgba(0, 137, 190, 1) 35%, rgba(5, 18, 84, 1) 85%) no-repeat;
    background: -webkit-linear-gradient(35deg, rgba(0, 137, 190, 1) 35%, rgba(5, 18, 84, 1) 85%) no-repeat;
    background: linear-gradient(35deg, rgba(0, 137, 190, 1) 35%, rgba(5, 18, 84, 1) 85%) no-repeat;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0089be",endColorstr="#051254",GradientType=1);
    background-size: cover;
    background-attachment: fixed;
  }
}

.landing-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #fff;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100% !important;
  flex-direction: column !important;
  overflow-x: hidden !important;
}

.cover-container {
  width: 100vw;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  background-color: #ffffff;
  border-bottom: 1px solid #d6d5d5;
  flex-direction: row;
}

/* 125% scaling adjustments for header */
@media screen and (min-resolution: 120dpi) and (max-resolution: 143dpi) {
  .header {
    height: 3rem !important;
  }

  .body-margin {
    margin-top: 3rem !important;
    min-height: calc(100vh - 3rem) !important;
  }

  .top-row {
      height: 3rem !important;
  }

  .side-nav {
      margin-top: 3rem !important;
  }
}

/* 150% scaling adjustments for header */
@media screen and (min-resolution: 144dpi) {
  .header {
    height: 2.5rem !important;
  }

  .body-margin {
      margin-top: 2.5rem !important;
      min-height: calc(100vh - 2.5rem) !important;
  }

  .top-row {
      height: 2.5rem !important;
  }

  .side-nav {
      margin-top: 2.5rem !important;
  }
}

.header ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.header ul li {
  margin-right: 15px;
}

.header ul li a {
  color: white;
  text-decoration: none;
}

.content {
  flex-grow: 1;
  padding: 0 !important;
  min-height: calc(100vh - 8.5rem);
  position: relative;
  overflow: hidden;
}

.footer {
  background-color: #007bff;
  padding: 10px;
  color: white;
  text-align: center;
}

.mastfoot {
  padding: 18px;
  background: #FFFFFF;
  color: #000000;
  margin-top: auto !important;
}

.mastfoot p {
  margin: 0;
  padding: 0;
}

.mastfoot a {
  color: #000000;
}

.mastfoot p, .mastfoot a {
  font-size: clamp(1rem, 3.5vw, 1.35rem);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}

.landing-container {
  width: 100% !important;
  max-width: 1600px !important;
  padding-right: var(--bs-gutter-x, .75rem);
  padding-left: var(--bs-gutter-x, .75rem);
  margin-right: auto;
  margin-left: auto;
}

.landing-header-row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y)* -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

  .landing-header-row > * {
    flex-shrink: 0;
    /*width: 100%;
    max-width: 100%;*/
    padding-right: calc(var(--bs-gutter-x)* .5) !important;
    padding-left: calc(var(--bs-gutter-x)* .5) !important;
    margin-top: var(--bs-gutter-y);
  }

  @media (min-width: 1400px) {
    .landing-container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1400px;
  }
}

@media (min-width: 1200px) {
  .landing-container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 992px) {
  .landing-container, .container-lg, .container-md, .container-sm {
    max-width: 960px;
  }
}

@media (min-width: 768px) {
  .landing-container, .container-md, .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 576px) {
  .landing-container, .container-sm {
    max-width: 540px;
  }
}

.landing-nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.landing-nav-link {
  display: block;
  padding: .5rem 1rem;
  text-decoration: none !important;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.masthead {
  padding: 35px;
  width: 100%;
  margin-bottom: auto !important;
}

@media screen and (max-width: 576px) {
  .masthead {
    padding: 24px 0.75rem 18px 0.75rem;
  }
}

.nav-masthead .landing-sign-in-btn {
  padding-left: 35px;
  padding-right: 35px;
}

.nav-masthead a, .nav-masthead h3 {
  margin-left: 35px;
}

.nav-masthead h3 {
  font-weight: 700;
  text-align: right;
}

@media (min-width: 1200px) {
  .h3, h3 {
    font-size: 1.75rem;
  }
}

.landing-layout h1, .landing-layout h2, .landing-layout h3, .landing-layout h4, .landing-layout h5, .landing-layout h6 {
  color: #FFFFFF;
}

.nav-masthead a, .nav-masthead h3 {
  margin-left: 35px;
}

@media screen and (max-width: 768px) {
  .nav-masthead a, .nav-masthead h3 {
    margin: 18px 0 !important;
  }
}

.nav-masthead h3 small {
  display: block;
  font-weight: 500;
  font-size: 65%;
}

.srxlogo img {
  width: 100%;
  max-width: 293px;
  height: auto;
}

.landing-sign-in-btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  border-radius: .25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-group-lg > .landing-sign-in-btn, .btn-lg {
  padding: .5rem 1rem;
  font-size: 1.25rem;
  border-radius: .3rem;
}

.btn-group-lg > .landing-sign-in-btn, .btn-lg {
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  border-radius: 9999px;
}

.landing-btn-secondary {
    color: #FFFFFF;
    text-shadow: none;
    background-color: #686A6F;
}

.landing-btn-secondary:hover, .landing-btn-secondary:focus {
    background-color: #3D5BA3;
    color: #FFFFFF;
}

.main-content {
    padding: 0 56% 0 1.5rem !important;
}

@media screen and (max-width: 1200px) {
  .main-content {
    padding: 0 1.5rem !important;
    margin-top: 22rem;
  }
}


.main-content h4.values {
  font-size: clamp(0.8rem, 1.65vw, 1.65rem);
  font-weight: 400;
  margin: 3.65rem 0 1.65rem 0;
}

.main-content h4.values span {
  font-weight: 300;
  font-size: 135%;
  margin: 0 0.35rem;
}

@media screen and (max-width: 1200px) {
  .main-content h4.values {
    font-size: clamp(0.8rem, 2.65vw, 1.65rem);
    margin: 1.65rem 0;
  }
}

.nav.dk-blue-bar {
  background: #051254;
}

.nav.blue-bar, .nav.dk-blue-bar {
  position: relative;
  z-index: 5;
  padding: 10px;
  margin-top: 15px;
  height: auto;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  border-radius: 9999px;
}

.nav.blue-bar a, .nav.dk-blue-bar a {
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  border-radius: 9999px;
  cursor: pointer;
  flex-grow: 1;
  justify-content: center;
  text-align: center;
  color: white;
}

.main-content h1 {
  font-size: clamp(2.85rem, 5.65vw, 5.65rem);
  font-weight: 700;
  line-height: 1;
}

.nav-landing-link {
  display: block;
  padding: .5rem 1rem;
  text-decoration: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.nav.blue-bar a:hover, .nav.dk-blue-bar a:hover {
  outline: 2px solid rgba(255, 255, 255, 0.35);
}

.main-content h1 span {
  color: #00B7F1;
}

.landing-slider {
  width: 48vw;
  height: 495px;
  position: absolute;
  z-index: 3;
  right: 0;
  top: 50%;
  overflow: hidden;
  -webkit-border-top-left-radius: 9999px;
  -webkit-border-bottom-left-radius: 9999px;
  -moz-border-radius-topleft: 9999px;
  -moz-border-radius-bottomleft: 9999px;
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

@media screen and (max-width: 1200px) {
  .landing-slider {
    width: 60vw;
    height: 420px;
  }
}

@media screen and (max-width: 576px) {
  .landing-slider {
    width: 90vw;
    height: 320px;
  }
}

.landing-slider .landing-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.landing-slider .active-landing-slide {
  opacity: 1;
}

.landing-slides-holder {
  position: relative;
  width: 100%;
  height: 100%;
}
/*@media screen and (max-width: 1200px) {
  .cover {
    padding-bottom: 3.65rem;
  }
}*/
.cover {
    position: relative;
    z-index: 5;
    padding-bottom: 3.65rem;
    padding-top: 5rem;
}

.landing-modal-content {
  background-color: transparent !important;
  border: none !important;
}

.landing-modal-header {
  border: none !important;
}

.landing-modal-header h5 {
    margin-left: 1.65rem;
  }

.modal-open {
  overflow: hidden;
  position: absolute;
}
/* Landing page - end */

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.nav-link {
    padding: 0.5rem 1rem !important;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

.rz-menuitem:hover, .rz-autocomplete-list-item:hover, .rz-multiselect-item:hover, .rz-autocomplete-items li:hover, .rz-dropdown-items li:hover, .rz-multiselect-items li:hover, .rz-dropdown-item:hover {
  background-color: #D3ECEF;
  color: #3a474d;
}

.rz-state-highlight.rz-menuitem:hover, .rz-state-highlight.rz-autocomplete-list-item:hover, .rz-state-highlight.rz-multiselect-item:hover, .rz-autocomplete-items li.rz-state-highlight:hover, .rz-dropdown-items li.rz-state-highlight:hover, .rz-multiselect-items li.rz-state-highlight:hover, .rz-dropdown-item.rz-state-highlight:hover {
  background-color: #D3ECEF;
}

.rz-state-highlight.rz-menuitem, .rz-state-highlight.rz-autocomplete-list-item, .rz-state-highlight.rz-multiselect-item, .rz-autocomplete-items li.rz-state-highlight, .rz-dropdown-items li.rz-state-highlight, .rz-multiselect-items li.rz-state-highlight, .rz-dropdown-item.rz-state-highlight {
  background-color: #94BCC1 !important;
}

.rz-calendar:not(.rz-state-disabled):hover .rz-datepicker-trigger {
  color: #94BCC1 !important;
}

.rz-paginator-element:not(.rz-state-disabled):hover:not(:active), .rz-button:not(.rz-state-disabled):hover:not(:active) {
  box-shadow: none !important;
}

.rz-dropdown-items li.rz-state-disabled {
  opacity: 1 !important;
  background-color: white !important;
  border-top: 1px solid #d6d5d5;
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

.page {
  background-color: white;
  flex-direction: column !important; 
}

.rz-steps .rz-state-highlight .rz-steps-number {
  background-color: var(--background) !important;
}

.rz-steps .rz-state-highlight .rz-steps-title {
  color: var(--background) !important;
  font-weight: bold;
  font-size: 1.3rem;
}

.rz-steps-number {
  font-size: 1.3rem;
  padding: 0 !important;
}

.rz-steps > ul {
  padding-top: 1rem !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rz-steps .rz-widget-content {
  border-top: 0.1rem solid var(--background);
  border-bottom: 0.1rem solid var(--background);
}

.rz-steps-next, .rz-steps-prev {
  font-weight: bold;
  font-size: 1.3rem !important;
}

  .rz-steps-next > i, .rz-steps-prev > i {
    font-weight: bold;
    padding: 0;
    margin-top: auto;
    font-size: 1.7rem !important;
  }

.rz-steps .rz-steps-item:not(:last-child) {
  flex: auto;
  display: flex;
  align-items: center;
  max-width: 25rem;
}

.rz-steps .rz-steps-item:not(:last-child):after {
  display: block;
  content: "";
  flex: auto;
  height: 1px;
  margin-right: 16px;
  background-color: #dfe5ec;
}

.rz-steps-number {
  margin-right: 0.5rem;
}

.rz-steps-title {
  margin-left: 0 !important;
}

.rz-spinner-button {
  background-color: var(--background) !important;
}

@media (max-width: 408px) {
  .rz-steps-title {
    display: none;
  }
}

.required-field:after {
  content: " *";
  color: red;
  font-weight: normal;
}

.max-field-width {
  width: 100%;
  max-width: 31rem !important;
}

.profile-max-field-width {
  width: 100%;
  max-width: 28rem !important;
}

.lot-dialog-max-field-width {
  width: 100%;
  max-width: 33rem !important;
}

.rz-form .row .rz-label {
  padding-right: 0;
  font-weight: normal;
}

.rz-colorpicker, .rz-lookup-search input, .rz-spinner, .rz-calendar .rz-inputtext, .rz-multiselect, .rz-dropdown, .mask, .rz-textarea, .rz-textbox {
  font-size: 1rem;
}

.col-margin {
  margin-bottom: 0.25rem;
  margin-top: 0.25rem;
}

.col-title-margin-2 {
  min-width: 19rem;
  margin-bottom: auto;
  margin-top: auto;
  height: fit-content;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--background);
}

.drug-sample-card {
  width: 100%;
  padding: 0;
  border-radius: 8px;
}

.drug-sample-title-margin {
  min-width: 8rem;
  margin-bottom: auto;
  height: 2.25rem !important;
  line-height: 2.25rem;
  font-weight: bold;
  font-size: 1rem;
  padding-right: 0;
  color: var(--background);
}

.drug-sample-text-margin > .rz-textbox {
  color: black !important;
}

input {
  font-size: 1rem;
}

.drug-sample-text-margin {
  max-width: 35.8rem;
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  color: var(--background);
}

.rz-form-field:hover .rz-form-field-content, .rz-autocomplete:hover:not(.rz-state-disabled), .rz-radiobutton-box:hover:not(.rz-state-disabled), .rz-chkbox-box:hover:not(.rz-state-disabled), .rz-colorpicker:not(:disabled):not(.rz-state-disabled):hover, .rz-lookup-search input:not(:disabled):not(.rz-state-disabled):hover, .rz-spinner:not(:disabled):not(.rz-state-disabled):hover, .rz-calendar .rz-inputtext:not(:disabled):not(.rz-state-disabled):hover, .rz-multiselect:not(:disabled):not(.rz-state-disabled):hover, .rz-dropdown:not(:disabled):not(.rz-state-disabled):hover, .mask:not(:disabled):not(.rz-state-disabled):hover, .rz-textarea:not(:disabled):not(.rz-state-disabled):hover, .rz-textbox:not(:disabled):not(.rz-state-disabled):hover {
  border: 1px solid #51a2ab;
}
.rz-form-field.rz-state-focused .rz-form-field-content, .rz-spinner:focus-within:not(.rz-state-disabled), .rz-autocomplete:focus-within:not(.rz-state-disabled), .rz-colorpicker:not(:disabled):not(.rz-state-disabled):focus, .rz-lookup-search input:not(:disabled):not(.rz-state-disabled):focus, .rz-spinner:not(:disabled):not(.rz-state-disabled):focus, .rz-calendar .rz-inputtext:not(:disabled):not(.rz-state-disabled):focus, .rz-multiselect:not(:disabled):not(.rz-state-disabled):focus, .rz-dropdown:not(:disabled):not(.rz-state-disabled):focus, .mask:not(:disabled):not(.rz-state-disabled):focus, .rz-textarea:not(:disabled):not(.rz-state-disabled):focus, .rz-textbox:not(:disabled):not(.rz-state-disabled):focus {
  border: 1px solid var(--background);
}
.rz-spinner input[type=number], .rz-spinner input[type=text] {
  outline: none !important;
}

.form-field-border {
  border-radius: 0.5rem;
  box-shadow: rgba(2, 90, 148, 0.6) 0px 0px 0px 1px !important;
}

.date-search-form-field > .rz-calendar > input {
  height: 2.25rem !important;
  font-size: 1rem;
}

.password-visibility-btn {
  background-color: white !important;
  color: var(--background) !important;
  width: 3.5rem !important;
  border-radius: 0 4px 4px 0 !important;
  box-shadow: inset 0 4px 3px 0 rgba(0, 0, 0, 0.03) !important;
  border-left: 1px solid #dadfe2 !important;
  padding: 0 !important;
  position: absolute;
  right: 1px;
  top: 1px;
  min-height: calc(2.25rem - 2px);
  min-width: calc(2.25rem - 2px);
}

.login-holder {
  height: fit-content;
  background-color: white;
  border-radius: 2rem;
  margin: 4rem auto 0 auto;
  width: fit-content;
  max-width: 40rem;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  position: relative;
  border: 0.25rem solid var(--background);
}

.login-registration-label {
  position: absolute;
  font-size: 2.2rem;
  color: var(--background);
  font-weight: bold;
  top: 0;
  left: 50%;
  width: fit-content;
  height: fit-content;
  transform: translate(-50%, -55%);
  -webkit-transform: translate(-50%, -55%);
  background: white;
  border-radius: 2rem;
  padding: 0 2rem;
}

.registration-holder {
  min-height: 38rem;
  height: calc(100vh - 2.5rem);
  width: calc(100% - 2.5rem);
  display: flex;
  margin: 1.25rem;
  flex-direction: column;
  border: 0.25rem solid var(--background);
  border-radius: 2rem;
  position: relative;
  padding: 0;
  max-width: 70rem;
}

.details-icon-background {
  width: 8rem;
  height: 8rem;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.subscription-card {
  height: fit-content;
  width: 24rem;
  min-width: 12rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}


.subscription-label {
  position: absolute;
  font-size: 2.2rem;
  font-weight: bold;
  top: 0;
  left: 50%;
  width: fit-content;
  height: fit-content;
  transform: translate(-50%, -55%);
  -webkit-transform: translate(-50%, -55%);
  background: white;
  border-radius: 2rem;
  padding: 0 2rem;
}

.subscription-button {
  font-size: 2rem;
  padding: 2rem;
  border-radius: 1rem;
}

.included-label-font-size {
  font-size: 1.5rem;
}

.subscription-holder {
  height: fit-content;
  width: 100%;
  display: flex;
  margin: 1.25rem 0 2.5rem 0;
  padding: 1rem;
  flex-direction: column;
  border: 0.25rem solid var(--background);
  border-radius: 2rem;
  position: relative;
  outline: 4px solid #f5f5f5;
  outline-offset: -0.7rem;
}

.included-features-list-holder {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content;
}

.included-feature-item {
  position: relative;
  z-index: 10;
  width: fit-content;
  height: fit-content;
}

  .included-feature-item > li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

.included-feature-item-background {
  position: absolute;
  top: 0;
  width: calc(100% + 1.3rem);
  height: 100%;
}

  .included-feature-item-background > li {
    width: 100%;
    background: white;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

    .included-feature-item-background > li:nth-child(odd) {
      background: #f5f5f5;
      color: #f5f5f5;
    }

.included-feature-text {
  padding: 0.5rem 0;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: baseline;
}

.ordered-dispense-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.align-dispense-title-logo {
  display: flex;
  justify-content: end;
  align-items: center;
}

@media (max-width: 575px) {
  .ordered-dispense-title {
    display: flex;
    flex-direction: column-reverse;
  }

  .align-dispense-title-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 9rem;
    padding-bottom: 3rem;
  }
}

.slider {
  position: relative;
  height: fit-content;
  width: 100%;
  overflow: hidden;
}

.slider-controls {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 15rem;
  text-align: center;
  transform: translatex(-50%);
  z-index: 1000;
  list-style: none;
  text-align: center;
}

.slider input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-controls label {
  display: inline-block;
  border: 0.2rem solid var(--background);
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.2s linear;
}

#btn-1:checked ~ .slider-controls label[for="btn-1"] {
  background-color: var(--background);
}

#btn-2:checked ~ .slider-controls label[for="btn-2"] {
  background-color: var(--background);
}

#btn-3:checked ~ .slider-controls label[for="btn-3"] {
  background-color: var(--background);
}

/* SLIDES */

.slides {
  list-style: none;
  padding: 0;
  margin: 0;
  height: fit-content;
}

/*.slide {
  position: relative;
  padding: 20px;
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}*/

/* Slide animations */
#btn-1:checked ~ .slides .slide:nth-child(1) {
  animation: swap-in 0.5s forwards;
  -webkit-animation: swap-in 0.5s forwards;
}

#btn-2:checked ~ .slides .slide:nth-child(2) {
  animation: swap-in 0.5s forwards;
  -webkit-animation: swap-in 0.5s forwards;
}

#btn-3:checked ~ .slides .slide:nth-child(3) {
  animation: swap-in 0.5s forwards;
  -webkit-animation: swap-in 0.5s forwards;
}

#btn-1:not(:checked) ~ .slides .slide:nth-child(1) {
  display: none;
}

#btn-2:not(:checked) ~ .slides .slide:nth-child(2) {
  display: none;
}

#btn-3:not(:checked) ~ .slides .slide:nth-child(3) {
  display: none;
}

/* Firefox < 16 */
@-moz-keyframes swap-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes swap-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Internet Explorer */
@-ms-keyframes swap-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Opera < 12.1 */
@-o-keyframes swap-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/* Side-navigation */
.side-nav {
  width: clamp(14rem, 15vw, 17rem);
  height: calc(100vh - 3rem);
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  max-height: 100vh;
  border-right: 0.1rem solid #d6d5d5;
  box-sizing: border-box;
  min-width: 14rem;
}

.logo-nav {
  display: flex;
  height: 90%;
  padding: clamp(0.4rem, 0.6vw, 0.5rem);
  margin-left: -1rem !important;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.side-nav-links {
  list-style: none;
  position: relative;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: var(--background) !important;
  background-color: #ffffff;
  font-weight: 600;
  font-family: QuickSand;
  box-sizing: border-box;
  overflow: hidden;
}

.side-nav-links li:hover a i {
  color: white !important;
}

/* Ensure sidebar items scale properly */
.side-nav .rz-panel-menu {
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

/* Ensure all sidebar content is properly contained */
.side-nav * {
  max-width: 100%;
  box-sizing: border-box;
}

/* General sidebar rules - will be overridden by media queries for specific scaling */
.side-nav .rz-panel-menu .rz-panel-menu-item {
  padding: clamp(0.6rem, 0.9vw, 0.85rem) clamp(0.85rem, 1.1vw, 1.1rem);
  font-size: inherit;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  box-sizing: border-box;
}

.side-nav .rz-panel-menu .rz-panel-menu-item .rz-panel-menu-item-text {
  font-size: inherit;
  font-weight: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Ensure nested menu items also scale */
.side-nav .rz-panel-menu .rz-panel-menu-item .rz-panel-menu-item .rz-panel-menu-item-text {
  font-size: clamp(1em, 1.1em, 1.2em);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  background-color: #ffffff;
  border-bottom: 1px solid #d6d5d5;
  flex-direction: row;
}

.body-margin {
  margin-top: 3.5rem;
  margin-left: clamp(14rem, 15vw, 17rem);
  min-height: calc(100vh - 3.5rem);
  transition: margin 0.7s ease-in-out;
}

.selected {
  background-color: var(--background) !important;
  color: white !important;
  pointer-events: none !important;
}

.selected a > i {
  color: white !important;
}

  .selected a > span {
    color: white !important;
  }

.nav-divider {
  width: calc(100% - 2rem) !important;
  pointer-events: none;
  background-color: gray;
  height: 1px;
  padding: 0 !important;
}

.input-flex {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0.5rem;
  flex-direction: row;
}

.lot-holder {
  display: flex;
  justify-content: left;
  align-items: start;
  flex-direction: row;
  gap: 1rem;
}

.lot-input-holder {
  display: flex;
  justify-content: left;
  align-items: start;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
}

.dosage-form {
  display: flex;
  justify-content: left;
  align-items: start;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
}

.dosage-input {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding-right: 1rem;
  min-width: 18rem;
  max-width: 33.8rem;
}

.add-lot-btn {
  color: var(--background) !important;
  background-color: #FFFFFF !important;
  border: 0.15rem solid var(--background);
  font-size: 1.1rem !important;
  min-width: fit-content !important;
  padding: 0.43rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
}

.samples-info-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid #d6d5d5;
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  width: 100%;
  color: #d6d5d5;
  font-size: 1rem;
  margin: auto;
}

.samples-suggestions-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0;
  margin: 0.5rem 0;
}

.sample-suggestions-label {
    min-width: 9rem;
    font-size: 1rem;
}

.samples-suggestions-holder > li {
    transition: opacity 0.3s ease-in-out;
}


.sample-suggestion {
    border: 1px solid #8ab7cf;
    background-color: aliceblue;
    border-radius: 0.5rem;
    list-style: none;
    padding: 0.5rem;
    width: 100%;
    cursor: pointer;
    margin: 0.25rem 0;
    /*border: 1px solid var(--background);*/
}

/*.sample-suggestion:hover {
  border: 2px solid var(--background);
}*/

.controlled-sample-suggestion {
  border: 1px solid #d6d5d5;
  background-color: #fff2de;
  border-radius: 0.5rem;
  list-style: none;
  padding: 0.5rem;
  width: 100%;
  cursor: pointer;
  margin: 0.25rem 0;
  /*border: 1px solid #cb7f0d;*/
}

/*.controlled-sample-suggestion:hover {
  border: 2px solid #cb7f0d;
}*/

.rz-layout .rz-sidebar {
  position: absolute !important;
  right: 0;
  left: auto;
  top: 3.125rem;
  box-shadow: -10px 0px 20px 0 lightgray;
}

@media only screen and (max-width: 700px) {
  .rz-header, .rz-footer, .rz-body {
    width: calc(100vw - 5.6rem);
  }
  .side-nav {
    width: 5.6rem;
  }
  .side-nav-links {
    align-items: center;
  }
  .side-nav-links li {
    width: fit-content;
  }
  .side-nav-links li a span {
    display: none;
  }
  .body-margin {
    margin-left: 5.6rem;
  }
}

.rz-body {
    background-color: white !important;
  }

.drug-sample-title {
  padding: 0.5rem 1rem;
  font-size: 1.3rem;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.lot-index-number {
  font-size: 1.3rem;
  color: var(--background);
  font-weight: bold;
  min-height: fit-content;
  padding: 0.25rem 0;
  height: fit-content;
  width: 100%;
  text-align: end;
}

.dosage-form-padding-bottom {
  padding-bottom: 0;
}

@media only screen and (max-width: 1008px) {
  .side-nav {
    width: clamp(12rem, 13vw, 15rem);
  }
  
  .body-margin {
    margin-left: clamp(12rem, 13vw, 15rem);
  }
  
  .side-nav-links {
    font-size: clamp(0.8rem, 1vw, 1rem);
  }
  
  .lot-input-holder {
    flex-direction: column;
    align-items: start;
  }

  .dosage-form {
    flex-direction: column;
    align-items: start;
  }

  .dosage-input {
    padding-right: 0;
  }

  .dosage-form-padding-bottom {
    padding-bottom: 1rem;
  }

  .add-lot-btn {
    width: 100%;
  }

  .lot-holder {
    flex-direction: column;
  }
}

@media only screen and (max-width: 640px) {
  .side-nav {
    width: clamp(10rem, 11vw, 13rem);
  }
  
  .body-margin {
    margin-left: clamp(10rem, 11vw, 13rem);
  }
  
  .side-nav-links {
    font-size: clamp(0.7rem, 0.9vw, 0.9rem);
  }
  
  .input-flex {
    flex-direction: column;
  }
}

h1 {
    letter-spacing: normal;
}

.rz-multiselect-trigger .rzi, .rz-dropdown-trigger .rzi {
  color: #206971;
}

.dea-dialog .rz-dialog-titlebar {
  background-color: white;
}

.dea-dialog .rz-dialog {
  border-radius: 1rem;
}

.header-links-holder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.user-header-btn-holder {
  background-color: white;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.user-header-btn {
  background-color: #94BCC1;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: var(--background);
  font-weight: bold;
}

/* 125% scaling adjustments for user initials */
@media screen and (min-resolution: 120dpi) and (max-resolution: 143dpi) {
  .user-header-btn {
    height: 2.2rem;
    width: 2.2rem;
    font-size: 1rem;
  }
  
  .user-header-btn-holder {
    height: 2.5rem;
    width: 2.5rem;
  }
}

/* 150% scaling adjustments for user initials */
@media screen and (min-resolution: 144dpi) {
  .user-header-btn {
    height: 1.9rem;
    width: 1.9rem;
    font-size: 0.85rem;
  }
}

.footer-holder {
  height: 5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  border-top: 1px solid #d6d5d5;
  gap: 2rem;
  justify-content: start;
}

.footer-links {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 1.5rem;
  width: fit-content;
}

.footer-text {
  font-family: QuickSand;
  color: var(--background);
  font-size: 1rem;
  font-weight: 600;
}

/* 125% scaling adjustments for footer text */
@media screen and (min-resolution: 120dpi) and (max-resolution: 143dpi) {
  .footer-text {
    font-size: 0.85rem !important;
  }
}

/* 150% scaling adjustments for footer text */
@media screen and (min-resolution: 144dpi) {
  .footer-text {
    font-size: 0.75rem !important;
  }
}

/* 125% scaling adjustments for footer height */
@media screen and (min-resolution: 120dpi) and (max-resolution: 143dpi) {
  .footer-holder {
    height: 4rem !important;
    padding: 0 1.5rem !important;
    gap: 1.5rem !important;
  }

  /* Adjust dashboard height to account for reduced header and footer heights */
  .reset-top-on-sidebar {
    min-height: calc(100vh - 7rem) !important;
    height: calc(100vh - 7rem) !important;
  }


  .registration-content-page {
    min-height: calc(100vh - 4rem) !important;
    height: calc(100vh - 4rem) !important;
  }
}

/* 150% scaling adjustments for footer height */
@media screen and (min-resolution: 144dpi) {
  .footer-holder {
    height: 3.5rem !important;
    padding: 0 1.25rem !important;
    gap: 1.25rem !important;
  }

  /* Adjust dashboard height to account for reduced header and footer heights */
  .reset-top-on-sidebar {
    min-height: calc(100vh - 6rem) !important;
    height: calc(100vh - 6rem) !important;
  }
}

@media only screen and (max-width: 972px) {
  .footer-holder {
    flex-direction: column;
    align-items: start;
    padding: 0.5rem 1rem;
    gap: 0.25rem;
  }

  .footer-links {
    width: 100%;
  }

  .footer-text {
    font-size: 0.85rem;
  }
}

.fade-container {
  position: relative;
}

.fade-content {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade-content.active {
  animation: swap-in 0.75s forwards;
  -webkit-animation: swap-in 0.75s forwards;
}

.disable-drug-sample-editing {
  pointer-events: none;
}

.disable-drug-sample-editing > i {
  opacity: 0.25;
}

.disable-drug-sample-text {
  opacity: 0.5;
}

.edit-drug-sample-marker {
  position: absolute;
  width: fit-content;
  height: fit-content;
  top: 0;
  left: 4rem;
  background-color: var(--background);
  color: white;
  padding: 0 1rem;
  border-radius: 1rem;
  font-weight: bold;
  transform: translate(-50%, -50%);
}

.rz-calendar .rz-inputtext {
  font-size: 1.1rem;
  height: 100%;
}

.custom-date-picker .rz-calendar .rz-inputtext {
  font-size: 1rem;
  height: auto;
}

.new-prescriber-dialog {
  width: 48rem !important;
}

.new-prescriber-dialog > .rz-dialog-content {
  padding: 0 !important;
}

  .new-prescriber-dialog > .rz-dialog-content > .row > .rz-form {
    padding: 0 !important;
  }

.new-prescriber-dialog > div:first-child {
    display: none;
  }

.add-prescriber-link {
  cursor: pointer;
  text-decoration: underline;
  color: var(--background);
}

  .add-prescriber-link:hover {
    color: #94BCC1;
  }

.rz-growl-message-error .rz-growl-item {
  background-color: #E25E3E;
  font-size: 1.1rem;
}

.rz-growl-message-success .rz-growl-item {
  background-color: #206971;
  font-size: 1.1rem;
}

.samples-suggestions-holder:hover > li:not(:hover) {
  opacity: 0.35 !important;
}

.add-new-lot-dialog > .rz-dialog-content {
  padding-top: 0.25rem !important;
  font-family: QuickSand;
}

.add-new-lot-dialog > div:first-child {
  display: none;
}

.swing-in-top-fwd {
  -webkit-animation: slide-in-elliptic-bottom-fwd 0.75s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  -moz-animation: slide-in-elliptic-bottom-fwd 0.75s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  -ms-animation: slide-in-elliptic-bottom-fwd 0.75s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  -o-animation: slide-in-elliptic-bottom-fwd 0.75s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-in-elliptic-bottom-fwd 0.75s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/**
 * ----------------------------------------
 * animation slide-in-elliptic-bottom-fwd
 * ----------------------------------------
 */
@keyframes slide-in-elliptic-bottom-fwd {
  0% {
    -webkit-transform: translateY(800px) rotateX(30deg) scale(0);
    -moz-transform: translateY(800px) rotateX(30deg) scale(0);
    -ms-transform: translateY(800px) rotateX(30deg) scale(0);
    -o-transform: translateY(800px) rotateX(30deg) scale(0);
    transform: translateY(800px) rotateX(30deg) scale(0);
    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0) rotateX(0) scale(1);
    -moz-transform: translateY(0) rotateX(0) scale(1);
    -ms-transform: translateY(0) rotateX(0) scale(1);
    -o-transform: translateY(0) rotateX(0) scale(1);
    transform: translateY(0) rotateX(0) scale(1);
    -webkit-transform-origin: 50% -1400px;
    -moz-transform-origin: 50% -1400px;
    -ms-transform-origin: 50% -1400px;
    -o-transform-origin: 50% -1400px;
    transform-origin: 50% -1400px;
    opacity: 1;
  }
}

.rz-autocomplete-input {
    font-size: 1.1rem;
    height: 100%;
}

.rz-autocomplete-panel {
  max-height: 340px !important;
  overflow: hidden;
}

.rz-autocomplete-list-panel {
  max-height: 340px !important;
  overflow: auto;
}

.load-more-patients-link {
  cursor: pointer;
  text-decoration: underline;
  padding-bottom: 0.5rem;
  color: var(--background);
}

.load-more-patients-link:hover {
    color: #94BCC1;
}

.description-text {
    overflow-wrap: anywhere;
}
.parent {
  /* You might not need to style the parent directly if the row and col classes provide dimensions */
  overflow: auto; /* Enable scrolling for overflow content */
  border: 1px solid #ccc; /* Optional: Add a border for visualization */
}

.child {
  /* Set the width and height of the child content */
  width: 1000px; /* Adjust according to your content */
  height: 800px; /* Adjust according to your content */
}
.inventory-buttons-flex-direction {
  flex-direction: row;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .inventory-buttons-flex-direction {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}

.rz-chkbox-box {
  border-radius: 0.5rem;
}

.rz-chkbox-box.rz-state-active {
  background-color: var(--background) !important;
}

.inventory-on-hand-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2px;
  margin-bottom: 0.5rem;
  gap: 1rem;
}

@media (max-width: 540px) {
  .inventory-on-hand-filters {
    flex-direction: column;
    justify-content: center;
    align-items: end;
    gap: 0.5rem;
  }
}

.rz-grid-table thead th {
  background-color: var(--background);
}

.rz-column-title {
  color: white !important;
  font-weight: 400 !important;
}

.inventory-drop-down-flex-direction {
  flex-direction: row;
}

@media (max-width: 1200px) {
  .inventory-drop-down-flex-direction {
    flex-direction: column;
  }
}

.receive-buttons-form {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

@media (max-width: 740px) {
  .receive-buttons-form {
     flex-direction: column;
  }
}

/*Loader*/
/* HTML: <div class="loader"></div> */
.loader-holder {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}

.loader-parent {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--background);
  --_m: conic-gradient(transparent 10%,#000), linear-gradient(0, #000 0%, #000) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}

@keyframes l3 {
  to {
    transform: rotate(1turn)
  }
}

/* HTML: <div class="loader"></div> */
.loader-text {
  --w: 6.8ch;
  font-weight: bold;
  font-family: monospace;
  font-size: 30px;
  line-height: 1.3rem;
  letter-spacing: var(--w);
  width: var(--w);
  overflow: hidden;
  white-space: nowrap;
  color: transparent;
  text-shadow: calc( 0*var(--w)) 0 var(--background),calc(-1*var(--w)) 0 var(--background),calc(-2*var(--w)) 0 var(--background),calc(-3*var(--w)) 0 var(--background),calc(-4*var(--w)) 0 var(--background), calc(-5*var(--w)) 0 var(--background),calc(-6*var(--w)) 0 var(--background),calc(-7*var(--w)) 0 var(--background),calc(-8*var(--w)) 0 var(--background),calc(-9*var(--w)) 0 var(--background);
}

  .loader-text:before {
    content: "Loading...";
    font-size: 1.3rem;
  }

@keyframes l20 {
  9.09% {
    text-shadow: calc( 0*var(--w)) -10px var(--background),calc(-1*var(--w)) 0 var(--background),calc(-2*var(--w)) 0 var(--background),calc(-3*var(--w)) 0 var(--background),calc(-4*var(--w)) 0 var(--background), calc(-5*var(--w)) 0 var(--background),calc(-6*var(--w)) 0 var(--background),calc(-7*var(--w)) 0 var(--background),calc(-8*var(--w)) 0 var(--background),calc(-9*var(--w)) 0 var(--background)
  }

  18.18% {
    text-shadow: calc( 0*var(--w)) 0 var(--background),calc(-1*var(--w)) -10px var(--background),calc(-2*var(--w)) 0 var(--background),calc(-3*var(--w)) 0 var(--background),calc(-4*var(--w)) 0 var(--background), calc(-5*var(--w)) 0 var(--background),calc(-6*var(--w)) 0 var(--background),calc(-7*var(--w)) 0 var(--background),calc(-8*var(--w)) 0 var(--background),calc(-9*var(--w)) 0 var(--background)
  }

  27.27% {
    text-shadow: calc( 0*var(--w)) 0 var(--background),calc(-1*var(--w)) 0 var(--background),calc(-2*var(--w)) -10px var(--background),calc(-3*var(--w)) 0 var(--background),calc(-4*var(--w)) 0 var(--background), calc(-5*var(--w)) 0 var(--background),calc(-6*var(--w)) 0 var(--background),calc(-7*var(--w)) 0 var(--background),calc(-8*var(--w)) 0 var(--background),calc(-9*var(--w)) 0 var(--background)
  }

  36.36% {
    text-shadow: calc( 0*var(--w)) 0 var(--background),calc(-1*var(--w)) 0 var(--background),calc(-2*var(--w)) 0 var(--background),calc(-3*var(--w)) -10px var(--background),calc(-4*var(--w)) 0 var(--background), calc(-5*var(--w)) 0 var(--background),calc(-6*var(--w)) 0 var(--background),calc(-7*var(--w)) 0 var(--background),calc(-8*var(--w)) 0 var(--background),calc(-9*var(--w)) 0 var(--background)
  }

  45.45% {
    text-shadow: calc( 0*var(--w)) 0 var(--background),calc(-1*var(--w)) 0 var(--background),calc(-2*var(--w)) 0 var(--background),calc(-3*var(--w)) 0 var(--background),calc(-4*var(--w)) -10px var(--background), calc(-5*var(--w)) 0 var(--background),calc(-6*var(--w)) 0 var(--background),calc(-7*var(--w)) 0 var(--background),calc(-8*var(--w)) 0 var(--background),calc(-9*var(--w)) 0 var(--background)
  }

  54.54% {
    text-shadow: calc( 0*var(--w)) 0 var(--background),calc(-1*var(--w)) 0 var(--background),calc(-2*var(--w)) 0 var(--background),calc(-3*var(--w)) 0 var(--background),calc(-4*var(--w)) 0 var(--background), calc(-5*var(--w)) -10px var(--background),calc(-6*var(--w)) 0 var(--background),calc(-7*var(--w)) 0 var(--background),calc(-8*var(--w)) 0 var(--background),calc(-9*var(--w)) 0 var(--background)
  }

  63.63% {
    text-shadow: calc( 0*var(--w)) 0 var(--background),calc(-1*var(--w)) 0 var(--background),calc(-2*var(--w)) 0 var(--background),calc(-3*var(--w)) 0 var(--background),calc(-4*var(--w)) 0 var(--background), calc(-5*var(--w)) 0 var(--background),calc(-6*var(--w)) -10px var(--background),calc(-7*var(--w)) 0 var(--background),calc(-8*var(--w)) 0 var(--background),calc(-9*var(--w)) 0 var(--background)
  }

  72.72% {
    text-shadow: calc( 0*var(--w)) 0 var(--background),calc(-1*var(--w)) 0 var(--background),calc(-2*var(--w)) 0 var(--background),calc(-3*var(--w)) 0 var(--background),calc(-4*var(--w)) 0 var(--background), calc(-5*var(--w)) 0 var(--background),calc(-6*var(--w)) 0 var(--background),calc(-7*var(--w)) -10px var(--background),calc(-8*var(--w)) 0 var(--background),calc(-9*var(--w)) 0 var(--background)
  }

  81.81% {
    text-shadow: calc( 0*var(--w)) 0 var(--background),calc(-1*var(--w)) 0 var(--background),calc(-2*var(--w)) 0 var(--background),calc(-3*var(--w)) 0 var(--background),calc(-4*var(--w)) 0 var(--background), calc(-5*var(--w)) 0 var(--background),calc(-6*var(--w)) 0 var(--background),calc(-7*var(--w)) 0 var(--background),calc(-8*var(--w)) -10px var(--background),calc(-9*var(--w)) 0 var(--background)
  }

  90.90% {
    text-shadow: calc( 0*var(--w)) 0 var(--background),calc(-1*var(--w)) 0 var(--background),calc(-2*var(--w)) 0 var(--background),calc(-3*var(--w)) 0 var(--background),calc(-4*var(--w)) 0 var(--background), calc(-5*var(--w)) 0 var(--background),calc(-6*var(--w)) 0 var(--background),calc(-7*var(--w)) 0 var(--background),calc(-8*var(--w)) 0 var(--background),calc(-9*var(--w)) -10px var(--background)
  }
}

#DosingInstructions {
    font-size: 1rem;
    height: auto;
}

.inventory-on-hand-search-textbox {
  width: calc(100% - 4rem) !important;
  border-radius: 4px 0 0 4px;
}

.rz-grid-table td .rz-cell-data {
  color: var(--background);
  font-size: 1rem;
  text-wrap: initial;
}

.rz-grid-table thead th .rz-column-title-content {
  font-size: 1.1rem;
  padding: 0.5rem 0;
}

.rz-grid-table thead th .rz-column-title {
    text-transform: none;
}

.rz-layout {
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
                     "rz-header rz-header"
                     "rz-body rz-sidebar "
                     "rz-footer rz-footer";
}

.rz-layout::-webkit-scrollbar, .rz-layout ::-webkit-scrollbar, .rz-scrollbars::-webkit-scrollbar, .rz-scrollbars ::-webkit-scrollbar {
  width: 0.8rem;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 0.8rem;
}

/* Internet Explorer */
* {
  scrollbar-base-color: var(--background);
}

.rz-layout::-webkit-scrollbar-thumb, .rz-layout ::-webkit-scrollbar-thumb, .rz-scrollbars::-webkit-scrollbar-thumb, .rz-scrollbars ::-webkit-scrollbar-thumb {
  background-color: var(--background);
  border-radius: 20px;
  border: 2px solid white;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--background) !important;
  border-radius: 20px;
  border: 2px solid white;
}

.vertical-align-data-grid > .rz-data-grid-data > table > tbody > tr > td {
  padding: 1rem 0.5rem;
}

  .vertical-align-data-grid > .rz-data-grid-data > table > tbody > tr > td > span {
    min-height: 2.25rem;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.vertical-align-data-grid-nowrap > .rz-data-grid-data > table > tbody > tr > td:nth-child(2) > span,
.vertical-align-data-grid-nowrap > .rz-data-grid-data > table > tbody > tr > td:nth-child(5) > span {
    display: inline-block !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    height: 100% !important;
    line-height: 2.25rem !important;
}

.recent-dispense-vertical-align-data-grid > .rz-data-grid-data > table > tbody > tr > td {
  min-height: 2.625rem;
  vertical-align: middle;
  padding: 1rem 0.5rem;
}

  .recent-dispense-vertical-align-data-grid > .rz-data-grid-data > table > tbody > tr > td > span {
    min-height: 42px;
    display: flex;
    align-items: center;
  }

.dispense-search-brand-column-size > .rz-data-grid-data > table > tbody > tr > td:nth-child(3) > span > div > span {
    display: inline-block !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    height: 100% !important;
    line-height: 2.25rem !important;
}

.dispense-search-expanded-brand-column-size > .rz-data-grid-data > table > tbody > tr > td:nth-child(3) > span > div > span {
    display: inline-block !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    height: 100% !important;
    /*line-height: 2.25rem !important;*/
}


/*.vertical-align-data-grid-5 > .rz-data-grid-data > table > tbody > tr > td:nth-child(-n+5) {
  vertical-align: top;
}

  .vertical-align-data-grid-5 > .rz-data-grid-data > table > tbody > tr > td:nth-child(-n+5) > span {
    min-height: 2.25rem;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }*/
/**
 * ----------------------------------------
 * animation shake-horizontal
 * ----------------------------------------
 */
.full-count-data-grid > .rz-data-grid-data > table > tbody > tr {
  animation-delay: 0s;
}

.item-pointer {
  content: "»"
}

.shake-horizontal {
  overflow: hidden;
}

.shake-horizontal > td  {
  pointer-events: none;
}

  .shake-horizontal > td > span {
    -webkit-animation: shake-horizontal 1.2s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    animation: shake-horizontal 1.2s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    animation-delay: 0s;
  }

@-webkit-keyframes shake-horizontal {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}

@keyframes shake-horizontal {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}

.edit-error-message > .rz-messages-error {
  position: absolute;
  top: 2.25rem;
  left: 0;
  right: 0;
  width: fit-content;
  margin-left: 2px;
  margin-right: auto;
  z-index: 1;
  background: #C41E3A !important;
  border-radius: 0 0 0.5rem 0.5rem;
  color: white !important;
  padding: 0 0.5rem;
}

.quantity-column-justify-content > span {
  justify-content: end !important;
}

@media (max-width: 1366px) {
    .quantity-column-justify-content {
        vertical-align: top;
    }
}

.column-justify-content > span {
  justify-content: start !important;
}

.column-justify-content {
    vertical-align: top;
}

.lot-expiry-justify-content {
    vertical-align: top;
}

.next-unconfirmed-item-outline {
  outline: transparent solid 5px;
  outline-offset: -4px;
  outline-style: ridge;
  animation: outlineAnimation 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

@keyframes outlineAnimation {
  0% {
    outline-color: transparent;
  }

  100% {
    outline-color: mediumaquamarine;
  }
}

.new-inventory-items-number {
  color: white;
  border-radius: 50%;
  background-color: red;
  width: 1.2rem;
  height: 1.2rem;
  text-align: center;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -0.5rem;
  left: -2.25rem;
  font-weight: bold;
}

.reset-top-on-sidebar > .rz-sidebar {
  top: 0 !important;
}

.rz-selectbutton .rz-button.rz-button-sm.rz-state-active {
  background-color: var(--background) !important;
  border: 1px solid var(--background) !important;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rz-selectbutton .rz-button.rz-button-sm {
  border: 1px solid var(--background) !important;
  color: var(--background);
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rz-datafilter-property {
  max-width: 20rem;
}

.rz-datafilter-operator {
  max-width: 12rem;
}

.rz-datafilter .rz-datafilter-editor {
  max-width: 28rem;
}

.details-title {
  color: white;
  font-size: 1.3rem;
  max-width: 16rem;
  max-height: 100%;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

.rz-progressbar-determinate.rz-progressbar-primary .rz-progressbar-value {
  background-color: var(--background) !important;
}

.rz-progressbar {
  background-color: #b3cacc !important;
}

.rz-progressbar-circular-background {
  stroke: #d6d5d5;
}

.top-dispensed-samples-expand-button-holder {
  color: white;
  padding: 0.15rem;
  border-radius: 0.5rem;
  width: 28px;
  height: 28px;
  font-size: 1.7rem;
  display: flex;
  justify-content: start;
  align-items: end;
}

.top-dispensed-samples {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background-color: white;
    border: 1px solid #d6d5d5;
    border-radius: 1.5rem;
}

.top-dispensed-samples-expanded {
  max-width: none !important;
  width: 100% !important;
  height: fit-content !important;
  min-height: 100% !important;
  padding: 1rem;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* Override dashboard-card constraints when RecallManager is expanded */
.top-dispensed-samples-expanded .dashboard-card {
  max-width: none !important;
  width: 100% !important;
  min-width: none !important;
  flex: none !important;
  flex-basis: auto !important;
  flex-grow: 1 !important;
  flex-shrink: 0 !important;
}

/* Ensure expanded RecallManager content can use full width */
.top-dispensed-samples-expanded > * {
  width: 100% !important;
  max-width: none !important;
}

.rz-cell-data > div {
  word-wrap: break-word; /* IE */
}

.max-width-4rem {
  max-width: 4rem;
}

.display-block {
  display: block !important;
}

.title-content-padding > .rz-datatable > .rz-data-grid-data > table > thead > tr > th > div > .rz-column-title > .rz-column-title-content {
  padding: 0 !important;
}

.expiring-menu > .rz-menu {
  background-color: transparent;
}

.expiring-menu > .rz-menu > .rz-navigation-item > .rz-navigation-item-wrapper > .rz-navigation-item-link {
  padding: 0 !important;
  white-space: normal;        /* allow wrapping */
}

  .expiring-menu > .rz-menu > .rz-navigation-item > .rz-navigation-item-wrapper > .rz-navigation-item-link > .rz-navigation-item-text {
    color: white;
    font-size: var(--samples-label-size) !important;
    /* allow wrapping and breaking long words */
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
  }

  .expiring-menu > .rz-menu > .rz-navigation-item > .rz-navigation-item-wrapper > .rz-navigation-item-link > .rz-navigation-item-icon-children {
    display: none !important;
    visibility: hidden !important;
  }

.expiring-prodcuts-menu > .rz-menu {
  background-color: transparent;
}

.expiring-prodcuts-menu > .rz-menu > .rz-navigation-item > .rz-navigation-item-wrapper > .rz-navigation-item-link {
  padding: 0 !important;
}

.expiring-prodcuts-menu > .rz-menu > .rz-navigation-item > .rz-navigation-item-wrapper > .rz-navigation-item-link > .rz-navigation-item-text {
  color: var(--background);
  font-size: 1.1rem;
}

.expiring-prodcuts-menu > .rz-menu > .rz-navigation-item > .rz-navigation-item-wrapper > .rz-navigation-item-link > .rz-navigation-item-icon-children {
  color: var(--background);
  font-size: 2rem;
  display: block;
  line-height: 1.1;
}

.logo-nav-img:hover {
    cursor: pointer;
}

.rz-navigation-item-icon-children {
    visibility: hidden;
}

  .rz-panel-menu .rz-navigation-menu .rz-navigation-item-wrapper {
    background-color: transparent;
  }

.rz-panel-menu .rz-navigation-item-wrapper {
  background-color: transparent;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.rz-panel-menu .rz-navigation-menu .rz-navigation-item-wrapper:hover {
  background-color: #8ab7cf;
}

.panel-menu-parent-item {
    pointer-events: none;
}

.panel-menu-parent-item:hover {
    background-color: transparent;
}

.rz-panel-menu .rz-navigation-item {
  border-bottom: 0.1rem solid #8ab7cf;
}

.rz-panel-menu .rz-navigation-item-icon {
  font-size: 2.5rem;
  margin-right: 1.5rem;
}

.rz-panel-menu .rz-navigation-menu .rz-navigation-item-icon {
  font-size: 2rem;
  margin-left: -1rem;
  margin-right: 1.5rem;
}

.sub-selected {
  background-color: #adcede !important;
  color: var(--background) !important;
  pointer-events: none !important;
}

.rz-navigation-item {
    cursor: pointer;
}

.dispense-over-dialog > .rz-dialog-content {
  padding-top: 0.25rem !important;
  }
  
.rz-tabview-nav {
  gap: 0.25rem;
}

.dispense-over-dialog > div:first-child {
  display: none;
}

.dispense-over-dialog > .rz-dialog-content > div > div {
  text-align: start !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.rz-row-toggler {
  font-size: 2.2rem !important;
  color: var(--background);
}

.rz-tabview-selected {
  color: var(--background) !important;
}

.recent-dispense-dropdown-filter {
  position: relative;
  display: inline-block;
}

  .recent-dispense-dropdown-filter .recent-dispense-dropdown-filter-menu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
    padding: 0.5rem;
    z-index: 10;
    width: 200px; /* Adjust as needed */
  }

  .recent-dispense-dropdown-filter .recent-dispense-dropdown-filter-item {
    margin-bottom: 0.5rem;
  }

.recent-dispense-dropdown-filter .dropdown-toggle::after {
  margin-left: 0.5rem;
}

.rz-alert .rz-alert-item {
  align-items: center;
}

.rz-alert .rz-alert-icon {
    font-size: 2rem;
}

.clickable-dashboard-card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.clickable-dashboard-card-overlay:hover {
  cursor: pointer;
  background-image: linear-gradient(transparent 10%, #105980 25%);
  border-radius: 1rem;
  opacity: 1;
}

.rz-multiselect-items-wrapper {
    max-height: 400px !important;
}

.rz-button-text {
    line-height: 1.4rem;
}

.order-dropdown {
  display: block;
  width: fit-content;
  margin-left: 1rem;
  position: relative;
}

.order-dropdown:before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0);
  width: 1rem;
  top: -0.25rem;
  bottom: -0.25rem;
  left: -1rem;
  border: 0;
  border-left: 1px solid #c6cbd2;
}

.order-dropdown:after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0);
  width: 0.9rem;
  top: 0;
  bottom: 50%;
  left: -1rem;
  border: 0;
  border-bottom: 1px solid #c6cbd2;
}

.add-order-dropdown {
  display: block;
  width: calc(100% - 1rem);
  margin-left: 1rem;
  position: relative;
}

.add-order-dropdown:before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0);
  width: 0.9rem;
  top: -0.25rem;
  bottom: 50%;
  left: -1rem;
  border: 0;
  border-left: 1px solid #c6cbd2;
}

.add-order-dropdown:after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0);
  width: 0.9rem;
  top: 0;
  bottom: 50%;
  left: -1rem;
  border: 0;
  border-bottom: 1px solid #c6cbd2;
}

.rz-tabview-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--background);
}

.rz-alert-content {
  font-size: 1.3rem;
}

.rz-alert-icon {
    color: gold !important;
}

.rz-timeline-point {
    height: 100%;
    width: 100%;
    padding: 0.75rem;
}

.rz-timeline-point-info {
    background-color: var(--background);
}

.rz-timeline-item:before {
    background-color: var(--background);
}

.rz-timeline-point-outlined.rz-timeline-point-info {
    color: var(--background);
    border: 3px solid var(--background);
    cursor: pointer;
}

.rz-timeline-content-end {
    margin-top: 0.75rem;
}

.quantity-holder {
    display: flex;
    justify-content: end;
    align-items: start;
    flex-direction: row;
    gap: 1rem;
}

.quantity-header {
    padding-right: 0.75rem !important;
}

.long-column-header {
    overflow-wrap: anywhere;
}

#ddUpload .rz-fileupload-buttonbar .rz-fileupload-choose {
    text-align: center;
    font-size: 1.3rem;
    padding: 0.8rem;
    background-color: var(--background);
}

#ddUpload {
    width: 100%;
}

.rz-grid-table .offer-header {
    background-color: var(--rz-grid-stripe-background-color) !important;
}

.offer-grid {
    padding: 1rem !important;
}

.rz-dialog-title {
    color: var(--background);
    font-weight: bold;
}

.rz-fileupload-buttonbar {
    padding: 0;
}

.rz-background-color-primary-light {
    background-color: var(--background) !important;
}

.rz-color-on-primary-lighter {
    background-color: lightslategray !important;
}

.offers-accordion .rz-accordion-header {
    background-color: var(--background) !important;
}

.offers-accordion .rz-accordion-content {
    background-color: var(--background) !important;
}
.offer-select {
    width: auto;
}
.offer-select .rz-button {
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 30px !important;
}
.offer-select .rz-button.rz-state-active {
    background-color: var(--background) !important;
}
.offer-select .rz-button:not(:last-child) {
    margin-right: 40px;
}

.hierarchy-background {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 250px solid transparent;
    border-right: 250px solid transparent;
    border-bottom: 350px solid var(--background);
    z-index: -1;
}

.rz-fileupload-choose {
    width: 100%;
}

.rz-datepicker-calendar .rz-state-disabled {
    visibility: hidden;
}

.rz-grid-table thead th .rz-column-title-content {
    white-space: normal;
}

.rz-progressbar-label-value {
    color: white;
}

.date-picker-div .rz-datepicker input {
    font-size: 1.1rem;
    height: 100%;
    border: none !important;
}

.small-font-date .rz-datepicker input {
    font-size: 1rem;
    height: 100%;
    border: none !important;
}

.regular-date-div .rz-datepicker input {
    font-size: 1rem;
    height: auto;
    line-height: 1.25rem !important;
    border: none !important;
    padding-inline-end: 0 !important;
}

.date-picker-div .rz-datepicker {
    padding: 0.1rem;
}

.small-font-date .rz-datepicker {
    padding: 0.1rem;
}

.regular-date-div .rz-datepicker {
    padding: 0.1rem;
}

.rz-calendar .rz-inputtext {
    font-size: 0.9rem;
}

.rz-numeric-button {
    background-color: var(--background);
}

.rz-datepicker-trigger .rzi-calendar, .rz-datepicker-trigger .rzi-time {
    color: var(--background);
}

.rz-calendar-view td .rz-state-default.rz-state-focused {
    background-color: var(--background);
}

.valid.modified:not([type=checkbox]) {
    border-radius: 0.5rem;
}

.hierarchy-accordion {
    width: 100%;
    color: var(--background);
    padding-left: 1rem;
}

.hierarchy-accordion .rz-accordion-content {
    padding-inline: 0 1rem;
    background-color: unset;
}

.hierarchy-accordion .rz-accordion-header {
    background-color: unset;
}

.hierarchy-accordion .rz-accordion-header > a {
    font-size: 1rem;
}

.rz-pager-page.rz-state-active {
    color: var(--background);
}

.rz-dropdown-item {
    font-family: QuickSand;
}

.rz-calendar {
    font-family: QuickSand;
}

.rz-multiselect-panel {
    font-family: QuickSand;
}

.rz-heading {
    font-family: QuickSand;
}

.receive-shipment-dialog {
    width: auto !important;
    height: auto !important;
    max-width: 75rem;
    max-height: 55rem;
}

.rz-tabview-top > .rz-tabview-nav .rz-tabview-selected {
    border-bottom: 0.15rem solid var(--background);
    border-top: none;
    border-left: none;
    border-right: none;
    flex-shrink: 0;
    height: fit-content;
}

.rz-tabview-top > .rz-tabview-nav li {
    border-bottom: 0.15rem solid #808080;
    border-top: none;
    border-left: none;
    border-right: none;
    background-color: transparent;
    flex-shrink: 0;
    height: fit-content;
}

.rz-tabview-top > .rz-tabview-nav li > a > span {
    color: #808080;
}

.rz-tabview-top > .rz-tabview-nav .rz-tabview-selected > a > span {
    color: var(--background);
}

.rz-tabview-panels {
    border: none;
}

.rz-tabview-panel {
    padding: 1rem 0 0 0;
}

.sc-table {
    background-color: #E6ECEF !important;
}

.sc-table .rz-column-title {
    color: #0F5D87 !important;
}

.align-top {
    vertical-align: top;
    padding-top: 0;
}

/* HS LANDING PAGE */

.hs-landing h1, .hs-landing h2, .hs-landing h3, .hs-landing h4, .hs-landing h5, .hs-landing h6 {
    color: #263777;
}

.hs-landing {
    color: #FFFFFF;
}


.hs-landing .container {
        width: 100% !important;
        max-width: 1500px !important;
        /*padding: 0 !important;*/
    }

.hs-landing .container.full {
        width: calc(100vw - 70px) !important;
        max-width: unset !important;
        /*padding: 0 !important;*/
    }

.homepage-hero {
    width: 100vw;
    position: relative;
    display: flex;
    flex-grow: 1;
}

@media screen and (min-resolution: 120dpi) and (max-resolution: 143dpi) {
    .homepage-hero {
        max-height: 35rem;
    }
}


.home-nav {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 35px;
}

@media screen and (max-width: 1024px) {
    .home-nav {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }
}

.nav.blue-bar, .nav.grey-bar {
    position: relative;
    z-index: 5;
    padding: 10px !important;
    margin-top: 35px;
    height: auto;
    gap: 35px;
    -webkit-border-radius: 9999px;
    -moz-border-radius: 9999px;
    border-radius: 9999px;
}

.nav.blue-bar {
    background: #00B7F1;
    opacity: 0.9;
}

.nav.grey-bar {
    background: #414241;
    opacity: 0.9;
}

.nav.blue-bar a, .nav.grey-bar a {
    color: #FFFFFF !important;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    -webkit-border-radius: 9999px;
    -moz-border-radius: 9999px;
    border-radius: 9999px;
    cursor: pointer;
    flex-grow: 1;
    justify-content: center;
    text-align: center;
    font-weight: 500;
}

.nav.blue-bar a:hover, .nav.grey-bar a:hover {
    color: #FFFFFF !important;
    background: rgba(5,18,84,0.12);
}

.hs-masthead {
    padding: 2rem;
    width: 100%;
    background: #FFFFFF;
}

.nav-hs-masthead {
    gap: 2rem;
}

.nav-hs-masthead a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.35rem;
}

.nav-hs-masthead a:hover {
    color: #3D5BA3;
    text-decoration: underline;
}

.nav-hs-masthead h3 {
    font-weight: 700;
    text-align: right;
}

.nav-hs-masthead h3 small {
    display: block;
    font-weight: 500;
    font-size: 65%;
}

@media screen and (max-width: 1200px) {
    .nav-hs-masthead a {
        font-size: 1.15rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-hs-masthead a, .nav-hs-masthead h3 {
        margin: 18px 0 !important;
    }
}

@media screen and (max-width: 576px) {
    .hs-masthead {
        padding: 24px 0.75rem 18px 0.75rem;
    }
}


/**/

.srxslider {
    width: 100vw;
    position: relative;
    /*z-index: -1;*/
    /*display: flex;*/
    flex-grow: 1;
    overflow: hidden;
    display: none;
}

.srxslider.slick-initialized {
    display: flex;
}

.srxslider .slick-list, .srxslider .slick-track, .srxslider .slick-slide, .srxslider .slick-slide div {
    height: 100% !important;
    min-height: 100% !important;
    flex-grow: 1;
}

.srxslider .container {
    width: 100vw !important;
    max-width: unset !important;
    padding: 0 !important;
}

@media screen and (max-width: 1024px) {
    .srxslider {
        overflow: visible;
    }

    .srxslider .slick-list, .srxslider .slick-track, .srxslider .slick-slide, .srxslider .slick-slide div {
        height: unset !important;
        min-height: unset !important;
        flex-grow: 0;
    }
}


.srxslider .slick-slide .main-content {
    padding: 6vh 4% !important;
    max-width: unset;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    .srxslider .slick-slide .main-content {
        padding: 35px 35px 18px 35px;
    }
}

.srxslider .slick-slide .main-content h3 {
    font-size: clamp(2.85rem, 4.65vw, 3.65rem);
    font-weight: 700;
    line-height: 1;
    flex: 100%;
}

.srxslider .slick-slide .main-content h3 span {
    color: #263777;
}

.srxslider .slick-slide .main-content h3 small {
    font-size: clamp(1.5rem, 1.65vw, 1.85rem);
    display: block;
    font-weight: 300;
    line-height: 1;
    margin: 1.65rem 0;
    flex: 100%;
}

.srxslider .slick-slide .img-content {
    height: 100% !important;
    flex-grow: 1;
    min-height: 740px !important;
}

@media screen and (max-width: 1024px) {
    .srxslider .slick-slide .img-content {
        min-height: 665px !important;
    }
}

@media screen and (max-width: 768px) {
    .srxslider .slick-slide .img-content {
        min-height: 465px !important;
    }
}


@media screen and (max-width: 1024px) {
    .nav.blue-bar, .nav.grey-bar {
        gap: 6px;
        margin-top: 12px;
        -webkit-border-radius: 35px;
        -moz-border-radius: 35px;
        border-radius: 35px;
    }
}

@media screen and (max-width: 768px) {
    .nav.blue-bar, .nav.grey-bar {
        margin-top: 12px;
        -webkit-border-radius: 35px;
        -moz-border-radius: 35px;
        border-radius: 35px;
    }
}
/*@media screen and (max-width: 768px) {
.nav.blue-bar {
	padding-top: 12px;
	padding-bottom: 12px;
}	
}*/



/**** LANDING PAGE : FOOTER ****/

.hs-mastfoot {
    padding: 18px;
    background: #FFFFFF;
    color: #000000;
}

.hs-mastfoot p, .hs-mastfoot a {
    font-size: clamp(1rem, 3.5vw, 1.35rem);
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
}

.hs-mastfoot p {
    margin: 0;
    padding: 0;
}

.hs-mastfoot a {
    color: #000000;
}

.hs-mastfoot a:hover {
    color: #0089BE;
}

@media screen and (max-width: 576px) {
    .hs-mastfoot {
        padding: 12px;
    }
}

.info {
    height: 100% !important;
    overflow-x: hidden !important
}

.main-contain {
    overflow-x: hidden !important
}
.info header.masthead h1, .info header.masthead h2, .info header.masthead h3, .info header.masthead h4, .info header.masthead h5, .info header.masthead h6, .info header.masthead p {
    color: #FFFFFF;
}

.info header.masthead {
    padding: 35px;
    background: #FFFFFF;
}

.info.smaller header.masthead {
    padding: 35px 35px 0 35px;
}

.info header.masthead .main-nav {
    margin-bottom: -28px;
}

@media screen and (max-width: 768px) {
    .info header.masthead .main-nav {
        margin-bottom: 18px;
    }
}

/**** INFO PAGES : BLUE & GREEN NAV BARS ****/

.info .nav.blue-bar {
    padding: 6px 0px;
}

    .info .nav.blue-bar a {
        color: #FFFFFF !important;
        font-size: clamp(1rem, 1.5vw, 1.15rem);
        padding: 4px 24px;
        margin: 0 6px;
    }

        .info .nav.blue-bar a.active {
            /*outline: 2px solid #FFFFFF;*/
            outline: 2px solid rgba(5,18,84,0.12);
            background: unset !important;
        }

        .info .nav.blue-bar a.watch {
            background: #051254;
        }

            .info .nav.blue-bar a.watch:hover {
                background: #0089BE;
                outline: none;
            }

@media screen and (max-width: 992px) {
    .info .nav.blue-bar {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .info .nav.blue-bar {
        -webkit-border-radius: 18px;
        -moz-border-radius: 18px;
        border-radius: 18px;
    }
}

@media screen and (max-width: 576px) {
    .info .nav.blue-bar a {
        margin: 12px 6px;
    }

        .info .nav.blue-bar a:first-of-type {
            margin: 0px 6px 12px 6px;
        }

        .info .nav.blue-bar a:last-of-type {
            margin: 12px 6px 0px 6px;
        }
}


/**** INFO PAGES : HERO ****/

.info .hero {
    background-attachment: scroll;
    /*background-position: 65% center;*/
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.info.indepenent-practice .hero {
    background-image: url("../images/independent-practice-full.jpg");
}

.info.health-system .hero {
    background-image: url("../images/health-system-full.jpg");
}

.info.large-group .hero {
    background-image: url("../images/large-group-full.jpg");
}

.info.general .hero {
    background-image: url("../images/general-full.jpg");
}

img.hero-mobile {
    display: none;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    img.hero-mobile {
        display: block;
    }
}

.hero-content {
    min-height: 65vh;
    padding: 8.65rem 4% 12.65rem 4%;
    position: relative;
    z-index: 1;
    background: rgba(197,231,255,0.85);
}

.hero-content p {
    font-size: clamp(1.3rem, 1.5vw, 1.6rem);
    font-weight: 300;
}

@media screen and (max-width: 1200px) {
    .hero-content {
        padding-top: 15.65rem;
        padding-bottom: 1.65rem;
    }
}

@media screen and (max-width: 992px) {
    .hero-content {
        min-height: unset;
        padding-top: 12.65rem;
        padding-bottom: 1.35rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        padding-top: 2.65rem;
        padding-bottom: 1.35rem;
    }
}

@media screen and (max-width: 576px) {
    .hero-content {
        padding-top: 1.65rem;
        padding-bottom: 1.35rem;
    }
}

.info .hero h1, .info .hero h2, .info .hero h3, .info .hero h4, .info .hero h5, .info .hero h6, .info .hero p {
    color: #265AA6;
}

.info .hero h1 {
    font-size: clamp(1.6rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
}

    .info .hero h1 span {
        color: #00B7F1;
    }

.info .hero hr {
    margin: 35px 0px;
    width: 35%;
    height: 4px;
    background-color: #ED1C24;
    opacity: 1;
}

/**** INFO PAGES : HERO : SMALLER ****/

.info.smaller .hero .hero-content {
    min-height: unset;
    padding: 4.65rem 4% 4.65rem 4%;
    position: relative;
    z-index: 1;
}

    .info.smaller .hero .hero-content h1 {
        font-size: clamp(1.85rem, 3.65vw, 4.65rem);
        font-weight: 700;
        line-height: 1;
    }

/**** INFO PAGES : BODY ****/

.info hr.red {
    margin: 35px 0px;
    width: 35%;
    height: 4px;
    background-color: #ED1C24;
    opacity: 1;
}

.info .body-content {
    padding: 65px 0px;
}

    .info .body-content .padding {
        padding: 0 65px;
    }

@media screen and (max-width: 768px) {
    .info .body-content .padding {
        padding: 0 35px;
    }
}

@media screen and (max-width: 576px) {
    .info .body-content .padding {
        padding: 0;
    }
}

.info .body-content .vert-padding {
    padding: 65px 0;
}

@media screen and (max-width: 768px) {
    .info .body-content .vert-padding {
        padding: 35px 0;
    }
}

@media screen and (max-width: 576px) {
    .info .body-content .vert-padding {
        padding: 18px 0;
    }
}

/**** INFO PAGES : FOOTER ****/

.info .mastfoot {
    position: relative;
    border-top: 1px solid #EEEEEE;
}

/**** INFO PAGES : BLUE SECTION ****/
.blue-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: calc(4% - 1.5rem);
    padding-right: calc(4% - 1.5rem);
    background: #FFFFFF;
}

.drk-blue-container {
    padding-top: 65px;
    padding-bottom: 65px;
    padding-left: calc(4% - 1.5rem);
    padding-right: calc(4% - 1.5rem);
    background: #051254;
}

    .blue-container h1, .blue-container h2, .blue-container h3, .blue-container h4, .blue-container h5, .blue-container h6, .blue-container p,
    .drk-blue-container h1, .drk-blue-container h2, .drk-blue-container h3, .drk-blue-container h4, .drk-blue-container h5, .drk-blue-container h6, .drk-blue-container p {
        color: #303A75;
    }

.blue-container.just-top-pad {
    padding-top: 65px;
    padding-bottom: 0;
    padding-left: calc(4% - 1.5rem);
    padding-right: calc(4% - 1.5rem);
    background: #FFFFFF;
}





/**** INFO PAGES : CARDS ****/

.card {
    border-radius: 1.65rem;
    overflow: hidden;
    border: 0.1rem solid #303A75;
}

.card .svg-icon {
    margin: 1.65rem auto 0.65rem auto !important;
}

.card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
    color: #303A75;
}

.card h3.card-title.pricing-card-title {
    font-size: 3rem;
    margin-bottom: 0.18rem !important;
}

.card h3.card-title.pricing-card-title small {
    font-size: 1.8rem;
}

.card p {
    color: #333333;
    margin-bottom: 0.35rem !important;
    line-height: 1.35 !important;
    font-size: 1rem !important;
    font-weight: 500;
}

.card ul {
    margin-bottom: 0 !important;
}

.bg-primary {
    background: -moz-linear-gradient(180deg, #00B7F1 0%, #0089BE 65%);
    background: -webkit-linear-gradient(180deg, #00B7F1 0%, #0089BE 65%);
    background: linear-gradient(180deg, #00B7F1 0%, #0089BE 65%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00B7F1",endColorstr="#0089BE",GradientType=1);
}

.card-header {
    padding: 1.15rem;
    margin-bottom: 1.15rem;
    border: unset;
}

    .card-header svg {
        width: 35%;
        height: auto;
    }

    .card-header.bg-primary h3 {
        color: #FFFFFF !important;
        margin: 0 !important;
    }

.card-footer {
    padding: 1.15rem;
    margin-top: 0rem;
    background-color: unset !important;
    border-top: unset !important;
}


/**** INFO PAGES : CHECKMARK LIST ****/

.list-checkmarks {
    padding-left: 1.5rem;
    text-align: left;
}

.list-display li {
    margin-bottom: 0.15rem;
    font-size: 0.85rem;
}

.list-checkmarks li {
    list-style-type: none;
    padding-left: 1rem;
}



.big-pad {
    padding-top: 98px;
    padding-bottom: 98px;
}

.big-top-pad {
    padding-top: 98px;
}

.big-bottom-pad {
    padding-bottom: 98px;
}

.medium-pad {
    padding-top: 65px;
    padding-bottom: 65px;
}

.medium-top-pad {
    padding-top: 65px;
}

.medium-bottom-pad {
    padding-bottom: 65px;
}

.small-pad {
    padding-top: 35px;
    padding-bottom: 35px;
}

.small-top-pad {
    padding-top: 35px;
}

.small-bottom-pad {
    padding-bottom: 35px;
}

@media screen and (max-width: 1024px) {
    .big-pad {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .big-top-pad {
        padding-top: 65px;
    }

    .big-bottom-pad {
        padding-bottom: 65px;
    }

    .medium-pad {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .medium-top-pad {
        padding-top: 48px;
    }

    .medium-bottom-pad {
        padding-bottom: 48px;
    }

    .small-pad {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .small-top-pad {
        padding-top: 24px;
    }

    .small-bottom-pad {
        padding-bottom: 24px;
    }
}

@media screen and (max-width: 680px) {
    .big-pad {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .big-top-pad {
        padding-top: 48px;
    }

    .big-bottom-pad {
        padding-bottom: 48px;
    }

    .medium-pad {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .medium-top-pad {
        padding-top: 35px;
    }

    .medium-bottom-pad {
        padding-bottom: 35px;
    }

    .small-pad {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .small-top-pad {
        padding-top: 18px;
    }

    .small-bottom-pad {
        padding-bottom: 18px;
    }
}



.big-icon {
    height: 135px;
    width: 135px;
    background: #FFFFFF;
    line-height: 135px;
    font-size: 72px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-bottom: 1.65rem;
    display: flex;
    align-content: center;
    justify-content: center;
}

.svg-icon {
    height: 112px;
    width: 112px;
    background: #FFFFFF;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0rem auto 1.15rem auto;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.svg-icon svg {
    height: 72px;
    width: 72px;
}

.svg-icon.blue-bg {
    background: #265AA6;
}

@media screen and (max-width: 1024px) {
    .svg-icon {
        height: 98px;
        width: 98px;
    }

    .svg-icon svg {
        height: 65px;
        width: 65px;
    }
}

@media screen and (max-width: 680px) {
    .svg-icon {
        height: 85px;
        width: 85px;
    }

    .svg-icon svg {
        height: 56px;
        width: 56px;
    }
}

/**** SVG Colors ****/

.svgbluefill {
    fill: #263777;
}

.svgwhitefill {
    fill: #FFFFFF;
}

/* Override dashboard-card width constraints for ExpiringProducts component */
.dashboard-card.expiring-products-card {
    max-width: none !important;
    width: 100% !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    height: auto !important; /* Added to fix vertical overflow */
    min-height: fit-content !important; /* Added to fix vertical overflow */
}

/* Ensure ExpiringProducts grid container doesn't overflow */
.dashboard-card.expiring-products-card .rz-data-grid {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    box-sizing: border-box !important;
    height: auto !important; /* Added to fix vertical overflow */
    min-height: fit-content !important; /* Added to fix vertical overflow */
    overflow-y: hidden !important;
}

/* Ensure ExpiringProducts grid columns fit properly */
.dashboard-card.expiring-products-card .rz-data-grid .rz-column {
    min-width: 0 !important;
    max-width: none !important;
}

/* Ensure the grid wrapper div expands properly */
.dashboard-card.expiring-products-card > div:last-child {
    height: auto !important;
    min-height: fit-content !important;
    overflow: hidden !important;
}

/* Restore expiring-products-row layout */
.expiring-products-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 1rem !important;
    align-items: stretch !important;
}

.expiring-products-row .dashboard-layout-column:first-child {
    flex: 0 0 50% !important;
    min-width: 0 !important;
}

.expiring-products-row .dashboard-layout-column:last-child {
    flex: 0 0 49% !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    align-content: flex-start !important;
}

.expiring-products-row .dashboard-layout-column:last-child .dashboard-layout-column {
    flex: 0 0 calc(50% - 0.5rem) !important;
    min-width: 0 !important;
    cursor: pointer !important;
    margin-bottom: 0 !important;
    width: calc(50% - 0.5rem) !important;
}

.login-display-dropdown > div {
    font-size: 1rem; /* Base size for 100% scaling */
}

/* 125% scaling adjustments */
@media screen and (min-resolution: 120dpi) and (max-resolution: 143dpi) {
    .login-display-dropdown > div {
        font-size: 0.8rem;
        height: 2rem;
    }
}

/* 150% scaling adjustments */
@media screen and (min-resolution: 144dpi) {
    .login-display-dropdown > div {
        font-size: 0.7rem;
        height: 2rem;
    }
}

/* Logout button styling and scaling */
.logout-button {
    font-family: QuickSand;
    font-weight: 700;
    color: var(--background);
    font-size: 1rem;
    cursor: pointer;
}

/* 125% scaling adjustments for logout button */
@media screen and (min-resolution: 120dpi) and (max-resolution: 143dpi) {
    .logout-button {
        font-size: 0.85rem;
    }
}

/* 150% scaling adjustments for logout button */
@media screen and (min-resolution: 144dpi) {
    .logout-button {
        font-size: 0.75rem;
    }
}

























.logo-nav-img:hover {
    cursor: pointer;
}

/* Logo responsive scaling */
.logo-nav-img {
    max-width: 30rem;
    margin-right: 15rem;
}

/* 125% scaling adjustments for logo */
@media screen and (min-resolution: 120dpi) and (max-resolution: 143dpi) {
    .logo-nav-img {
        max-width: 24rem;
        margin-right: 12rem;
    }
}

/* 150% scaling adjustments for logo */
@media screen and (min-resolution: 144dpi) {
    .logo-nav-img {
        max-width: 20rem;
        margin-right: 10rem;
    }
}

/* Dispense Search Component Responsive Scaling */
.dispense-search-title-icon {
    font-size: 2rem;
}

.dispense-search-title-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.dispense-search-export-button {
    border: 0.15rem solid var(--background) !important;
    background-color: #FFFFFF !important;
    padding: 0.32rem 1rem !important;
    color: var(--background) !important;
    min-width: 9.5rem !important;
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    border-radius: 0.5rem !important;
    width: fit-content !important;
    display: flex !important;
    height: fit-content !important;
    justify-content: center !important;
}

.dispense-search-clear-button {
    border: 0.15rem solid var(--background) !important;
    background-color: #FFFFFF !important;
    width: fit-content !important;
    border-radius: 0.5rem !important;
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    padding: 0.5rem 1.5rem !important;
    display: flex !important;
    height: fit-content !important;
    color: var(--background) !important;
    min-width: 7rem !important;
    justify-content: center !important;
}

.dispense-search-search-button {
    background-color: var(--background) !important;
    font-size: 1.2rem !important;
    width: fit-content !important;
    font-weight: 500 !important;
    padding: 0.5rem 1.5rem !important;
    border: 0.15rem solid var(--background) !important;
    border-radius: 0.5rem !important;
    display: flex !important;
    height: fit-content !important;
    min-width: 7rem !important;
    justify-content: center !important;
    color: white !important;
}

.dispense-search-home-button {
    background-color: var(--background) !important;
    font-size: 1.2rem !important;
    width: fit-content !important;
    font-weight: 500 !important;
    padding: 0.5rem 1.5rem !important;
    border: 0.15rem solid var(--background) !important;
    border-radius: 0.5rem !important;
    display: flex !important;
    height: fit-content !important;
    min-width: 7rem !important;
    justify-content: center !important;
    color: white !important;
}

.dispense-search-label {
    font-size: 1rem;
    font-weight: 500;
}

.dispense-search-search-label {
    font-size: 1rem;
    font-weight: 600;
}

.dispense-search-sort-label {
    font-size: 1rem;
}

.dispense-search-results-text {
    font-size: 1.5rem;
    font-weight: 500;
}

.dispense-search-table-button {
    background-color: white !important;
    min-width: 8rem !important;
    color: var(--background) !important;
    font-size: 1rem !important;
    width: fit-content !important;
    font-weight: 500 !important;
    border: 0.15rem solid var(--background) !important;
    padding: 0.5rem 0 !important;
    border-radius: 0.5rem !important;
    display: flex !important;
    height: fit-content !important;
    justify-content: center !important;
}

.dispense-search-table-view-button {
    background-color: white !important;
    min-width: 8rem !important;
    color: var(--background) !important;
    width: fit-content !important;
    border: 0.15rem solid var(--background) !important;
    display: flex !important;
    height: fit-content !important;
    justify-content: center !important;
    border-radius: 0.5rem !important;

}

.dispense-search-table-cancel-button {
    background-color: white !important;
    min-width: 8rem !important;
    color: var(--background) !important;
    font-size: 1rem !important;
    width: fit-content !important;
    font-weight: 500 !important;
    border: 0.15rem solid var(--background) !important;
    border-radius: 0.5rem !important;
    display: flex !important;
    height: fit-content !important;
    justify-content: center !important;
    padding: 0.5rem 0 !important;
}

.dispense-search-table-complete-button {
    background-color: white !important;
    min-width: 10rem !important;
    color: var(--background) !important;
    font-size: 1rem !important;
    width: fit-content !important;
    font-weight: 500 !important;
    border: 0.15rem solid var(--background) !important;
    border-radius: 0.5rem !important;
    display: flex !important;
    height: fit-content !important;
    justify-content: center !important;
    padding: 0.5rem 0 !important;
}

.dispense-search-table-compact-cancel-button {
    background-color: white !important;
    min-width: 5rem !important;
    color: var(--background) !important;
    font-size: 1rem !important;
    width: fit-content !important;
    font-weight: 500 !important;
    border: 0.15rem solid var(--background) !important;
    padding: 0.5rem 0 !important;
    border-radius: 0.5rem !important;
    display: flex !important;
    height: fit-content !important;
    justify-content: center !important;
}

.dispense-search-table-compact-complete-button {
    background-color: white !important;
    min-width: 6rem !important;
    color: var(--background) !important;
    font-size: 1rem !important;
    width: fit-content !important;
    font-weight: 500 !important;
    border: 0.15rem solid var(--background) !important;
    padding: 0.5rem 0 !important;
    border-radius: 0.5rem !important;
    display: flex !important;
    height: fit-content !important;
    justify-content: center !important;
}

/* Search input font size scaling for dispense search */
.dispense-search-textbox {
    font-size: 1rem !important;
}

.dispense-search-dropdown {
    font-size: 1rem !important;
}

.dispense-search-datepicker {
    font-size: 1rem !important;
}



/* Grid layout scaling for dispense search */
.dispense-search-grid {
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)) !important;
}



/* 125% scaling adjustments for dispense search */
@media screen and (min-resolution: 120dpi) and (max-resolution: 143dpi) {
    .dispense-search-title-icon {
        font-size: 1.6rem;
    }
    
    .dispense-search-title-text {
        font-size: 1rem;
    }
    
    .dispense-search-export-button {
        font-size: 1rem !important;
        padding: 0.25rem 0.8rem !important;
        min-width: 8rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    
    .dispense-search-clear-button {
        font-size: 1rem !important;
        padding: 0.2rem 1.2rem !important;
        min-width: 6rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    
    .dispense-search-search-button {
        font-size: 1rem !important;
        padding: 0.2rem 1.2rem !important;
        min-width: 6rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    
    .dispense-search-home-button {
        font-size: 1rem !important;
        padding: 0.2rem 1.2rem !important;
        min-width: 6rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    
    .dispense-search-label {
        font-size: 0.85rem !important;
    }
    
    .dispense-search-search-label {
        font-size: 0.85rem !important;
    }
    
    .dispense-search-sort-label {
        font-size: 0.85rem !important;
    }
    
    .dispense-search-results-text {
        font-size: 1.25rem !important;
    }
    
    .dispense-search-table-button {
        font-size: 0.85rem !important;
        padding: 0.4rem 0 !important;
        min-width: 7rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    
    .dispense-search-table-view-button {
        font-size: 0.85rem !important;
        min-width: 7rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    
    .dispense-search-table-cancel-button {
        font-size: 0.85rem !important;
        padding: 0.4rem 0 !important;
        min-width: 7rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    
    .dispense-search-table-complete-button {
        font-size: 0.85rem !important;
        padding: 0.4rem 0 !important;
        min-width: 8rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    
    .dispense-search-table-compact-cancel-button {
        font-size: 0.85rem !important;
        padding: 0.4rem 0 !important;
        min-width: 4rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    
    .dispense-search-table-compact-complete-button {
        font-size: 0.85rem !important;
        padding: 0.4rem 0 !important;
        min-width: 5rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    

    
    /* Search input font size scaling for 125% */
    .dispense-search-textbox {
        font-size: 0.85rem !important;
    }
    
    .dispense-search-dropdown {
        font-size: 0.85rem !important;
    }
    


    .small-font-date .rz-datepicker input {
        font-size: 0.85rem !important;
    }
    
    /* Grid layout scaling for 125% */
    .dispense-search-grid {
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)) !important;
    }
}

/* 150% scaling adjustments for dispense search */
@media screen and (min-resolution: 144dpi) {
    .dispense-search-title-icon {
        font-size: 1.4rem;
    }
    
    .dispense-search-title-text {
        font-size: 0.9rem;
    }
    
    .dispense-search-export-button {
        font-size: 0.9rem !important;
        padding: 0.2rem 0.7rem !important;
        min-width: 7rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    
    .dispense-search-clear-button {
        font-size: 0.9rem !important;
        padding: 0.35rem 1rem !important;
        min-width: 5rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    
    .dispense-search-search-button {
        font-size: 0.9rem !important;
        padding: 0.35rem 1rem !important;
        min-width: 5rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    
    .dispense-search-home-button {
        font-size: 0.9rem !important;
        padding: 0.35rem 1rem !important;
        min-width: 5rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    
    .dispense-search-label {
        font-size: 0.75rem !important;
    }
    
    .dispense-search-search-label {
        font-size: 0.75rem !important;
    }
    
    .dispense-search-sort-label {
        font-size: 0.75rem !important;
    }
    
    .dispense-search-results-text {
        font-size: 1.1rem !important;
    }
    
    .dispense-search-table-button {
        font-size: 0.75rem !important;
        padding: 0.35rem 0 !important;
        min-width: 6rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    
    .dispense-search-table-view-button {
        font-size: 0.75rem !important;
        min-width: 6rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    
    .dispense-search-table-cancel-button {
        font-size: 0.75rem !important;
        padding: 0.35rem 0 !important;
        min-width: 6rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    
    .dispense-search-table-complete-button {
        font-size: 0.75rem !important;
        padding: 0.35rem 0 !important;
        min-width: 7rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    
    .dispense-search-table-compact-cancel-button {
        font-size: 0.75rem !important;
        padding: 0.35rem 0 !important;
        min-width: 3.5rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    
    .dispense-search-table-compact-complete-button {
        font-size: 0.75rem !important;
        padding: 0.35rem 0 !important;
        min-width: 4.5rem !important;
        border: 0.1rem solid var(--background) !important;
    }
    

    
    /* Search input font size scaling for 150% */
    .dispense-search-textbox {
        font-size: 0.75rem !important;
    }
    
    .dispense-search-dropdown {
        font-size: 0.75rem !important;
    }
    


    .small-font-date .rz-datepicker input {
        font-size: 0.75rem !important;
    }
    
    /* Grid layout scaling for 150% */
    .dispense-search-grid {
        grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)) !important;
    }
}

/* End of dispense search component scaling */

/* ========================================
   DISPENSE ITEMS PAGE SCALING
   ======================================== */

/* 125% scaling adjustments for dispense items page */
@media screen and (min-resolution: 120dpi) and (max-resolution: 143dpi) {

    div[style*="max-width: 48rem"] {
        max-width: 42rem !important;
    }

    div[style*="max-width: 14rem"] {
        max-width: 12rem !important;
    }

    div[style*="font-size: 1.2rem"] {
        font-size: 0.9rem !important;
    }

    div[style*="font-size: 1rem"] {
        font-size: 0.8rem !important;
    }

    div[style*="max-width: 31.5rem"] {
        width: 26rem !important;
    }

    .col-margin {
        margin: 0 !important;
        max-width: 30.5rem !important;
    }

    .rz-messages-error {
        font-size: 0.8rem;
    }
    /* Main DISPENSE title scaling */
    div[style*="font-size: 1.75rem"] span {
        font-size: 1.4rem !important;
    }

    div[style*="font-size: 1.5rem"] span {
        font-size: 1.2rem !important;
    }

    /* Section headings (Prescriber, Patient) */
    .ordered-dispense-title h1 {
        font-size: 1.2rem !important;
        margin-top: 1.8rem !important;
    }

    /* Form field labels */
    .ordered-dispense-title .col-title-margin-2 {
        font-size: 1rem !important;
        min-width: 9rem !important;
    }

    /* Form inputs */
    .ordered-dispense-title .form-field-border {
        font-size: 0.8rem !important;
    }

    /* Sample suggestion text */
    .ordered-dispense-title .sample-suggestion {
        font-size: 1rem !important;
    }

    /* Add prescriber link */
    .ordered-dispense-title .add-prescriber-link {
        font-size: 1.3rem !important;
    }

    /* Setup prescribers message */
    .ordered-dispense-title span[style*="font-size: 1.5rem"] {
        font-size: 0.9rem !important;
    }

    /* More specific selector for setup prescribers span */
    .ordered-dispense-title .col-12 span[style*="font-size: 1.5rem"] {
        font-size: 0.9rem !important;
    }

    /* Prescriber and Patient section headings */
    .ordered-dispense-title h1[style*="font-size: 1.4rem"] {
        font-size: 1.2rem !important;
    }

    /* Form field labels (MRN, Last Name, First Name, Middle Name, Date of Birth) */
    .ordered-dispense-title .col-title-margin-2 {
        font-size: 1rem !important;
        min-width: 9rem !important;
    }

    /* Form inputs (autocomplete, date picker) */
    .ordered-dispense-title .form-field-border {
        font-size: 0.8rem !important;
    }

    /* Patient section heading (outside ordered-dispense-title) */
    .col-12 h1[style*="font-size: 1.4rem"] {
        font-size: 1rem !important;
    }

    /* Patient form field labels (MRN, Last Name, First Name, Middle Name, Date of Birth) */
    .col-12 .col-title-margin-2 {
        font-size: 0.9rem !important;
        min-width: 9rem !important;
    }

    /* Patient form inputs (autocomplete, date picker) */
    .col-12 .form-field-border {
        font-size: 0.8rem !important;
    }

    .rz-autocomplete-input {
        font-size: 0.9rem !important;
    }

    .dispense-page-button {
        min-width: 6rem;
        font-size: 1rem;
        padding: 0.3rem 1rem;
    }

    .dispense-page-secondary-button {
        min-width: 6rem;
        font-size: 1rem;
        padding: 0.3rem 1rem;
        border: 0.1rem solid var(--background);
    }

    .date-picker-div .rz-datepicker input {
        font-size: 0.9rem;
    }

    .sample-suggestion {
        font-size: 0.8rem !important;
    }

    .load-more-patients-link {
        font-size: 0.8rem;
    }

    .rz-autocomplete-list-item {
        padding-top: 0.1rem !important;
        padding-bottom: 0.1rem !important;
    }

    .dropdown-divider {
        margin-top: 0.5rem !important;
        margin-bottom: 1.2rem !important;
    }

    .samples-info-holder {
        font-size: 0.8rem;
    }

    input[style*="pointer-events: none"] {
        height: 2rem;
        margin-bottom: 0.5rem;
    }

    div[style*="max-height: 28rem"] {
        max-height: 16rem !important;
    }
    
    /* Override col-title-margin-2 for sample suggestions label */
    .col-12 .sample-suggestions-label {
        margin-bottom: 0.8rem !important;
        font-size: 0.8rem !important;
    }

    #DosingInstructions {
        font-size: 0.8rem !important;
    }

    /* Click to select drug label scaling */
    span[style*="font-size: 1rem"] {
        font-size: 0.8rem !important;
    }

    label[style*="font-size: 1.1rem"] {
        font-size: 0.8rem !important;
    }

    i[style*="font-size: 3rem"] {
        font-size: 2.2rem !important;
    }

    i[style*="font-size: 2rem"] {
        font-size: 1.5rem !important;
    }

    .rz-numeric-input {
        font-size: 0.8rem !important;
    }

    .drug-sample-title {
        font-size: 1rem;
    }

    .drug-sample-title-margin {
        min-width: 7rem;
        font-size: 0.8rem;
    }

    .add-lot-btn {
        font-size: 0.9rem !important;
        padding: 0.36rem 0.8rem !important;
        border: 0.1rem solid var(--background);
    }

    .rz-datatable-emptymessage {
        font-size: 0.8rem;
    }

    label[style*="font-size: 1rem"] {
        font-size: 0.8rem !important;
    }

    .regular-date-div .rz-datepicker input {
        font-size: 0.8rem !important;
    }

    div[style*="max-width: 20rem"] {
        min-width: 12rem !important;
    }

    .rz-textbox {
        font-size: 0.85rem !important;
    }

    .rz-dropdown-chips .rz-chip .rz-chip-text {
        font-size: 0.85rem !important;
    }

    .rz-multiselect .rz-placeholder, .rz-dropdown .rz-placeholder {
        font-size: 0.85rem !important;
    }

    .rz-dropdown-label {
        font-size: 0.85rem !important;
    }

    .rz-tabview-title {
        font-size: 0.9rem;
    }

    [style*="font-size: 1.5rem"] {
        font-size: 1.3rem !important;
    }

    .rz-alert-content {
        font-size: 1rem !important;
    }

    .rz-alert .rz-alert-icon {
        font-size: 1.3rem !important;
    }

/* Prescriber dropdown specific scaling - removed general dropdown targeting */
}

/* ViewShipments Button Responsive Scaling */
.view-shipments-button {
    border-radius: 0.5rem;
    background-color: white !important;
    min-width: 8rem;
    color: var(--background) !important;
    font-size: 1rem;
    width: fit-content;
    font-weight: 500;
    border: 0.15rem solid var(--background);
    font-family: Quicksand;
    transition: all 0.2s ease;
}

  .view-shipments-button.active {
    background-color: var(--background) !important;
    color: white !important;
  }

/* 125% scaling adjustments for ViewShipments button */
@media screen and (min-resolution: 120dpi) and (max-resolution: 143dpi) {
    .view-shipments-button {
        font-size: 0.9rem;
        min-width: 7rem;
        padding: 0.4rem 0.8rem;
        border-radius: 0.4rem;
        border-width: 0.12rem;
    }
}

/* 150% scaling adjustments for ViewShipments button */
@media screen and (min-resolution: 144dpi) {
    .view-shipments-button {
        font-size: 0.8rem;
        min-width: 6.5rem;
        padding: 0.35rem 0.7rem;
        border-radius: 0.35rem;
        border-width: 0.1rem;
    }
}

/* Standard DPI displays (100% scaling) */
@media screen and (min-resolution: 96dpi) and (max-resolution: 119dpi) {
    .view-shipments-button {
        font-size: 1rem;
        min-width: 8rem;
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        border-width: 0.15rem;
    }
}

.registration-content-page {
    min-height: calc(100vh - 5rem);
    height: calc(100vh - 5rem);
    font-family: Quicksand;
}

.rz-fileupload-row {
    font-size: 1rem;
}

@media screen and (min-resolution: 120dpi) and (max-resolution: 143dpi) {
    #ddUpload .rz-fileupload-buttonbar .rz-fileupload-choose {
        font-size: 1rem;
        padding: 0.3rem 1rem;
    }

    .location-setup-page-content {
        margin-top: 3rem !important;
    }
}

.location-setup-page-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    width: 100%;
    margin-top: 3.5rem;
}

.rz-notification-title {
    font-family: QuickSand;
    font-size: 1rem;
}

.rz-notification-content {
    font-family: QuickSand;
    font-size: 1rem;
}

.general-slide-1 {
    background-image: url("../images/slides/general-symmetryrx-slide-1.jpg");
}

.general-slide-2 {
    background-image: url("../images/slides/general-symmetryrx-slide-2.jpg");
}

.general-slide-3 {
    background-image: url("../images/slides/general-symmetryrx-slide-3.jpg");
}

.rz-selectbutton.rz-selectbutton-horizontal .rz-button.rz-button-lg:not(:first-child) {
    border-inline-start: 1px solid #dadfe2;
}

ul.faq li::marker {
    color: var(--background);
}

.rz-panel-menu .rz-navigation-menu .rz-navigation-item .rz-navigation-item-link {
    padding-inline-start: 2rem;
}
