/* ========================================
   IV FRAMEWORK - CUSTOM CSS FRAMEWORK
   Inspired by Bootstrap with IV-specific enhancements
   ======================================== */

/* ========================================
   CONTAINER SYSTEM
   ======================================== */

.iv-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

.iv-container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.iv-container-sm {
    max-width: 540px;
}

.iv-container-md {
    max-width: 720px;
}

.iv-container-lg {
    max-width: 960px;
}

.iv-container-xl {
    max-width: 1140px;
}

/* ========================================
   GRID SYSTEM
   ======================================== */

.iv-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.iv-no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.iv-no-gutters > [class*="iv-col-"] {
    padding-right: 0;
    padding-left: 0;
}

/* Base column class */
[class*="iv-col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

/* Mobile First (xs) - Default */
.iv-col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.iv-col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.iv-col-3 { flex: 0 0 25%; max-width: 25%; }
.iv-col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.iv-col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.iv-col-6 { flex: 0 0 50%; max-width: 50%; }
.iv-col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.iv-col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.iv-col-9 { flex: 0 0 75%; max-width: 75%; }
.iv-col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.iv-col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.iv-col-12 { flex: 0 0 100%; max-width: 100%; }

.iv-col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.iv-col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

/* Small devices (≥576px) */
@media (min-width: 576px) {
    .iv-container, .iv-container-sm {
        max-width: 540px;
    }
    
    .iv-col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .iv-col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .iv-col-sm-3 { flex: 0 0 25%; max-width: 25%; }
    .iv-col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .iv-col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .iv-col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .iv-col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .iv-col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .iv-col-sm-9 { flex: 0 0 75%; max-width: 75%; }
    .iv-col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .iv-col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .iv-col-sm-12 { flex: 0 0 100%; max-width: 100%; }
    
    .iv-col-sm { flex-basis: 0; flex-grow: 1; max-width: 100%; }
    .iv-col-sm-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
}

/* Medium devices (≥768px) */
@media (min-width: 768px) {
    .iv-container, .iv-container-sm, .iv-container-md {
        max-width: 720px;
    }
    
    .iv-col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .iv-col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .iv-col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .iv-col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .iv-col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .iv-col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .iv-col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .iv-col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .iv-col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .iv-col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .iv-col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .iv-col-md-12 { flex: 0 0 100%; max-width: 100%; }
    
    .iv-col-md { flex-basis: 0; flex-grow: 1; max-width: 100%; }
    .iv-col-md-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
    .iv-container, .iv-container-sm, .iv-container-md, .iv-container-lg {
        max-width: 960px;
    }
    
    .iv-col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .iv-col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .iv-col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .iv-col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .iv-col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .iv-col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .iv-col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .iv-col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .iv-col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .iv-col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .iv-col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .iv-col-lg-12 { flex: 0 0 100%; max-width: 100%; }
    
    .iv-col-lg { flex-basis: 0; flex-grow: 1; max-width: 100%; }
    .iv-col-lg-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
}

/* Extra large devices (≥1200px) */
@media (min-width: 1200px) {
    .iv-container, .iv-container-sm, .iv-container-md, .iv-container-lg, .iv-container-xl {
        max-width: 1140px;
    }
    
    .iv-col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .iv-col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .iv-col-xl-3 { flex: 0 0 25%; max-width: 25%; }
    .iv-col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .iv-col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .iv-col-xl-6 { flex: 0 0 50%; max-width: 50%; }
    .iv-col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .iv-col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .iv-col-xl-9 { flex: 0 0 75%; max-width: 75%; }
    .iv-col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .iv-col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .iv-col-xl-12 { flex: 0 0 100%; max-width: 100%; }
    
    .iv-col-xl { flex-basis: 0; flex-grow: 1; max-width: 100%; }
    .iv-col-xl-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
}

/* ========================================
   OFFSET SYSTEM
   ======================================== */

.iv-offset-1 { margin-left: 8.333333%; }
.iv-offset-2 { margin-left: 16.666667%; }
.iv-offset-3 { margin-left: 25%; }
.iv-offset-4 { margin-left: 33.333333%; }
.iv-offset-5 { margin-left: 41.666667%; }
.iv-offset-6 { margin-left: 50%; }
.iv-offset-7 { margin-left: 58.333333%; }
.iv-offset-8 { margin-left: 66.666667%; }
.iv-offset-9 { margin-left: 75%; }
.iv-offset-10 { margin-left: 83.333333%; }
.iv-offset-11 { margin-left: 91.666667%; }

@media (min-width: 576px) {
    .iv-offset-sm-0 { margin-left: 0; }
    .iv-offset-sm-1 { margin-left: 8.333333%; }
    .iv-offset-sm-2 { margin-left: 16.666667%; }
    .iv-offset-sm-3 { margin-left: 25%; }
    .iv-offset-sm-4 { margin-left: 33.333333%; }
    .iv-offset-sm-5 { margin-left: 41.666667%; }
    .iv-offset-sm-6 { margin-left: 50%; }
    .iv-offset-sm-7 { margin-left: 58.333333%; }
    .iv-offset-sm-8 { margin-left: 66.666667%; }
    .iv-offset-sm-9 { margin-left: 75%; }
    .iv-offset-sm-10 { margin-left: 83.333333%; }
    .iv-offset-sm-11 { margin-left: 91.666667%; }
}

@media (min-width: 768px) {
    .iv-offset-md-0 { margin-left: 0; }
    .iv-offset-md-1 { margin-left: 8.333333%; }
    .iv-offset-md-2 { margin-left: 16.666667%; }
    .iv-offset-md-3 { margin-left: 25%; }
    .iv-offset-md-4 { margin-left: 33.333333%; }
    .iv-offset-md-5 { margin-left: 41.666667%; }
    .iv-offset-md-6 { margin-left: 50%; }
    .iv-offset-md-7 { margin-left: 58.333333%; }
    .iv-offset-md-8 { margin-left: 66.666667%; }
    .iv-offset-md-9 { margin-left: 75%; }
    .iv-offset-md-10 { margin-left: 83.333333%; }
    .iv-offset-md-11 { margin-left: 91.666667%; }
}

@media (min-width: 992px) {
    .iv-offset-lg-0 { margin-left: 0; }
    .iv-offset-lg-1 { margin-left: 8.333333%; }
    .iv-offset-lg-2 { margin-left: 16.666667%; }
    .iv-offset-lg-3 { margin-left: 25%; }
    .iv-offset-lg-4 { margin-left: 33.333333%; }
    .iv-offset-lg-5 { margin-left: 41.666667%; }
    .iv-offset-lg-6 { margin-left: 50%; }
    .iv-offset-lg-7 { margin-left: 58.333333%; }
    .iv-offset-lg-8 { margin-left: 66.666667%; }
    .iv-offset-lg-9 { margin-left: 75%; }
    .iv-offset-lg-10 { margin-left: 83.333333%; }
    .iv-offset-lg-11 { margin-left: 91.666667%; }
}

@media (min-width: 1200px) {
    .iv-offset-xl-0 { margin-left: 0; }
    .iv-offset-xl-1 { margin-left: 8.333333%; }
    .iv-offset-xl-2 { margin-left: 16.666667%; }
    .iv-offset-xl-3 { margin-left: 25%; }
    .iv-offset-xl-4 { margin-left: 33.333333%; }
    .iv-offset-xl-5 { margin-left: 41.666667%; }
    .iv-offset-xl-6 { margin-left: 50%; }
    .iv-offset-xl-7 { margin-left: 58.333333%; }
    .iv-offset-xl-8 { margin-left: 66.666667%; }
    .iv-offset-xl-9 { margin-left: 75%; }
    .iv-offset-xl-10 { margin-left: 83.333333%; }
    .iv-offset-xl-11 { margin-left: 91.666667%; }
}

/* ========================================
   FLEXBOX UTILITIES
   ======================================== */

.iv-d-flex { display: flex !important; }
.iv-d-inline-flex { display: inline-flex !important; }
.iv-d-none { display: none !important; }
.iv-d-inline { display: inline !important; }
.iv-d-inline-block { display: inline-block !important; }
.iv-d-block { display: block !important; }

.iv-flex-row { flex-direction: row !important; }
.iv-flex-column { flex-direction: column !important; }
.iv-flex-row-reverse { flex-direction: row-reverse !important; }
.iv-flex-column-reverse { flex-direction: column-reverse !important; }

.iv-flex-wrap { flex-wrap: wrap !important; }
.iv-flex-nowrap { flex-wrap: nowrap !important; }
.iv-flex-wrap-reverse { flex-wrap: wrap-reverse !important; }

.iv-justify-content-start { justify-content: flex-start !important; }
.iv-justify-content-end { justify-content: flex-end !important; }
.iv-justify-content-center { justify-content: center !important; }
.iv-justify-content-between { justify-content: space-between !important; }
.iv-justify-content-around { justify-content: space-around !important; }
.iv-justify-content-evenly { justify-content: space-evenly !important; }

.iv-align-items-start { align-items: flex-start !important; }
.iv-align-items-end { align-items: flex-end !important; }
.iv-align-items-center { align-items: center !important; }
.iv-align-items-baseline { align-items: baseline !important; }
.iv-align-items-stretch { align-items: stretch !important; }

.iv-align-content-start { align-content: flex-start !important; }
.iv-align-content-end { align-content: flex-end !important; }
.iv-align-content-center { align-content: center !important; }
.iv-align-content-between { align-content: space-between !important; }
.iv-align-content-around { align-content: space-around !important; }
.iv-align-content-stretch { align-content: stretch !important; }

.iv-align-self-auto { align-self: auto !important; }
.iv-align-self-start { align-self: flex-start !important; }
.iv-align-self-end { align-self: flex-end !important; }
.iv-align-self-center { align-self: center !important; }
.iv-align-self-baseline { align-self: baseline !important; }
.iv-align-self-stretch { align-self: stretch !important; }

.iv-flex-fill { flex: 1 1 auto !important; }
.iv-flex-grow-0 { flex-grow: 0 !important; }
.iv-flex-grow-1 { flex-grow: 1 !important; }
.iv-flex-shrink-0 { flex-shrink: 0 !important; }
.iv-flex-shrink-1 { flex-shrink: 1 !important; }

/* ========================================
   SPACING UTILITIES
   ======================================== */

/* Margin classes */
.iv-m-0 { margin: 0 !important; }
.iv-m-1 { margin: 0.25rem !important; }
.iv-m-2 { margin: 0.5rem !important; }
.iv-m-3 { margin: 1rem !important; }
.iv-m-4 { margin: 1.5rem !important; }
.iv-m-5 { margin: 3rem !important; }
.iv-m-auto { margin: auto !important; }

.iv-mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.iv-mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }
.iv-mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.iv-mx-3 { margin-left: 1rem !important; margin-right: 1rem !important; }
.iv-mx-4 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
.iv-mx-5 { margin-left: 3rem !important; margin-right: 3rem !important; }
.iv-mx-auto { margin-left: auto !important; margin-right: auto !important; }

.iv-my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.iv-my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.iv-my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.iv-my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.iv-my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.iv-my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.iv-my-auto { margin-top: auto !important; margin-bottom: auto !important; }

.iv-mt-0 { margin-top: 0 !important; }
.iv-mt-1 { margin-top: 0.25rem !important; }
.iv-mt-2 { margin-top: 0.5rem !important; }
.iv-mt-3 { margin-top: 1rem !important; }
.iv-mt-4 { margin-top: 1.5rem !important; }
.iv-mt-5 { margin-top: 3rem !important; }
.iv-mt-auto { margin-top: auto !important; }

.iv-mr-0 { margin-right: 0 !important; }
.iv-mr-1 { margin-right: 0.25rem !important; }
.iv-mr-2 { margin-right: 0.5rem !important; }
.iv-mr-3 { margin-right: 1rem !important; }
.iv-mr-4 { margin-right: 1.5rem !important; }
.iv-mr-5 { margin-right: 3rem !important; }
.iv-mr-auto { margin-right: auto !important; }

.iv-mb-0 { margin-bottom: 0 !important; }
.iv-mb-1 { margin-bottom: 0.25rem !important; }
.iv-mb-2 { margin-bottom: 0.5rem !important; }
.iv-mb-3 { margin-bottom: 1rem !important; }
.iv-mb-4 { margin-bottom: 1.5rem !important; }
.iv-mb-5 { margin-bottom: 3rem !important; }
.iv-mb-auto { margin-bottom: auto !important; }

.iv-ml-0 { margin-left: 0 !important; }
.iv-ml-1 { margin-left: 0.25rem !important; }
.iv-ml-2 { margin-left: 0.5rem !important; }
.iv-ml-3 { margin-left: 1rem !important; }
.iv-ml-4 { margin-left: 1.5rem !important; }
.iv-ml-5 { margin-left: 3rem !important; }
.iv-ml-auto { margin-left: auto !important; }

/* Padding classes */
.iv-p-0 { padding: 0 !important; }
.iv-p-1 { padding: 0.25rem !important; }
.iv-p-2 { padding: 0.5rem !important; }
.iv-p-3 { padding: 1rem !important; }
.iv-p-4 { padding: 1.5rem !important; }
.iv-p-5 { padding: 3rem !important; }

.iv-px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.iv-px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.iv-px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.iv-px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.iv-px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.iv-px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

.iv-py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.iv-py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.iv-py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.iv-py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.iv-py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.iv-py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

.iv-pt-0 { padding-top: 0 !important; }
.iv-pt-1 { padding-top: 0.25rem !important; }
.iv-pt-2 { padding-top: 0.5rem !important; }
.iv-pt-3 { padding-top: 1rem !important; }
.iv-pt-4 { padding-top: 1.5rem !important; }
.iv-pt-5 { padding-top: 3rem !important; }

.iv-pr-0 { padding-right: 0 !important; }
.iv-pr-1 { padding-right: 0.25rem !important; }
.iv-pr-2 { padding-right: 0.5rem !important; }
.iv-pr-3 { padding-right: 1rem !important; }
.iv-pr-4 { padding-right: 1.5rem !important; }
.iv-pr-5 { padding-right: 3rem !important; }

.iv-pb-0 { padding-bottom: 0 !important; }
.iv-pb-1 { padding-bottom: 0.25rem !important; }
.iv-pb-2 { padding-bottom: 0.5rem !important; }
.iv-pb-3 { padding-bottom: 1rem !important; }
.iv-pb-4 { padding-bottom: 1.5rem !important; }
.iv-pb-5 { padding-bottom: 3rem !important; }

.iv-pl-0 { padding-left: 0 !important; }
.iv-pl-1 { padding-left: 0.25rem !important; }
.iv-pl-2 { padding-left: 0.5rem !important; }
.iv-pl-3 { padding-left: 1rem !important; }
.iv-pl-4 { padding-left: 1.5rem !important; }
.iv-pl-5 { padding-left: 3rem !important; }

/* ========================================
   TEXT UTILITIES
   ======================================== */

.iv-text-left { text-align: left !important; }
.iv-text-right { text-align: right !important; }
.iv-text-center { text-align: center !important; }
.iv-text-justify { text-align: justify !important; }

.iv-text-lowercase { text-transform: lowercase !important; }
.iv-text-uppercase { text-transform: uppercase !important; }
.iv-text-capitalize { text-transform: capitalize !important; }

.iv-font-weight-light { font-weight: 300 !important; }
.iv-font-weight-normal { font-weight: 400 !important; }
.iv-font-weight-bold { font-weight: 700 !important; }
.iv-font-weight-bolder { font-weight: bolder !important; }

.iv-font-italic { font-style: italic !important; }

.iv-text-decoration-none { text-decoration: none !important; }
.iv-text-decoration-underline { text-decoration: underline !important; }

.iv-text-primary { color: var(--primary-color) !important; }
.iv-text-secondary { color: var(--secondary-color) !important; }
.iv-text-success { color: #28a745 !important; }
.iv-text-danger { color: #dc3545 !important; }
.iv-text-warning { color: #ffc107 !important; }
.iv-text-info { color: #17a2b8 !important; }
.iv-text-light { color: #f8f9fa !important; }
.iv-text-dark { color: #343a40 !important; }
.iv-text-muted { color: #6c757d !important; }
.iv-text-white { color: #fff !important; }

/* ========================================
   VISIBILITY UTILITIES
   ======================================== */

.iv-visible { visibility: visible !important; }
.iv-invisible { visibility: hidden !important; }

/* Show/Hide on different screen sizes */
@media (max-width: 575.98px) {
    .iv-d-sm-none { display: none !important; }
}

@media (min-width: 576px) {
    .iv-d-sm-inline { display: inline !important; }
    .iv-d-sm-inline-block { display: inline-block !important; }
    .iv-d-sm-block { display: block !important; }
    .iv-d-sm-flex { display: flex !important; }
    .iv-d-sm-inline-flex { display: inline-flex !important; }
}

@media (max-width: 767.98px) {
    .iv-d-md-none { display: none !important; }
}

@media (min-width: 768px) {
    .iv-d-md-inline { display: inline !important; }
    .iv-d-md-inline-block { display: inline-block !important; }
    .iv-d-md-block { display: block !important; }
    .iv-d-md-flex { display: flex !important; }
    .iv-d-md-inline-flex { display: inline-flex !important; }
}

@media (max-width: 991.98px) {
    .iv-d-lg-none { display: none !important; }
}

@media (min-width: 992px) {
    .iv-d-lg-inline { display: inline !important; }
    .iv-d-lg-inline-block { display: inline-block !important; }
    .iv-d-lg-block { display: block !important; }
    .iv-d-lg-flex { display: flex !important; }
    .iv-d-lg-inline-flex { display: inline-flex !important; }
}

@media (max-width: 1199.98px) {
    .iv-d-xl-none { display: none !important; }
}

@media (min-width: 1200px) {
    .iv-d-xl-inline { display: inline !important; }
    .iv-d-xl-inline-block { display: inline-block !important; }
    .iv-d-xl-block { display: block !important; }
    .iv-d-xl-flex { display: flex !important; }
    .iv-d-xl-inline-flex { display: inline-flex !important; }
}

/* ========================================
   POSITION UTILITIES
   ======================================== */

.iv-position-static { position: static !important; }
.iv-position-relative { position: relative !important; }
.iv-position-absolute { position: absolute !important; }
.iv-position-fixed { position: fixed !important; }
.iv-position-sticky { position: sticky !important; }

.iv-fixed-top {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.iv-fixed-bottom {
    position: fixed !important;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

.iv-sticky-top {
    position: sticky !important;
    top: 0;
    z-index: 1020;
}

/* ========================================
   BORDER UTILITIES
   ======================================== */

.iv-border { border: 1px solid var(--border-color) !important; }
.iv-border-top { border-top: 1px solid var(--border-color) !important; }
.iv-border-right { border-right: 1px solid var(--border-color) !important; }
.iv-border-bottom { border-bottom: 1px solid var(--border-color) !important; }
.iv-border-left { border-left: 1px solid var(--border-color) !important; }

.iv-border-0 { border: 0 !important; }
.iv-border-top-0 { border-top: 0 !important; }
.iv-border-right-0 { border-right: 0 !important; }
.iv-border-bottom-0 { border-bottom: 0 !important; }
.iv-border-left-0 { border-left: 0 !important; }

.iv-border-primary { border-color: var(--primary-color) !important; }
.iv-border-secondary { border-color: var(--secondary-color) !important; }

.iv-rounded { border-radius: 0.375rem !important; }
.iv-rounded-sm { border-radius: 0.25rem !important; }
.iv-rounded-lg { border-radius: 0.75rem !important; }
.iv-rounded-xl { border-radius: 1rem !important; }
.iv-rounded-pill { border-radius: 50rem !important; }
.iv-rounded-circle { border-radius: 50% !important; }
.iv-rounded-0 { border-radius: 0 !important; }

/* ========================================
   SHADOW UTILITIES
   ======================================== */

.iv-shadow-none { box-shadow: none !important; }
.iv-shadow-sm { box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }
.iv-shadow { box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }
.iv-shadow-lg { box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }

/* ========================================
   OVERFLOW UTILITIES
   ======================================== */

.iv-overflow-auto { overflow: auto !important; }
.iv-overflow-hidden { overflow: hidden !important; }
.iv-overflow-visible { overflow: visible !important; }
.iv-overflow-scroll { overflow: scroll !important; }

/* ========================================
   HEIGHT UTILITIES
   ======================================== */

.iv-h-25 { height: 25% !important; }
.iv-h-50 { height: 50% !important; }
.iv-h-75 { height: 75% !important; }
.iv-h-100 { height: 100% !important; }
.iv-h-auto { height: auto !important; }

.iv-mh-100 { max-height: 100% !important; }

.iv-vh-25 { height: 25vh !important; }
.iv-vh-50 { height: 50vh !important; }
.iv-vh-75 { height: 75vh !important; }
.iv-vh-100 { height: 100vh !important; }

.iv-min-vh-25 { min-height: 25vh !important; }
.iv-min-vh-50 { min-height: 50vh !important; }
.iv-min-vh-75 { min-height: 75vh !important; }
.iv-min-vh-100 { min-height: 100vh !important; }

/* ========================================
   WIDTH UTILITIES
   ======================================== */

.iv-w-25 { width: 25% !important; }
.iv-w-50 { width: 50% !important; }
.iv-w-75 { width: 75% !important; }
.iv-w-100 { width: 100% !important; }
.iv-w-auto { width: auto !important; }

.iv-mw-100 { max-width: 100% !important; }