/* Bootstrap 5 Flex Utilities - Custom Reference with dr1 prefix */

/* Display Flex */
.dr1-d-flex {
    display: flex !important;
}
.dr1-d-inline-flex {
    display: inline-flex !important;
}

/* Flex Direction */
.dr1-flex-row {
    flex-direction: row !important;
}
.dr1-flex-row-reverse {
    flex-direction: row-reverse !important; 
}
.dr1-flex-column {
    flex-direction: column !important;
}
.dr1-flex-column-reverse {
    flex-direction: column-reverse !important;
}

/* Flex Wrap */
.dr1-flex-wrap {
    flex-wrap: wrap !important;
}
.dr1-flex-nowrap {
    flex-wrap: nowrap !important;
}
.dr1-flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

/* Justify Content */
.dr1-justify-content-start {
    justify-content: flex-start !important;
}
.dr1-justify-content-end {
    justify-content: flex-end !important;
}
.dr1-justify-content-center {
    justify-content: center !important;
}
.dr1-justify-content-between {
    justify-content: space-between !important;
}
.dr1-justify-content-around {
    justify-content: space-around !important;
}
.dr1-justify-content-evenly {
    justify-content: space-evenly !important;
}

/* Align Items */
.dr1-align-items-start {
    align-items: flex-start !important;
}
.dr1-align-items-end {
    align-items: flex-end !important;
}
.dr1-align-items-center {
    align-items: center !important;
}
.dr1-align-items-baseline {
    align-items: baseline !important;
}
.dr1-align-items-stretch {
    align-items: stretch !important;
}

/* Align Self */
.dr1-align-self-auto {
    align-self: auto !important;
}
.dr1-align-self-start {
    align-self: flex-start !important;
}
.dr1-align-self-end {
    align-self: flex-end !important;
}
.dr1-align-self-center {
    align-self: center !important;
}
.dr1-align-self-baseline {
    align-self: baseline !important;
}
.dr1-align-self-stretch {
    align-self: stretch !important;
}

/* Align Content */
.dr1-align-content-start {
    align-content: flex-start !important;
}
.dr1-align-content-end {
    align-content: flex-end !important;
}
.dr1-align-content-center {
    align-content: center !important;
}
.dr1-align-content-between {
    align-content: space-between !important;
}
.dr1-align-content-around {
    align-content: space-around !important;
}
.dr1-align-content-stretch {
    align-content: stretch !important;
}

/* Flex Grow & Shrink */
.dr1-flex-grow-0 {
    flex-grow: 0 !important;
}
.dr1-flex-grow-1 {
    flex-grow: 1 !important;
}
.dr1-flex-shrink-0 {
    flex-shrink: 0 !important;
}
.dr1-flex-shrink-1 {
    flex-shrink: 1 !important;
}

/* Flex Fill */
.dr1-flex-fill {
    flex: 1 1 auto !important;
}

/* Gap Utilities */
.dr1-gap-0 { gap: 0 !important; }
.dr1-gap-1 { gap: 0.25rem !important; }
.dr1-gap-2 { gap: 0.5rem !important; }
.dr1-gap-3 { gap: 1rem !important; }
.dr1-gap-4 { gap: 1.5rem !important; }
.dr1-gap-5 { gap: 3rem !important; }
.dr1-row-gap-0 { row-gap: 0 !important; }
.dr1-row-gap-1 { row-gap: 0.25rem !important; }
.dr1-row-gap-2 { row-gap: 0.5rem !important; }
.dr1-row-gap-3 { row-gap: 1rem !important; }
.dr1-row-gap-4 { row-gap: 1.5rem !important; }
.dr1-row-gap-5 { row-gap: 3rem !important; }
.dr1-column-gap-0 { column-gap: 0 !important; }
.dr1-column-gap-1 { column-gap: 0.25rem !important; }
.dr1-column-gap-2 { column-gap: 0.5rem !important; }
.dr1-column-gap-3 { column-gap: 1rem !important; }
.dr1-column-gap-4 { column-gap: 1.5rem !important; }
.dr1-column-gap-5 { column-gap: 3rem !important; }

/* Responsive Gap Utilities */
@media (min-width: 576px) {
    .dr1-gap-sm-0 { gap: 0 !important; }
    .dr1-gap-sm-1 { gap: 0.25rem !important; }
    .dr1-gap-sm-2 { gap: 0.5rem !important; }
    .dr1-gap-sm-3 { gap: 1rem !important; }
    .dr1-gap-sm-4 { gap: 1.5rem !important; }
    .dr1-gap-sm-5 { gap: 3rem !important; }
    .dr1-row-gap-sm-0 { row-gap: 0 !important; }
    .dr1-row-gap-sm-1 { row-gap: 0.25rem !important; }
    .dr1-row-gap-sm-2 { row-gap: 0.5rem !important; }
    .dr1-row-gap-sm-3 { row-gap: 1rem !important; }
    .dr1-row-gap-sm-4 { row-gap: 1.5rem !important; }
    .dr1-row-gap-sm-5 { row-gap: 3rem !important; }
    .dr1-column-gap-sm-0 { column-gap: 0 !important; }
    .dr1-column-gap-sm-1 { column-gap: 0.25rem !important; }
    .dr1-column-gap-sm-2 { column-gap: 0.5rem !important; }
    .dr1-column-gap-sm-3 { column-gap: 1rem !important; }
    .dr1-column-gap-sm-4 { column-gap: 1.5rem !important; }
    .dr1-column-gap-sm-5 { column-gap: 3rem !important; }

    .dr1-d-sm-flex { display: flex !important; }
    .dr1-d-sm-inline-flex { display: inline-flex !important; }
    .dr1-flex-sm-row { flex-direction: row !important; }
    .dr1-flex-sm-row-reverse { flex-direction: row-reverse !important; }
    .dr1-flex-sm-column { flex-direction: column !important; }
    .dr1-flex-sm-column-reverse { flex-direction: column-reverse !important; }
    .dr1-flex-sm-wrap { flex-wrap: wrap !important; }
    .dr1-flex-sm-nowrap { flex-wrap: nowrap !important; }
    .dr1-flex-sm-wrap-reverse { flex-wrap: wrap-reverse !important; }
    .dr1-justify-content-sm-start { justify-content: flex-start !important; }
    .dr1-justify-content-sm-end { justify-content: flex-end !important; }
    .dr1-justify-content-sm-center { justify-content: center !important; }
    .dr1-justify-content-sm-between { justify-content: space-between !important; }
    .dr1-justify-content-sm-around { justify-content: space-around !important; }
    .dr1-justify-content-sm-evenly { justify-content: space-evenly !important; }
    .dr1-align-items-sm-start { align-items: flex-start !important; }
    .dr1-align-items-sm-end { align-items: flex-end !important; }
    .dr1-align-items-sm-center { align-items: center !important; }
    .dr1-align-items-sm-baseline { align-items: baseline !important; }
    .dr1-align-items-sm-stretch { align-items: stretch !important; }
    .dr1-align-self-sm-auto { align-self: auto !important; }
    .dr1-align-self-sm-start { align-self: flex-start !important; }
    .dr1-align-self-sm-end { align-self: flex-end !important; }
    .dr1-align-self-sm-center { align-self: center !important; }
    .dr1-align-self-sm-baseline { align-self: baseline !important; }
    .dr1-align-self-sm-stretch { align-self: stretch !important; }
    .dr1-align-content-sm-start { align-content: flex-start !important; }
    .dr1-align-content-sm-end { align-content: flex-end !important; }
    .dr1-align-content-sm-center { align-content: center !important; }
    .dr1-align-content-sm-between { align-content: space-between !important; }
    .dr1-align-content-sm-around { align-content: space-around !important; }
    .dr1-align-content-sm-stretch { align-content: stretch !important; }
    .dr1-flex-sm-grow-0 { flex-grow: 0 !important; }
    .dr1-flex-sm-grow-1 { flex-grow: 1 !important; }
    .dr1-flex-sm-shrink-0 { flex-shrink: 0 !important; }
    .dr1-flex-sm-shrink-1 { flex-shrink: 1 !important; }
    .dr1-flex-sm-fill { flex: 1 1 auto !important; }
}
@media (min-width: 768px) {
    .dr1-gap-md-0 { gap: 0 !important; }
    .dr1-gap-md-1 { gap: 0.25rem !important; }
    .dr1-gap-md-2 { gap: 0.5rem !important; }
    .dr1-gap-md-3 { gap: 1rem !important; }
    .dr1-gap-md-4 { gap: 1.5rem !important; }
    .dr1-gap-md-5 { gap: 3rem !important; }
    .dr1-row-gap-md-0 { row-gap: 0 !important; }
    .dr1-row-gap-md-1 { row-gap: 0.25rem !important; }
    .dr1-row-gap-md-2 { row-gap: 0.5rem !important; }
    .dr1-row-gap-md-3 { row-gap: 1rem !important; }
    .dr1-row-gap-md-4 { row-gap: 1.5rem !important; }
    .dr1-row-gap-md-5 { row-gap: 3rem !important; }
    .dr1-column-gap-md-0 { column-gap: 0 !important; }
    .dr1-column-gap-md-1 { column-gap: 0.25rem !important; }
    .dr1-column-gap-md-2 { column-gap: 0.5rem !important; }
    .dr1-column-gap-md-3 { column-gap: 1rem !important; }
    .dr1-column-gap-md-4 { column-gap: 1.5rem !important; }
    .dr1-column-gap-md-5 { column-gap: 3rem !important; }

    .dr1-d-md-flex { display: flex !important; }
    .dr1-d-md-inline-flex { display: inline-flex !important; }
    .dr1-flex-md-row { flex-direction: row !important; }
    .dr1-flex-md-row-reverse { flex-direction: row-reverse !important; }
    .dr1-flex-md-column { flex-direction: column !important; }
    .dr1-flex-md-column-reverse { flex-direction: column-reverse !important; }
    .dr1-flex-md-wrap { flex-wrap: wrap !important; }
    .dr1-flex-md-nowrap { flex-wrap: nowrap !important; }
    .dr1-flex-md-wrap-reverse { flex-wrap: wrap-reverse !important; }
    .dr1-justify-content-md-start { justify-content: flex-start !important; }
    .dr1-justify-content-md-end { justify-content: flex-end !important; }
    .dr1-justify-content-md-center { justify-content: center !important; }
    .dr1-justify-content-md-between { justify-content: space-between !important; }
    .dr1-justify-content-md-around { justify-content: space-around !important; }
    .dr1-justify-content-md-evenly { justify-content: space-evenly !important; }
    .dr1-align-items-md-start { align-items: flex-start !important; }
    .dr1-align-items-md-end { align-items: flex-end !important; }
    .dr1-align-items-md-center { align-items: center !important; }
    .dr1-align-items-md-baseline { align-items: baseline !important; }
    .dr1-align-items-md-stretch { align-items: stretch !important; }
    .dr1-align-self-md-auto { align-self: auto !important; }
    .dr1-align-self-md-start { align-self: flex-start !important; }
    .dr1-align-self-md-end { align-self: flex-end !important; }
    .dr1-align-self-md-center { align-self: center !important; }
    .dr1-align-self-md-baseline { align-self: baseline !important; }
    .dr1-align-self-md-stretch { align-self: stretch !important; }
    .dr1-align-content-md-start { align-content: flex-start !important; }
    .dr1-align-content-md-end { align-content: flex-end !important; }
    .dr1-align-content-md-center { align-content: center !important; }
    .dr1-align-content-md-between { align-content: space-between !important; }
    .dr1-align-content-md-around { align-content: space-around !important; }
    .dr1-align-content-md-stretch { align-content: stretch !important; }
    .dr1-flex-md-grow-0 { flex-grow: 0 !important; }
    .dr1-flex-md-grow-1 { flex-grow: 1 !important; }
    .dr1-flex-md-shrink-0 { flex-shrink: 0 !important; }
    .dr1-flex-md-shrink-1 { flex-shrink: 1 !important; }
    .dr1-flex-md-fill { flex: 1 1 auto !important; }
}
@media (min-width: 992px) {
    .dr1-gap-lg-0 { gap: 0 !important; }
    .dr1-gap-lg-1 { gap: 0.25rem !important; }
    .dr1-gap-lg-2 { gap: 0.5rem !important; }
    .dr1-gap-lg-3 { gap: 1rem !important; }
    .dr1-gap-lg-4 { gap: 1.5rem !important; }
    .dr1-gap-lg-5 { gap: 3rem !important; }
    .dr1-row-gap-lg-0 { row-gap: 0 !important; }
    .dr1-row-gap-lg-1 { row-gap: 0.25rem !important; }
    .dr1-row-gap-lg-2 { row-gap: 0.5rem !important; }
    .dr1-row-gap-lg-3 { row-gap: 1rem !important; }
    .dr1-row-gap-lg-4 { row-gap: 1.5rem !important; }
    .dr1-row-gap-lg-5 { row-gap: 3rem !important; }
    .dr1-column-gap-lg-0 { column-gap: 0 !important; }
    .dr1-column-gap-lg-1 { column-gap: 0.25rem !important; }
    .dr1-column-gap-lg-2 { column-gap: 0.5rem !important; }
    .dr1-column-gap-lg-3 { column-gap: 1rem !important; }
    .dr1-column-gap-lg-4 { column-gap: 1.5rem !important; }
    .dr1-column-gap-lg-5 { column-gap: 3rem !important; }

    .dr1-d-lg-flex { display: flex !important; }
    .dr1-d-lg-inline-flex { display: inline-flex !important; }
    .dr1-flex-lg-row { flex-direction: row !important; }
    .dr1-flex-lg-row-reverse { flex-direction: row-reverse !important; }
    .dr1-flex-lg-column { flex-direction: column !important; }
    .dr1-flex-lg-column-reverse { flex-direction: column-reverse !important; }
    .dr1-flex-lg-wrap { flex-wrap: wrap !important; }
    .dr1-flex-lg-nowrap { flex-wrap: nowrap !important; }
    .dr1-flex-lg-wrap-reverse { flex-wrap: wrap-reverse !important; }
    .dr1-justify-content-lg-start { justify-content: flex-start !important; }
    .dr1-justify-content-lg-end { justify-content: flex-end !important; }
    .dr1-justify-content-lg-center { justify-content: center !important; }
    .dr1-justify-content-lg-between { justify-content: space-between !important; }
    .dr1-justify-content-lg-around { justify-content: space-around !important; }
    .dr1-justify-content-lg-evenly { justify-content: space-evenly !important; }
    .dr1-align-items-lg-start { align-items: flex-start !important; }
    .dr1-align-items-lg-end { align-items: flex-end !important; }
    .dr1-align-items-lg-center { align-items: center !important; }
    .dr1-align-items-lg-baseline { align-items: baseline !important; }
    .dr1-align-items-lg-stretch { align-items: stretch !important; }
    .dr1-align-self-lg-auto { align-self: auto !important; }
    .dr1-align-self-lg-start { align-self: flex-start !important; }
    .dr1-align-self-lg-end { align-self: flex-end !important; }
    .dr1-align-self-lg-center { align-self: center !important; }
    .dr1-align-self-lg-baseline { align-self: baseline !important; }
    .dr1-align-self-lg-stretch { align-self: stretch !important; }
    .dr1-align-content-lg-start { align-content: flex-start !important; }
    .dr1-align-content-lg-end { align-content: flex-end !important; }
    .dr1-align-content-lg-center { align-content: center !important; }
    .dr1-align-content-lg-between { align-content: space-between !important; }
    .dr1-align-content-lg-around { align-content: space-around !important; }
    .dr1-align-content-lg-stretch { align-content: stretch !important; }
    .dr1-flex-lg-grow-0 { flex-grow: 0 !important; }
    .dr1-flex-lg-grow-1 { flex-grow: 1 !important; }
    .dr1-flex-lg-shrink-0 { flex-shrink: 0 !important; }
    .dr1-flex-lg-shrink-1 { flex-shrink: 1 !important; }
    .dr1-flex-lg-fill { flex: 1 1 auto !important; }
}
@media (min-width: 1200px) {
    .dr1-gap-xl-0 { gap: 0 !important; }
    .dr1-gap-xl-1 { gap: 0.25rem !important; }
    .dr1-gap-xl-2 { gap: 0.5rem !important; }
    .dr1-gap-xl-3 { gap: 1rem !important; }
    .dr1-gap-xl-4 { gap: 1.5rem !important; }
    .dr1-gap-xl-5 { gap: 3rem !important; }
    .dr1-row-gap-xl-0 { row-gap: 0 !important; }
    .dr1-row-gap-xl-1 { row-gap: 0.25rem !important; }
    .dr1-row-gap-xl-2 { row-gap: 0.5rem !important; }
    .dr1-row-gap-xl-3 { row-gap: 1rem !important; }
    .dr1-row-gap-xl-4 { row-gap: 1.5rem !important; }
    .dr1-row-gap-xl-5 { row-gap: 3rem !important; }
    .dr1-column-gap-xl-0 { column-gap: 0 !important; }
    .dr1-column-gap-xl-1 { column-gap: 0.25rem !important; }
    .dr1-column-gap-xl-2 { column-gap: 0.5rem !important; }
    .dr1-column-gap-xl-3 { column-gap: 1rem !important; }
    .dr1-column-gap-xl-4 { column-gap: 1.5rem !important; }
    .dr1-column-gap-xl-5 { column-gap: 3rem !important; }

    .dr1-d-xl-flex { display: flex !important; }
    .dr1-d-xl-inline-flex { display: inline-flex !important; }
    .dr1-flex-xl-row { flex-direction: row !important; }
    .dr1-flex-xl-row-reverse { flex-direction: row-reverse !important; }
    .dr1-flex-xl-column { flex-direction: column !important; }
    .dr1-flex-xl-column-reverse { flex-direction: column-reverse !important; }
    .dr1-flex-xl-wrap { flex-wrap: wrap !important; }
    .dr1-flex-xl-nowrap { flex-wrap: nowrap !important; }
    .dr1-flex-xl-wrap-reverse { flex-wrap: wrap-reverse !important; }
    .dr1-justify-content-xl-start { justify-content: flex-start !important; }
    .dr1-justify-content-xl-end { justify-content: flex-end !important; }
    .dr1-justify-content-xl-center { justify-content: center !important; }
    .dr1-justify-content-xl-between { justify-content: space-between !important; }
    .dr1-justify-content-xl-around { justify-content: space-around !important; }
    .dr1-justify-content-xl-evenly { justify-content: space-evenly !important; }
    .dr1-align-items-xl-start { align-items: flex-start !important; }
    .dr1-align-items-xl-end { align-items: flex-end !important; }
    .dr1-align-items-xl-center { align-items: center !important; }
    .dr1-align-items-xl-baseline { align-items: baseline !important; }
    .dr1-align-items-xl-stretch { align-items: stretch !important; }
    .dr1-align-self-xl-auto { align-self: auto !important; }
    .dr1-align-self-xl-start { align-self: flex-start !important; }
    .dr1-align-self-xl-end { align-self: flex-end !important; }
    .dr1-align-self-xl-center { align-self: center !important; }
    .dr1-align-self-xl-baseline { align-self: baseline !important; }
    .dr1-align-self-xl-stretch { align-self: stretch !important; }
    .dr1-align-content-xl-start { align-content: flex-start !important; }
    .dr1-align-content-xl-end { align-content: flex-end !important; }
    .dr1-align-content-xl-center { align-content: center !important; }
    .dr1-align-content-xl-between { align-content: space-between !important; }
    .dr1-align-content-xl-around { align-content: space-around !important; }
    .dr1-align-content-xl-stretch { align-content: stretch !important; }
    .dr1-flex-xl-grow-0 { flex-grow: 0 !important; }
    .dr1-flex-xl-grow-1 { flex-grow: 1 !important; }
    .dr1-flex-xl-shrink-0 { flex-shrink: 0 !important; }
    .dr1-flex-xl-shrink-1 { flex-shrink: 1 !important; }
    .dr1-flex-xl-fill { flex: 1 1 auto !important; }
}
@media (min-width: 1400px) {
    .dr1-gap-xxl-0 { gap: 0 !important; }
    .dr1-gap-xxl-1 { gap: 0.25rem !important; }
    .dr1-gap-xxl-2 { gap: 0.5rem !important; }
    .dr1-gap-xxl-3 { gap: 1rem !important; }
    .dr1-gap-xxl-4 { gap: 1.5rem !important; }
    .dr1-gap-xxl-5 { gap: 3rem !important; }
    .dr1-row-gap-xxl-0 { row-gap: 0 !important; }
    .dr1-row-gap-xxl-1 { row-gap: 0.25rem !important; }
    .dr1-row-gap-xxl-2 { row-gap: 0.5rem !important; }
    .dr1-row-gap-xxl-3 { row-gap: 1rem !important; }
    .dr1-row-gap-xxl-4 { row-gap: 1.5rem !important; }
    .dr1-row-gap-xxl-5 { row-gap: 3rem !important; }
    .dr1-column-gap-xxl-0 { column-gap: 0 !important; }
    .dr1-column-gap-xxl-1 { column-gap: 0.25rem !important; }
    .dr1-column-gap-xxl-2 { column-gap: 0.5rem !important; }
    .dr1-column-gap-xxl-3 { column-gap: 1rem !important; }
    .dr1-column-gap-xxl-4 { column-gap: 1.5rem !important; }
    .dr1-column-gap-xxl-5 { column-gap: 3rem !important; }

    .dr1-d-xxl-flex { display: flex !important; }
    .dr1-d-xxl-inline-flex { display: inline-flex !important; }
    .dr1-flex-xxl-row { flex-direction: row !important; }
    .dr1-flex-xxl-row-reverse { flex-direction: row-reverse !important; }
    .dr1-flex-xxl-column { flex-direction: column !important; }
    .dr1-flex-xxl-column-reverse { flex-direction: column-reverse !important; }
    .dr1-flex-xxl-wrap { flex-wrap: wrap !important; }
    .dr1-flex-xxl-nowrap { flex-wrap: nowrap !important; }
    .dr1-flex-xxl-wrap-reverse { flex-wrap: wrap-reverse !important; }
    .dr1-justify-content-xxl-start { justify-content: flex-start !important; }
    .dr1-justify-content-xxl-end { justify-content: flex-end !important; }
    .dr1-justify-content-xxl-center { justify-content: center !important; }
    .dr1-justify-content-xxl-between { justify-content: space-between !important; }
    .dr1-justify-content-xxl-around { justify-content: space-around !important; }
    .dr1-justify-content-xxl-evenly { justify-content: space-evenly !important; }
    .dr1-align-items-xxl-start { align-items: flex-start !important; }
    .dr1-align-items-xxl-end { align-items: flex-end !important; }
    .dr1-align-items-xxl-center { align-items: center !important; }
    .dr1-align-items-xxl-baseline { align-items: baseline !important; }
    .dr1-align-items-xxl-stretch { align-items: stretch !important; }
    .dr1-align-self-xxl-auto { align-self: auto !important; }
    .dr1-align-self-xxl-start { align-self: flex-start !important; }
    .dr1-align-self-xxl-end { align-self: flex-end !important; }
    .dr1-align-self-xxl-center { align-self: center !important; }
    .dr1-align-self-xxl-baseline { align-self: baseline !important; }
    .dr1-align-self-xxl-stretch { align-self: stretch !important; }
    .dr1-align-content-xxl-start { align-content: flex-start !important; }
    .dr1-align-content-xxl-end { align-content: flex-end !important; }
    .dr1-align-content-xxl-center { align-content: center !important; }
    .dr1-align-content-xxl-between { align-content: space-between !important; }
    .dr1-align-content-xxl-around { align-content: space-around !important; }
    .dr1-align-content-xxl-stretch { align-content: stretch !important; }
    .dr1-flex-xxl-grow-0 { flex-grow: 0 !important; }
    .dr1-flex-xxl-grow-1 { flex-grow: 1 !important; }
    .dr1-flex-xxl-shrink-0 { flex-shrink: 0 !important; }
    .dr1-flex-xxl-shrink-1 { flex-shrink: 1 !important; }
    .dr1-flex-xxl-fill { flex: 1 1 auto !important; }
}

/* Order */
.dr1-order-first {
        order: -1 !important;
}
.dr1-order-0 {
        order: 0 !important;
}
.dr1-order-1 {
        order: 1 !important;
}
.dr1-order-2 {
        order: 2 !important;
}
.dr1-order-3 {
        order: 3 !important;
}
.dr1-order-4 {
        order: 4 !important;
}
.dr1-order-5 {
        order: 5 !important;
}
.dr1-order-last {
    order: 6 !important;
}

/* Responsive Order Utilities */
@media (min-width: 576px) {
    .dr1-order-sm-first { order: -1 !important; }
    .dr1-order-sm-0 { order: 0 !important; }
    .dr1-order-sm-1 { order: 1 !important; }
    .dr1-order-sm-2 { order: 2 !important; }
    .dr1-order-sm-3 { order: 3 !important; }
    .dr1-order-sm-4 { order: 4 !important; }
    .dr1-order-sm-5 { order: 5 !important; }
    .dr1-order-sm-last { order: 6 !important; }
}
@media (min-width: 768px) {
    .dr1-order-md-first { order: -1 !important; }
    .dr1-order-md-0 { order: 0 !important; }
    .dr1-order-md-1 { order: 1 !important; }
    .dr1-order-md-2 { order: 2 !important; }
    .dr1-order-md-3 { order: 3 !important; }
    .dr1-order-md-4 { order: 4 !important; }
    .dr1-order-md-5 { order: 5 !important; }
    .dr1-order-md-last { order: 6 !important; }
}
@media (min-width: 992px) {
    .dr1-order-lg-first { order: -1 !important; }
    .dr1-order-lg-0 { order: 0 !important; }
    .dr1-order-lg-1 { order: 1 !important; }
    .dr1-order-lg-2 { order: 2 !important; }
    .dr1-order-lg-3 { order: 3 !important; }
    .dr1-order-lg-4 { order: 4 !important; }
    .dr1-order-lg-5 { order: 5 !important; }
    .dr1-order-lg-last { order: 6 !important; }
}
@media (min-width: 1200px) {
    .dr1-order-xl-first { order: -1 !important; }
    .dr1-order-xl-0 { order: 0 !important; }
    .dr1-order-xl-1 { order: 1 !important; }
    .dr1-order-xl-2 { order: 2 !important; }
    .dr1-order-xl-3 { order: 3 !important; }
    .dr1-order-xl-4 { order: 4 !important; }
    .dr1-order-xl-5 { order: 5 !important; }
    .dr1-order-xl-last { order: 6 !important; }
}
@media (min-width: 1400px) {
    .dr1-order-xxl-first { order: -1 !important; }
    .dr1-order-xxl-0 { order: 0 !important; }
    .dr1-order-xxl-1 { order: 1 !important; }
    .dr1-order-xxl-2 { order: 2 !important; }
    .dr1-order-xxl-3 { order: 3 !important; }
    .dr1-order-xxl-4 { order: 4 !important; }
    .dr1-order-xxl-5 { order: 5 !important; }
    .dr1-order-xxl-last { order: 6 !important; }
}