/*
 * Bootstrap 5 Utilities — Standalone / Bootstrap 4 Safe
 *
 * Prefix: u-
 *
 * Examples:
 *   u-d-flex
 *   u-p-3
 *   u-mt-4
 *   u-gap-3
 *   u-fw-bold
 *   u-fs-4
 *   u-text-center
 *
 * Responsive variants:
 *   u-d-md-flex
 *   u-p-lg-4
 *   u-mt-xl-5
 *
 * No Bootstrap dependency.
 */


/* =========================================================
   DISPLAY
   ========================================================= */

.u-d-none { display: none !important; }
.u-d-inline { display: inline !important; }
.u-d-inline-block { display: inline-block !important; }
.u-d-block { display: block !important; }
.u-d-table { display: table !important; }
.u-d-table-row { display: table-row !important; }
.u-d-table-cell { display: table-cell !important; }
.u-d-flex { display: flex !important; }
.u-d-inline-flex { display: inline-flex !important; }
.u-d-grid { display: grid !important; }


/* =========================================================
   FLEX
   ========================================================= */

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

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

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

.u-justify-content-start {
    justify-content: flex-start !important;
}

.u-justify-content-end {
    justify-content: flex-end !important;
}

.u-justify-content-center {
    justify-content: center !important;
}

.u-justify-content-between {
    justify-content: space-between !important;
}

.u-justify-content-around {
    justify-content: space-around !important;
}

.u-justify-content-evenly {
    justify-content: space-evenly !important;
}

.u-align-items-start {
    align-items: flex-start !important;
}

.u-align-items-end {
    align-items: flex-end !important;
}

.u-align-items-center {
    align-items: center !important;
}

.u-align-items-baseline {
    align-items: baseline !important;
}

.u-align-items-stretch {
    align-items: stretch !important;
}

.u-align-content-start {
    align-content: flex-start !important;
}

.u-align-content-end {
    align-content: flex-end !important;
}

.u-align-content-center {
    align-content: center !important;
}

.u-align-content-between {
    align-content: space-between !important;
}

.u-align-content-around {
    align-content: space-around !important;
}

.u-align-content-stretch {
    align-content: stretch !important;
}

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


/* =========================================================
   GAP
   ========================================================= */

.u-gap-0 { gap: 0 !important; }
.u-gap-1 { gap: .25rem !important; }
.u-gap-2 { gap: .5rem !important; }
.u-gap-3 { gap: 1rem !important; }
.u-gap-4 { gap: 1.5rem !important; }
.u-gap-5 { gap: 3rem !important; }

.u-row-gap-0 { row-gap: 0 !important; }
.u-row-gap-1 { row-gap: .25rem !important; }
.u-row-gap-2 { row-gap: .5rem !important; }
.u-row-gap-3 { row-gap: 1rem !important; }
.u-row-gap-4 { row-gap: 1.5rem !important; }
.u-row-gap-5 { row-gap: 3rem !important; }

.u-column-gap-0 { column-gap: 0 !important; }
.u-column-gap-1 { column-gap: .25rem !important; }
.u-column-gap-2 { column-gap: .5rem !important; }
.u-column-gap-3 { column-gap: 1rem !important; }
.u-column-gap-4 { column-gap: 1.5rem !important; }
.u-column-gap-5 { column-gap: 3rem !important; }


/* =========================================================
   MARGIN
   Bootstrap spacing scale
   ========================================================= */

.u-m-0 { margin: 0 !important; }
.u-m-1 { margin: .25rem !important; }
.u-m-2 { margin: .5rem !important; }
.u-m-3 { margin: 1rem !important; }
.u-m-4 { margin: 1.5rem !important; }
.u-m-5 { margin: 3rem !important; }
.u-m-auto { margin: auto !important; }

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

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

.u-ms-0 { margin-left: 0 !important; }
.u-ms-1 { margin-left: .25rem !important; }
.u-ms-2 { margin-left: .5rem !important; }
.u-ms-3 { margin-left: 1rem !important; }
.u-ms-4 { margin-left: 1.5rem !important; }
.u-ms-5 { margin-left: 3rem !important; }
.u-ms-auto { margin-left: auto !important; }

.u-me-0 { margin-right: 0 !important; }
.u-me-1 { margin-right: .25rem !important; }
.u-me-2 { margin-right: .5rem !important; }
.u-me-3 { margin-right: 1rem !important; }
.u-me-4 { margin-right: 1.5rem !important; }
.u-me-5 { margin-right: 3rem !important; }
.u-me-auto { margin-right: auto !important; }

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

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


/* =========================================================
   PADDING
   ========================================================= */

.u-p-0 { padding: 0 !important; }
.u-p-1 { padding: .25rem !important; }
.u-p-2 { padding: .5rem !important; }
.u-p-3 { padding: 1rem !important; }
.u-p-4 { padding: 1.5rem !important; }
.u-p-5 { padding: 3rem !important; }

.u-pt-0 { padding-top: 0 !important; }
.u-pt-1 { padding-top: .25rem !important; }
.u-pt-2 { padding-top: .5rem !important; }
.u-pt-3 { padding-top: 1rem !important; }
.u-pt-4 { padding-top: 1.5rem !important; }
.u-pt-5 { padding-top: 3rem !important; }

.u-pb-0 { padding-bottom: 0 !important; }
.u-pb-1 { padding-bottom: .25rem !important; }
.u-pb-2 { padding-bottom: .5rem !important; }
.u-pb-3 { padding-bottom: 1rem !important; }
.u-pb-4 { padding-bottom: 1.5rem !important; }
.u-pb-5 { padding-bottom: 3rem !important; }

.u-ps-0 { padding-left: 0 !important; }
.u-ps-1 { padding-left: .25rem !important; }
.u-ps-2 { padding-left: .5rem !important; }
.u-ps-3 { padding-left: 1rem !important; }
.u-ps-4 { padding-left: 1.5rem !important; }
.u-ps-5 { padding-left: 3rem !important; }

.u-pe-0 { padding-right: 0 !important; }
.u-pe-1 { padding-right: .25rem !important; }
.u-pe-2 { padding-right: .5rem !important; }
.u-pe-3 { padding-right: 1rem !important; }
.u-pe-4 { padding-right: 1.5rem !important; }
.u-pe-5 { padding-right: 3rem !important; }

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

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


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.u-text-start { text-align: left !important; }
.u-text-center { text-align: center !important; }
.u-text-end { text-align: right !important; }

.u-text-wrap {
    white-space: normal !important;
}

.u-text-nowrap {
    white-space: nowrap !important;
}

.u-text-lowercase {
    text-transform: lowercase !important;
}

.u-text-uppercase {
    text-transform: uppercase !important;
}

.u-text-capitalize {
    text-transform: capitalize !important;
}

.u-text-break {
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
}

.u-text-truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.u-fst-normal { font-style: normal !important; }
.u-fst-italic { font-style: italic !important; }

.u-fw-light { font-weight: 300 !important; }
.u-fw-normal { font-weight: 400 !important; }
.u-fw-medium { font-weight: 500 !important; }
.u-fw-semibold { font-weight: 600 !important; }
.u-fw-bold { font-weight: 700 !important; }
.u-fw-bolder { font-weight: bolder !important; }

.u-fs-1 { font-size: 2.5rem !important; }
.u-fs-2 { font-size: 2rem !important; }
.u-fs-3 { font-size: 1.75rem !important; }
.u-fs-4 { font-size: 1.5rem !important; }
.u-fs-5 { font-size: 1.25rem !important; }
.u-fs-6 { font-size: 1rem !important; }


/* =========================================================
   LINE HEIGHT
   ========================================================= */

.u-lh-1 { line-height: 1 !important; }
.u-lh-sm { line-height: 1.25 !important; }
.u-lh-base { line-height: 1.5 !important; }
.u-lh-lg { line-height: 2 !important; }


/* =========================================================
   VERTICAL ALIGN
   ========================================================= */

.u-align-baseline { vertical-align: baseline !important; }
.u-align-top { vertical-align: top !important; }
.u-align-middle { vertical-align: middle !important; }
.u-align-bottom { vertical-align: bottom !important; }
.u-align-text-top { vertical-align: text-top !important; }
.u-align-text-bottom { vertical-align: text-bottom !important; }


/* =========================================================
   WIDTH / HEIGHT
   ========================================================= */

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

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

.u-mw-100 { max-width: 100% !important; }
.u-mh-100 { max-height: 100% !important; }

.u-vw-100 { width: 100vw !important; }
.u-vh-100 { height: 100vh !important; }


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

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

.u-top-0 { top: 0 !important; }
.u-top-50 { top: 50% !important; }
.u-top-100 { top: 100% !important; }

.u-bottom-0 { bottom: 0 !important; }
.u-bottom-50 { bottom: 50% !important; }
.u-bottom-100 { bottom: 100% !important; }

.u-start-0 { left: 0 !important; }
.u-start-50 { left: 50% !important; }
.u-start-100 { left: 100% !important; }

.u-end-0 { right: 0 !important; }
.u-end-50 { right: 50% !important; }
.u-end-100 { right: 100% !important; }

.u-translate-middle {
    transform: translate(-50%, -50%) !important;
}

.u-translate-middle-x {
    transform: translateX(-50%) !important;
}

.u-translate-middle-y {
    transform: translateY(-50%) !important;
}


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

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

.u-overflow-x-auto { overflow-x: auto !important; }
.u-overflow-x-hidden { overflow-x: hidden !important; }
.u-overflow-y-auto { overflow-y: auto !important; }
.u-overflow-y-hidden { overflow-y: hidden !important; }


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

.u-visible {
    visibility: visible !important;
}

.u-invisible {
    visibility: hidden !important;
}


/* =========================================================
   OPACITY
   ========================================================= */

.u-opacity-0 { opacity: 0 !important; }
.u-opacity-25 { opacity: .25 !important; }
.u-opacity-50 { opacity: .5 !important; }
.u-opacity-75 { opacity: .75 !important; }
.u-opacity-100 { opacity: 1 !important; }


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

.u-border {
    border: 1px solid #dee2e6 !important;
}

.u-border-0 {
    border: 0 !important;
}

.u-border-top {
    border-top: 1px solid #dee2e6 !important;
}

.u-border-end {
    border-right: 1px solid #dee2e6 !important;
}

.u-border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.u-border-start {
    border-left: 1px solid #dee2e6 !important;
}

.u-rounded {
    border-radius: .375rem !important;
}

.u-rounded-0 {
    border-radius: 0 !important;
}

.u-rounded-1 {
    border-radius: .25rem !important;
}

.u-rounded-2 {
    border-radius: .375rem !important;
}

.u-rounded-3 {
    border-radius: .5rem !important;
}

.u-rounded-circle {
    border-radius: 50% !important;
}

.u-rounded-pill {
    border-radius: 50rem !important;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.u-bg-transparent {
    background-color: transparent !important;
}


/* =========================================================
   OBJECT
   ========================================================= */

.u-object-fit-contain {
    object-fit: contain !important;
}

.u-object-fit-cover {
    object-fit: cover !important;
}

.u-object-fit-fill {
    object-fit: fill !important;
}

.u-object-fit-none {
    object-fit: none !important;
}

.u-object-fit-scale {
    object-fit: scale-down !important;
}


/* =========================================================
   USER SELECT
   ========================================================= */

.u-user-select-all {
    user-select: all !important;
}

.u-user-select-auto {
    user-select: auto !important;
}

.u-user-select-none {
    user-select: none !important;
}


/* =========================================================
   POINTER EVENTS
   ========================================================= */

.u-pe-none {
    pointer-events: none !important;
}

.u-pe-auto {
    pointer-events: auto !important;
}


/* =========================================================
   CURSOR
   ========================================================= */

.u-cursor-pointer {
    cursor: pointer !important;
}

.u-cursor-default {
    cursor: default !important;
}


/* =========================================================
   Z-INDEX
   ========================================================= */

.u-z-n1 { z-index: -1 !important; }
.u-z-0 { z-index: 0 !important; }
.u-z-1 { z-index: 1 !important; }
.u-z-2 { z-index: 2 !important; }
.u-z-3 { z-index: 3 !important; }


/* =========================================================
   RESPONSIVE - SM
   >= 576px
   ========================================================= */

@media (min-width: 576px) {

    .u-d-sm-none { display: none !important; }
    .u-d-sm-block { display: block !important; }
    .u-d-sm-inline { display: inline !important; }
    .u-d-sm-inline-block { display: inline-block !important; }
    .u-d-sm-flex { display: flex !important; }
    .u-d-sm-inline-flex { display: inline-flex !important; }
    .u-d-sm-grid { display: grid !important; }

    .u-flex-sm-row { flex-direction: row !important; }
    .u-flex-sm-column { flex-direction: column !important; }

    .u-flex-sm-wrap { flex-wrap: wrap !important; }
    .u-flex-sm-nowrap { flex-wrap: nowrap !important; }

    .u-justify-content-sm-start { justify-content: flex-start !important; }
    .u-justify-content-sm-end { justify-content: flex-end !important; }
    .u-justify-content-sm-center { justify-content: center !important; }
    .u-justify-content-sm-between { justify-content: space-between !important; }

    .u-align-items-sm-start { align-items: flex-start !important; }
    .u-align-items-sm-end { align-items: flex-end !important; }
    .u-align-items-sm-center { align-items: center !important; }

    .u-m-sm-0 { margin: 0 !important; }
    .u-m-sm-1 { margin: .25rem !important; }
    .u-m-sm-2 { margin: .5rem !important; }
    .u-m-sm-3 { margin: 1rem !important; }
    .u-m-sm-4 { margin: 1.5rem !important; }
    .u-m-sm-5 { margin: 3rem !important; }

    .u-p-sm-0 { padding: 0 !important; }
    .u-p-sm-1 { padding: .25rem !important; }
    .u-p-sm-2 { padding: .5rem !important; }
    .u-p-sm-3 { padding: 1rem !important; }
    .u-p-sm-4 { padding: 1.5rem !important; }
    .u-p-sm-5 { padding: 3rem !important; }

    .u-text-sm-start { text-align: left !important; }
    .u-text-sm-center { text-align: center !important; }
    .u-text-sm-end { text-align: right !important; }
}


/* =========================================================
   RESPONSIVE - MD
   >= 768px
   ========================================================= */

@media (min-width: 768px) {

    .u-d-md-none { display: none !important; }
    .u-d-md-block { display: block !important; }
    .u-d-md-inline { display: inline !important; }
    .u-d-md-inline-block { display: inline-block !important; }
    .u-d-md-flex { display: flex !important; }
    .u-d-md-inline-flex { display: inline-flex !important; }
    .u-d-md-grid { display: grid !important; }

    .u-flex-md-row { flex-direction: row !important; }
    .u-flex-md-column { flex-direction: column !important; }

    .u-flex-md-wrap { flex-wrap: wrap !important; }
    .u-flex-md-nowrap { flex-wrap: nowrap !important; }

    .u-justify-content-md-start { justify-content: flex-start !important; }
    .u-justify-content-md-end { justify-content: flex-end !important; }
    .u-justify-content-md-center { justify-content: center !important; }
    .u-justify-content-md-between { justify-content: space-between !important; }

    .u-align-items-md-start { align-items: flex-start !important; }
    .u-align-items-md-end { align-items: flex-end !important; }
    .u-align-items-md-center { align-items: center !important; }

    .u-m-md-0 { margin: 0 !important; }
    .u-m-md-1 { margin: .25rem !important; }
    .u-m-md-2 { margin: .5rem !important; }
    .u-m-md-3 { margin: 1rem !important; }
    .u-m-md-4 { margin: 1.5rem !important; }
    .u-m-md-5 { margin: 3rem !important; }
    .u-m-md-auto { margin: auto !important; }

    .u-mt-md-0 { margin-top: 0 !important; }
    .u-mt-md-1 { margin-top: .25rem !important; }
    .u-mt-md-2 { margin-top: .5rem !important; }
    .u-mt-md-3 { margin-top: 1rem !important; }
    .u-mt-md-4 { margin-top: 1.5rem !important; }
    .u-mt-md-5 { margin-top: 3rem !important; }

    .u-mb-md-0 { margin-bottom: 0 !important; }
    .u-mb-md-1 { margin-bottom: .25rem !important; }
    .u-mb-md-2 { margin-bottom: .5rem !important; }
    .u-mb-md-3 { margin-bottom: 1rem !important; }
    .u-mb-md-4 { margin-bottom: 1.5rem !important; }
    .u-mb-md-5 { margin-bottom: 3rem !important; }

    .u-p-md-0 { padding: 0 !important; }
    .u-p-md-1 { padding: .25rem !important; }
    .u-p-md-2 { padding: .5rem !important; }
    .u-p-md-3 { padding: 1rem !important; }
    .u-p-md-4 { padding: 1.5rem !important; }
    .u-p-md-5 { padding: 3rem !important; }

    .u-text-md-start { text-align: left !important; }
    .u-text-md-center { text-align: center !important; }
    .u-text-md-end { text-align: right !important; }
}


/* =========================================================
   RESPONSIVE - LG
   >= 992px
   ========================================================= */

@media (min-width: 992px) {

    .u-d-lg-none { display: none !important; }
    .u-d-lg-block { display: block !important; }
    .u-d-lg-inline { display: inline !important; }
    .u-d-lg-inline-block { display: inline-block !important; }
    .u-d-lg-flex { display: flex !important; }
    .u-d-lg-inline-flex { display: inline-flex !important; }
    .u-d-lg-grid { display: grid !important; }

    .u-flex-lg-row { flex-direction: row !important; }
    .u-flex-lg-column { flex-direction: column !important; }

    .u-flex-lg-wrap { flex-wrap: wrap !important; }
    .u-flex-lg-nowrap { flex-wrap: nowrap !important; }

    .u-justify-content-lg-start { justify-content: flex-start !important; }
    .u-justify-content-lg-end { justify-content: flex-end !important; }
    .u-justify-content-lg-center { justify-content: center !important; }
    .u-justify-content-lg-between { justify-content: space-between !important; }

    .u-align-items-lg-start { align-items: flex-start !important; }
    .u-align-items-lg-end { align-items: flex-end !important; }
    .u-align-items-lg-center { align-items: center !important; }

    .u-m-lg-0 { margin: 0 !important; }
    .u-m-lg-1 { margin: .25rem !important; }
    .u-m-lg-2 { margin: .5rem !important; }
    .u-m-lg-3 { margin: 1rem !important; }
    .u-m-lg-4 { margin: 1.5rem !important; }
    .u-m-lg-5 { margin: 3rem !important; }
    .u-m-lg-auto { margin: auto !important; }

    .u-mt-lg-0 { margin-top: 0 !important; }
    .u-mt-lg-1 { margin-top: .25rem !important; }
    .u-mt-lg-2 { margin-top: .5rem !important; }
    .u-mt-lg-3 { margin-top: 1rem !important; }
    .u-mt-lg-4 { margin-top: 1.5rem !important; }
    .u-mt-lg-5 { margin-top: 3rem !important; }

    .u-mb-lg-0 { margin-bottom: 0 !important; }
    .u-mb-lg-1 { margin-bottom: .25rem !important; }
    .u-mb-lg-2 { margin-bottom: .5rem !important; }
    .u-mb-lg-3 { margin-bottom: 1rem !important; }
    .u-mb-lg-4 { margin-bottom: 1.5rem !important; }
    .u-mb-lg-5 { margin-bottom: 3rem !important; }

    .u-p-lg-0 { padding: 0 !important; }
    .u-p-lg-1 { padding: .25rem !important; }
    .u-p-lg-2 { padding: .5rem !important; }
    .u-p-lg-3 { padding: 1rem !important; }
    .u-p-lg-4 { padding: 1.5rem !important; }
    .u-p-lg-5 { padding: 3rem !important; }

    .u-text-lg-start { text-align: left !important; }
    .u-text-lg-center { text-align: center !important; }
    .u-text-lg-end { text-align: right !important; }
}


/* =========================================================
   RESPONSIVE - XL
   >= 1200px
   ========================================================= */

@media (min-width: 1200px) {

    .u-d-xl-none { display: none !important; }
    .u-d-xl-block { display: block !important; }
    .u-d-xl-inline { display: inline !important; }
    .u-d-xl-inline-block { display: inline-block !important; }
    .u-d-xl-flex { display: flex !important; }
    .u-d-xl-inline-flex { display: inline-flex !important; }
    .u-d-xl-grid { display: grid !important; }

    .u-flex-xl-row { flex-direction: row !important; }
    .u-flex-xl-column { flex-direction: column !important; }

    .u-flex-xl-wrap { flex-wrap: wrap !important; }
    .u-flex-xl-nowrap { flex-wrap: nowrap !important; }

    .u-justify-content-xl-start { justify-content: flex-start !important; }
    .u-justify-content-xl-end { justify-content: flex-end !important; }
    .u-justify-content-xl-center { justify-content: center !important; }
    .u-justify-content-xl-between { justify-content: space-between !important; }

    .u-align-items-xl-start { align-items: flex-start !important; }
    .u-align-items-xl-end { align-items: flex-end !important; }
    .u-align-items-xl-center { align-items: center !important; }

    .u-m-xl-0 { margin: 0 !important; }
    .u-m-xl-1 { margin: .25rem !important; }
    .u-m-xl-2 { margin: .5rem !important; }
    .u-m-xl-3 { margin: 1rem !important; }
    .u-m-xl-4 { margin: 1.5rem !important; }
    .u-m-xl-5 { margin: 3rem !important; }

    .u-mt-xl-0 { margin-top: 0 !important; }
    .u-mt-xl-1 { margin-top: .25rem !important; }
    .u-mt-xl-2 { margin-top: .5rem !important; }
    .u-mt-xl-3 { margin-top: 1rem !important; }
    .u-mt-xl-4 { margin-top: 1.5rem !important; }
    .u-mt-xl-5 { margin-top: 3rem !important; }

    .u-mb-xl-0 { margin-bottom: 0 !important; }
    .u-mb-xl-1 { margin-bottom: .25rem !important; }
    .u-mb-xl-2 { margin-bottom: .5rem !important; }
    .u-mb-xl-3 { margin-bottom: 1rem !important; }
    .u-mb-xl-4 { margin-bottom: 1.5rem !important; }
    .u-mb-xl-5 { margin-bottom: 3rem !important; }

    .u-p-xl-0 { padding: 0 !important; }
    .u-p-xl-1 { padding: .25rem !important; }
    .u-p-xl-2 { padding: .5rem !important; }
    .u-p-xl-3 { padding: 1rem !important; }
    .u-p-xl-4 { padding: 1.5rem !important; }
    .u-p-xl-5 { padding: 3rem !important; }

    .u-text-xl-start { text-align: left !important; }
    .u-text-xl-center { text-align: center !important; }
    .u-text-xl-end { text-align: right !important; }
}


/* =========================================================
   RESPONSIVE - XXL
   >= 1400px
   ========================================================= */

@media (min-width: 1400px) {

    .u-d-xxl-none { display: none !important; }
    .u-d-xxl-block { display: block !important; }
    .u-d-xxl-inline { display: inline !important; }
    .u-d-xxl-inline-block { display: inline-block !important; }
    .u-d-xxl-flex { display: flex !important; }
    .u-d-xxl-inline-flex { display: inline-flex !important; }
    .u-d-xxl-grid { display: grid !important; }

    .u-flex-xxl-row { flex-direction: row !important; }
    .u-flex-xxl-column { flex-direction: column !important; }

    .u-flex-xxl-wrap { flex-wrap: wrap !important; }
    .u-flex-xxl-nowrap { flex-wrap: nowrap !important; }

    .u-justify-content-xxl-start {
        justify-content: flex-start !important;
    }

    .u-justify-content-xxl-end {
        justify-content: flex-end !important;
    }

    .u-justify-content-xxl-center {
        justify-content: center !important;
    }

    .u-justify-content-xxl-between {
        justify-content: space-between !important;
    }

    .u-align-items-xxl-start {
        align-items: flex-start !important;
    }

    .u-align-items-xxl-end {
        align-items: flex-end !important;
    }

    .u-align-items-xxl-center {
        align-items: center !important;
    }

    .u-m-xxl-0 { margin: 0 !important; }
    .u-m-xxl-1 { margin: .25rem !important; }
    .u-m-xxl-2 { margin: .5rem !important; }
    .u-m-xxl-3 { margin: 1rem !important; }
    .u-m-xxl-4 { margin: 1.5rem !important; }
    .u-m-xxl-5 { margin: 3rem !important; }

    .u-p-xxl-0 { padding: 0 !important; }
    .u-p-xxl-1 { padding: .25rem !important; }
    .u-p-xxl-2 { padding: .5rem !important; }
    .u-p-xxl-3 { padding: 1rem !important; }
    .u-p-xxl-4 { padding: 1.5rem !important; }
    .u-p-xxl-5 { padding: 3rem !important; }

    .u-text-xxl-start { text-align: left !important; }
    .u-text-xxl-center { text-align: center !important; }
    .u-text-xxl-end { text-align: right !important; }
}