/* Positioning */
.relative {
    position: relative !important;
}

.absolute {
    position: absolute !important;
}

.fixed {
    position: fixed !important;
}

/* Display */
.hidden {
    display: none;
}

.block {
    display: block;
}

/* Text Alignment */
.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.text-justify {
    text-align: justify !important;
}

/* Typography Size */
.text-xs {
    font-size: 0.75rem !important;
}

.text-sm {
    font-size: 0.875rem !important;
}

.text-base {
    font-size: 1rem !important;
}

.text-lg {
    font-size: 1.125rem !important;
}

.text-xl {
    font-size: 1.25rem !important;
}

.text-2xl {
    font-size: 1.5rem !important;
}

.text-3xl {
    font-size: 1.875rem !important;
}

.text-4xl {
    font-size: 2.25rem !important;
}

.text-5xl {
    font-size: 3rem !important;
}

.text-6xl {
    font-size: 3.75rem !important;
}

.text-7xl {
    font-size: 4.5rem !important;
}

.text-8xl {
    font-size: 6rem !important;
}

.text-9xl {
    font-size: 8rem !important;
}

/* Flexbox */
.flex {
    display: flex !important;
}

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

.flex-col {
    flex-direction: column !important;
}

/* Flex Shorthand */
.flex-1 {
    flex: 1 1 0% !important;
}

.flex-auto {
    flex: 1 1 auto !important;
}

.flex-initial {
    flex: 0 1 auto !important;
}

.flex-none {
    flex: none !important;
}

/* Justify Content (Main Axis) */
.justify-start {
    justify-content: flex-start !important;
}

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

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

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

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

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

/* Align Items (Cross Axis) */
.items-start {
    align-items: flex-start !important;
}

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

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

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

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

/* Gap */
.gap-0 {
    gap: 0 !important;
}

.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 0.75rem !important;
}

.gap-4 {
    gap: 1rem !important;
}

.gap-5 {
    gap: 1.25rem !important;
}

.gap-6 {
    gap: 1.5rem !important;
}

.gap-8 {
    gap: 2rem !important;
}

.gap-10 {
    gap: 2.5rem !important;
}

.gap-12 {
    gap: 3rem !important;
}

.gap-32 {
    gap: 8rem !important;
}

.gap-x-0 {
    column-gap: 0 !important;
}

.gap-x-1 {
    column-gap: 0.25rem !important;
}

.gap-x-2 {
    column-gap: 0.5rem !important;
}

.gap-x-3 {
    column-gap: 0.75rem !important;
}

.gap-x-4 {
    column-gap: 1rem !important;
}

.gap-x-5 {
    column-gap: 1.25rem !important;
}

.gap-x-6 {
    column-gap: 1.5rem !important;
}

.gap-x-8 {
    column-gap: 2rem !important;
}

.gap-x-10 {
    column-gap: 2.5rem !important;
}

.gap-x-12 {
    column-gap: 3rem !important;
}

.gap-x-32 {
    column-gap: 8rem !important;
}

.gap-y-0 {
    row-gap: 0 !important;
}

.gap-y-1 {
    row-gap: 0.25rem !important;
}

.gap-y-2 {
    row-gap: 0.5rem !important;
}

.gap-y-3 {
    row-gap: 0.75rem !important;
}

.gap-y-4 {
    row-gap: 1rem !important;
}

.gap-y-5 {
    row-gap: 1.25rem !important;
}

.gap-y-6 {
    row-gap: 1.5rem !important;
}

.gap-y-8 {
    row-gap: 2rem !important;
}

.gap-y-10 {
    row-gap: 2.5rem !important;
}

.gap-y-12 {
    row-gap: 3rem !important;
}

.gap-y-32 {
    row-gap: 8rem !important;
}

/* Padding */
.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 0.75rem !important;
}

.p-4 {
    padding: 1rem !important;
}

.p-5 {
    padding: 1.25rem !important;
}

.p-6 {
    padding: 1.5rem !important;
}

.p-8 {
    padding: 2rem !important;
}

.p-10 {
    padding: 2.5rem !important;
}

.p-12 {
    padding: 3rem !important;
}

.p-32 {
    padding: 8rem !important;
}

.p-120 {
    padding: 7.5rem !important;
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
}

.px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}

.px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
}

.px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

.px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
}

.px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

.px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
}

.px-120 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

.py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
}

.py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

.py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
}

.py-120 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 0.75rem !important;
}

.pt-4 {
    padding-top: 1rem !important;
}

.pt-5 {
    padding-top: 1.25rem !important;
}

.pt-6 {
    padding-top: 1.5rem !important;
}

.pt-8 {
    padding-top: 2rem !important;
}

.pt-10 {
    padding-top: 2.5rem !important;
}

.pt-12 {
    padding-top: 3rem !important;
}

.pt-32 {
    padding-top: 8rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 0.75rem !important;
}

.pb-4 {
    padding-bottom: 1rem !important;
}

.pb-5 {
    padding-bottom: 1.25rem !important;
}

.pb-6 {
    padding-bottom: 1.5rem !important;
}

.pb-8 {
    padding-bottom: 2rem !important;
}

.pb-10 {
    padding-bottom: 2.5rem !important;
}

.pb-12 {
    padding-bottom: 3rem !important;
}

.pb-32 {
    padding-bottom: 8rem !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pl-1 {
    padding-left: 0.25rem !important;
}

.pl-2 {
    padding-left: 0.5rem !important;
}

.pl-3 {
    padding-left: 0.75rem !important;
}

.pl-4 {
    padding-left: 1rem !important;
}

.pl-5 {
    padding-left: 1.25rem !important;
}

.pl-6 {
    padding-left: 1.5rem !important;
}

.pl-8 {
    padding-left: 2rem !important;
}

.pl-10 {
    padding-left: 2.5rem !important;
}

.pl-12 {
    padding-left: 3rem !important;
}

.pl-32 {
    padding-left: 8rem !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pr-1 {
    padding-right: 0.25rem !important;
}

.pr-2 {
    padding-right: 0.5rem !important;
}

.pr-3 {
    padding-right: 0.75rem !important;
}

.pr-4 {
    padding-right: 1rem !important;
}

.pr-5 {
    padding-right: 1.25rem !important;
}

.pr-6 {
    padding-right: 1.5rem !important;
}

.pr-8 {
    padding-right: 2rem !important;
}

.pr-10 {
    padding-right: 2.5rem !important;
}

.pr-12 {
    padding-right: 3rem !important;
}

.pr-32 {
    padding-right: 8rem !important;
}

/* Margin */
.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 0.75rem !important;
}

.m-4 {
    margin: 1rem !important;
}

.m-5 {
    margin: 1.25rem !important;
}

.m-6 {
    margin: 1.5rem !important;
}

.m-8 {
    margin: 2rem !important;
}

.m-10 {
    margin: 2.5rem !important;
}

.m-12 {
    margin: 3rem !important;
}

.m-32 {
    margin: 8rem !important;
}

.m-auto {
    margin: auto !important;
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
}

.mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}

.mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
}

.mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}

.mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
}

.mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}

.mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
}

.mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
}

.mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}

.mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
}

.my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
}

.my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}

.my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
}

.my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 0.75rem !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

.mt-5 {
    margin-top: 1.25rem !important;
}

.mt-6 {
    margin-top: 1.5rem !important;
}

.mt-8 {
    margin-top: 2rem !important;
}

.mt-10 {
    margin-top: 2.5rem !important;
}

.mt-12 {
    margin-top: 3rem !important;
}

.mt-32 {
    margin-top: 8rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 0.75rem !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.mb-5 {
    margin-bottom: 1.25rem !important;
}

.mb-6 {
    margin-bottom: 1.5rem !important;
}

.mb-8 {
    margin-bottom: 2rem !important;
}

.mb-10 {
    margin-bottom: 2.5rem !important;
}

.mb-12 {
    margin-bottom: 3rem !important;
}

.mb-32 {
    margin-bottom: 8rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.ml-1 {
    margin-left: 0.25rem !important;
}

.ml-2 {
    margin-left: 0.5rem !important;
}

.ml-3 {
    margin-left: 0.75rem !important;
}

.ml-4 {
    margin-left: 1rem !important;
}

.ml-5 {
    margin-left: 1.25rem !important;
}

.ml-6 {
    margin-left: 1.5rem !important;
}

.ml-8 {
    margin-left: 2rem !important;
}

.ml-10 {
    margin-left: 2.5rem !important;
}

.ml-12 {
    margin-left: 3rem !important;
}

.ml-32 {
    margin-left: 8rem !important;
}

.ml-auto {
    margin-left: auto !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mr-1 {
    margin-right: 0.25rem !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.mr-3 {
    margin-right: 0.75rem !important;
}

.mr-4 {
    margin-right: 1rem !important;
}

.mr-5 {
    margin-right: 1.25rem !important;
}

.mr-6 {
    margin-right: 1.5rem !important;
}

.mr-8 {
    margin-right: 2rem !important;
}

.mr-10 {
    margin-right: 2.5rem !important;
}

.mr-12 {
    margin-right: 3rem !important;
}

.mr-32 {
    margin-right: 8rem !important;
}

.mr-auto {
    margin-right: auto !important;
}

/* Cursor */
.cursor-auto {
    cursor: auto !important;
}

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

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

.cursor-wait {
    cursor: wait !important;
}

.cursor-text {
    cursor: text !important;
}

.cursor-move {
    cursor: move !important;
}

.cursor-help {
    cursor: help !important;
}

.cursor-not-allowed {
    cursor: not-allowed !important;
}

/* Border Radius */
.rounded-none {
    border-radius: 0px !important;
}

.rounded-sm {
    border-radius: 0.125rem !important;
}

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

.rounded-md {
    border-radius: 0.375rem !important;
}

.rounded-lg {
    border-radius: 0.5rem !important;
}

.rounded-xl {
    border-radius: 0.75rem !important;
}

.rounded-2xl {
    border-radius: 1rem !important;
}

.rounded-3xl {
    border-radius: 1.5rem !important;
}

.rounded-full {
    border-radius: 9999px !important;
}

/* Positioning */
.top-0 {
    top: 0 !important;
}

.top-1 {
    top: 0.25rem !important;
}

.top-2 {
    top: 0.5rem !important;
}

.top-3 {
    top: 0.75rem !important;
}

.top-4 {
    top: 1rem !important;
}

.top-5 {
    top: 1.25rem !important;
}

.top-6 {
    top: 1.5rem !important;
}

.top-8 {
    top: 2rem !important;
}

.top-10 {
    top: 2.5rem !important;
}

.top-12 {
    top: 3rem !important;
}

.top-32 {
    top: 8rem !important;
}

.top-auto {
    top: auto !important;
}

.right-0 {
    right: 0 !important;
}

.right-1 {
    right: 0.25rem !important;
}

.-right-1 {
    right: -1rem !important;
}

.right-2 {
    right: 0.5rem !important;
}

.right-3 {
    right: 0.75rem !important;
}

.right-4 {
    right: 1rem !important;
}

.right-5 {
    right: 1.25rem !important;
}

.right-6 {
    right: 1.5rem !important;
}

.right-8 {
    right: 2rem !important;
}

.-right-9 {
    right: -9rem !important;
}

.right-10 {
    right: 2.5rem !important;
}

.right-12 {
    right: 3rem !important;
}

.right-32 {
    right: 8rem !important;
}

.right-auto {
    right: auto !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.bottom-1 {
    bottom: 0.25rem !important;
}

.bottom-2 {
    bottom: 0.5rem !important;
}

.bottom-3 {
    bottom: 0.75rem !important;
}

.bottom-4 {
    bottom: 1rem !important;
}

.bottom-5 {
    bottom: 1.25rem !important;
}

.bottom-6 {
    bottom: 1.5rem !important;
}

.bottom-8 {
    bottom: 2rem !important;
}

.bottom-10 {
    bottom: 2.5rem !important;
}

.bottom-12 {
    bottom: 3rem !important;
}

.bottom-32 {
    bottom: 8rem !important;
}

.bottom-auto {
    bottom: auto !important;
}

.left-0 {
    left: 0 !important;
}

.left-1 {
    left: 0.25rem !important;
}

.left-2 {
    left: 0.5rem !important;
}

.left-3 {
    left: 0.75rem !important;
}

.left-4 {
    left: 1rem !important;
}

.left-5 {
    left: 1.25rem !important;
}

.left-6 {
    left: 1.5rem !important;
}

.left-8 {
    left: 2rem !important;
}

.left-10 {
    left: 2.5rem !important;
}

.left-12 {
    left: 3rem !important;
}

.left-32 {
    left: 8rem !important;
}

.left-auto {
    left: auto !important;
}

/* Width */
.w-0 {
    width: 0 !important;
}

.w-1 {
    width: 0.25rem !important;
}

.w-2 {
    width: 0.5rem !important;
}

.w-3 {
    width: 0.75rem !important;
}

.w-4 {
    width: 1rem !important;
}

.w-5 {
    width: 1.25rem !important;
}

.w-6 {
    width: 1.5rem !important;
}

.w-8 {
    width: 2rem !important;
}

.w-10 {
    width: 2.5rem !important;
}

.w-12 {
    width: 3rem !important;
}

.w-16 {
    width: 4rem !important;
}

.w-20 {
    width: 5rem !important;
}

.w-24 {
    width: 6rem !important;
}

.w-32 {
    width: 8rem !important;
}

.w-40 {
    width: 10rem !important;
}

.w-48 {
    width: 12rem !important;
}

.w-56 {
    width: 14rem !important;
}

.w-64 {
    width: 16rem !important;
}

.w-auto {
    width: auto !important;
}

.w-px {
    width: 1px !important;
}

.w-1\/2 {
    width: 50% !important;
}

.w-1\/3 {
    width: 33.333333% !important;
}

.w-2\/3 {
    width: 66.666667% !important;
}

.w-1\/4 {
    width: 25% !important;
}

.w-2\/4 {
    width: 50% !important;
}

.w-3\/4 {
    width: 75% !important;
}

.w-1\/5 {
    width: 20% !important;
}

.w-2\/5 {
    width: 40% !important;
}

.w-3\/5 {
    width: 60% !important;
}

.w-4\/5 {
    width: 80% !important;
}

.w-full {
    width: 100% !important;
}

.w-screen {
    width: 100vw !important;
}

.w-min {
    width: min-content !important;
}

.w-max {
    width: max-content !important;
}

.w-fit {
    width: fit-content !important;
}

/* Top Positioning Legacy */
.top-0 {
    top: 0 !important;
}

.top-5 {
    top: 5px !important;
}

/* Top relative to Viewport Height */
.top-10vh {
    top: 10vh !important;
}

.top-20vh {
    top: 20vh !important;
}

.top-30vh {
    top: 30vh !important;
}

.top-50vh {
    top: 50vh !important;
}

/* Negative Top relative to Viewport Height */
.-top-10vh {
    top: -10vh !important;
}

.-top-15vh {
    top: -15vh !important;
}

.-top-18vh {
    top: -18vh !important;
}

.-top-20vh {
    top: -20vh !important;
}

.-top-22vh {
    top: -22vh !important;
}

.-top-25vh {
    top: -25vh !important;
}

.-top-27vh {
    top: -27vh !important;
}

.-top-28vh {
    top: -28vh !important;
}

.-top-30vh {
    top: -30vh !important;
}

.-top-50vh {
    top: -50vh !important;
}

.z-index-1 {
    z-index: 1 !important;
}

/* Small devices (sm) */
@media (min-width: 640px) {
    .sm\:relative {
        position: relative !important;
    }

    .sm\:absolute {
        position: absolute !important;
    }

    .sm\:fixed {
        position: fixed !important;
    }

    .sm\:hidden {
        display: none;
    }

    .sm\:block {
        display: block;
    }

    .sm\:text-left {
        text-align: left !important;
    }

    .sm\:text-center {
        text-align: center !important;
    }

    .sm\:text-right {
        text-align: right !important;
    }

    .sm\:text-justify {
        text-align: justify !important;
    }

    /* Typography Size Responsiveness */
    .sm\:text-xs {
        font-size: 0.75rem !important;
    }

    .sm\:text-sm {
        font-size: 0.875rem !important;
    }

    .sm\:text-base {
        font-size: 1rem !important;
    }

    .sm\:text-lg {
        font-size: 1.125rem !important;
    }

    .sm\:text-xl {
        font-size: 1.25rem !important;
    }

    .sm\:text-2xl {
        font-size: 1.5rem !important;
    }

    .sm\:text-3xl {
        font-size: 1.875rem !important;
    }

    .sm\:text-4xl {
        font-size: 2.25rem !important;
    }

    .sm\:text-5xl {
        font-size: 3rem !important;
    }

    .sm\:text-6xl {
        font-size: 3.75rem !important;
    }

    .sm\:text-7xl {
        font-size: 4.5rem !important;
    }

    .sm\:text-8xl {
        font-size: 6rem !important;
    }

    .sm\:text-9xl {
        font-size: 8rem !important;
    }

    /* Flexbox Responsiveness */
    .sm\:flex {
        display: flex !important;
    }

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

    .sm\:flex-col {
        flex-direction: column !important;
    }

    .sm\:flex-1 {
        flex: 1 1 0% !important;
    }

    .sm\:flex-auto {
        flex: 1 1 auto !important;
    }

    .sm\:flex-initial {
        flex: 0 1 auto !important;
    }

    .sm\:flex-none {
        flex: none !important;
    }

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

    .sm\:justify-center {
        justify-content: center !important;
    }

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

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

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

    .sm\:items-center {
        align-items: center !important;
    }

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

    /* Gap Responsiveness */
    .sm\:gap-0 {
        gap: 0 !important;
    }

    .sm\:gap-1 {
        gap: 0.25rem !important;
    }

    .sm\:gap-2 {
        gap: 0.5rem !important;
    }

    .sm\:gap-3 {
        gap: 0.75rem !important;
    }

    .sm\:gap-4 {
        gap: 1rem !important;
    }

    .sm\:gap-5 {
        gap: 1.25rem !important;
    }

    .sm\:gap-6 {
        gap: 1.5rem !important;
    }

    .sm\:gap-8 {
        gap: 2rem !important;
    }

    .sm\:gap-10 {
        gap: 2.5rem !important;
    }

    .sm\:gap-12 {
        gap: 3rem !important;
    }

    .sm\:gap-32 {
        gap: 8rem !important;
    }

    .sm\:gap-x-0 {
        column-gap: 0 !important;
    }

    .sm\:gap-x-1 {
        column-gap: 0.25rem !important;
    }

    .sm\:gap-x-2 {
        column-gap: 0.5rem !important;
    }

    .sm\:gap-x-3 {
        column-gap: 0.75rem !important;
    }

    .sm\:gap-x-4 {
        column-gap: 1rem !important;
    }

    .sm\:gap-x-5 {
        column-gap: 1.25rem !important;
    }

    .sm\:gap-x-6 {
        column-gap: 1.5rem !important;
    }

    .sm\:gap-x-8 {
        column-gap: 2rem !important;
    }

    .sm\:gap-x-10 {
        column-gap: 2.5rem !important;
    }

    .sm\:gap-x-12 {
        column-gap: 3rem !important;
    }

    .sm\:gap-x-32 {
        column-gap: 8rem !important;
    }

    .sm\:gap-y-0 {
        row-gap: 0 !important;
    }

    .sm\:gap-y-1 {
        row-gap: 0.25rem !important;
    }

    .sm\:gap-y-2 {
        row-gap: 0.5rem !important;
    }

    .sm\:gap-y-3 {
        row-gap: 0.75rem !important;
    }

    .sm\:gap-y-4 {
        row-gap: 1rem !important;
    }

    .sm\:gap-y-5 {
        row-gap: 1.25rem !important;
    }

    .sm\:gap-y-6 {
        row-gap: 1.5rem !important;
    }

    .sm\:gap-y-8 {
        row-gap: 2rem !important;
    }

    .sm\:gap-y-10 {
        row-gap: 2.5rem !important;
    }

    .sm\:gap-y-12 {
        row-gap: 3rem !important;
    }

    .sm\:gap-y-32 {
        row-gap: 8rem !important;
    }

    /* Padding Responsiveness */
    .sm\:p-0 {
        padding: 0 !important;
    }

    .sm\:p-1 {
        padding: 0.25rem !important;
    }

    .sm\:p-2 {
        padding: 0.5rem !important;
    }

    .sm\:p-3 {
        padding: 0.75rem !important;
    }

    .sm\:p-4 {
        padding: 1rem !important;
    }

    .sm\:p-5 {
        padding: 1.25rem !important;
    }

    .sm\:p-6 {
        padding: 1.5rem !important;
    }

    .sm\:p-8 {
        padding: 2rem !important;
    }

    .sm\:p-10 {
        padding: 2.5rem !important;
    }

    .sm\:p-12 {
        padding: 3rem !important;
    }

    .sm\:p-32 {
        padding: 8rem !important;
    }

    .sm\:p-120 {
        padding: 7.5rem !important;
    }

    .sm\:px-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .sm\:px-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .sm\:px-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .sm\:px-3 {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .sm\:px-4 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .sm\:px-5 {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    .sm\:px-6 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .sm\:px-8 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .sm\:px-10 {
        padding-left: 2.5rem !important;
        padding-right: 2.5rem !important;
    }

    .sm\:px-12 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .sm\:px-32 {
        padding-left: 8rem !important;
        padding-right: 8rem !important;
    }

    .sm\:px-120 {
        padding-left: 7.5rem !important;
        padding-right: 7.5rem !important;
    }

    .sm\:py-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .sm\:py-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .sm\:py-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .sm\:py-3 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .sm\:py-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .sm\:py-5 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }

    .sm\:py-6 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .sm\:py-8 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .sm\:py-10 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .sm\:py-12 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .sm\:py-32 {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
    }

    .sm\:py-120 {
        padding-top: 7.5rem !important;
        padding-bottom: 7.5rem !important;
    }

    .sm\:pt-0 {
        padding-top: 0 !important;
    }

    .sm\:pt-1 {
        padding-top: 0.25rem !important;
    }

    .sm\:pt-2 {
        padding-top: 0.5rem !important;
    }

    .sm\:pt-3 {
        padding-top: 0.75rem !important;
    }

    .sm\:pt-4 {
        padding-top: 1rem !important;
    }

    .sm\:pt-5 {
        padding-top: 1.25rem !important;
    }

    .sm\:pt-6 {
        padding-top: 1.5rem !important;
    }

    .sm\:pt-8 {
        padding-top: 2rem !important;
    }

    .sm\:pt-10 {
        padding-top: 2.5rem !important;
    }

    .sm\:pt-12 {
        padding-top: 3rem !important;
    }

    .sm\:pt-32 {
        padding-top: 8rem !important;
    }

    .sm\:pb-0 {
        padding-bottom: 0 !important;
    }

    .sm\:pb-1 {
        padding-bottom: 0.25rem !important;
    }

    .sm\:pb-2 {
        padding-bottom: 0.5rem !important;
    }

    .sm\:pb-3 {
        padding-bottom: 0.75rem !important;
    }

    .sm\:pb-4 {
        padding-bottom: 1rem !important;
    }

    .sm\:pb-5 {
        padding-bottom: 1.25rem !important;
    }

    .sm\:pb-6 {
        padding-bottom: 1.5rem !important;
    }

    .sm\:pb-8 {
        padding-bottom: 2rem !important;
    }

    .sm\:pb-10 {
        padding-bottom: 2.5rem !important;
    }

    .sm\:pb-12 {
        padding-bottom: 3rem !important;
    }

    .sm\:pb-32 {
        padding-bottom: 8rem !important;
    }

    .sm\:pl-0 {
        padding-left: 0 !important;
    }

    .sm\:pl-1 {
        padding-left: 0.25rem !important;
    }

    .sm\:pl-2 {
        padding-left: 0.5rem !important;
    }

    .sm\:pl-3 {
        padding-left: 0.75rem !important;
    }

    .sm\:pl-4 {
        padding-left: 1rem !important;
    }

    .sm\:pl-5 {
        padding-left: 1.25rem !important;
    }

    .sm\:pl-6 {
        padding-left: 1.5rem !important;
    }

    .sm\:pl-8 {
        padding-left: 2rem !important;
    }

    .sm\:pl-10 {
        padding-left: 2.5rem !important;
    }

    .sm\:pl-12 {
        padding-left: 3rem !important;
    }

    .sm\:pl-32 {
        padding-left: 8rem !important;
    }

    .sm\:pr-0 {
        padding-right: 0 !important;
    }

    .sm\:pr-1 {
        padding-right: 0.25rem !important;
    }

    .sm\:pr-2 {
        padding-right: 0.5rem !important;
    }

    .sm\:pr-3 {
        padding-right: 0.75rem !important;
    }

    .sm\:pr-4 {
        padding-right: 1rem !important;
    }

    .sm\:pr-5 {
        padding-right: 1.25rem !important;
    }

    .sm\:pr-6 {
        padding-right: 1.5rem !important;
    }

    .sm\:pr-8 {
        padding-right: 2rem !important;
    }

    .sm\:pr-10 {
        padding-right: 2.5rem !important;
    }

    .sm\:pr-12 {
        padding-right: 3rem !important;
    }

    .sm\:pr-32 {
        padding-right: 8rem !important;
    }

    /* Margin Responsiveness */
    .sm\:m-0 {
        margin: 0 !important;
    }

    .sm\:m-1 {
        margin: 0.25rem !important;
    }

    .sm\:m-2 {
        margin: 0.5rem !important;
    }

    .sm\:m-3 {
        margin: 0.75rem !important;
    }

    .sm\:m-4 {
        margin: 1rem !important;
    }

    .sm\:m-5 {
        margin: 1.25rem !important;
    }

    .sm\:m-6 {
        margin: 1.5rem !important;
    }

    .sm\:m-8 {
        margin: 2rem !important;
    }

    .sm\:m-10 {
        margin: 2.5rem !important;
    }

    .sm\:m-12 {
        margin: 3rem !important;
    }

    .sm\:m-32 {
        margin: 8rem !important;
    }

    .sm\:m-auto {
        margin: auto !important;
    }

    .sm\:mx-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .sm\:mx-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .sm\:mx-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .sm\:mx-3 {
        margin-left: 0.75rem !important;
        margin-right: 0.75rem !important;
    }

    .sm\:mx-4 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .sm\:mx-5 {
        margin-left: 1.25rem !important;
        margin-right: 1.25rem !important;
    }

    .sm\:mx-6 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .sm\:mx-8 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .sm\:mx-10 {
        margin-left: 2.5rem !important;
        margin-right: 2.5rem !important;
    }

    .sm\:mx-12 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .sm\:mx-32 {
        margin-left: 8rem !important;
        margin-right: 8rem !important;
    }

    .sm\:mx-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .sm\:my-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .sm\:my-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .sm\:my-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .sm\:my-3 {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .sm\:my-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .sm\:my-5 {
        margin-top: 1.25rem !important;
        margin-bottom: 1.25rem !important;
    }

    .sm\:my-6 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .sm\:my-8 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .sm\:my-10 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .sm\:my-12 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .sm\:my-32 {
        margin-top: 8rem !important;
        margin-bottom: 8rem !important;
    }

    .sm\:my-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .sm\:mt-0 {
        margin-top: 0 !important;
    }

    .sm\:mt-1 {
        margin-top: 0.25rem !important;
    }

    .sm\:mt-2 {
        margin-top: 0.5rem !important;
    }

    .sm\:mt-3 {
        margin-top: 0.75rem !important;
    }

    .sm\:mt-4 {
        margin-top: 1rem !important;
    }

    .sm\:mt-5 {
        margin-top: 1.25rem !important;
    }

    .sm\:mt-6 {
        margin-top: 1.5rem !important;
    }

    .sm\:mt-8 {
        margin-top: 2rem !important;
    }

    .sm\:mt-10 {
        margin-top: 2.5rem !important;
    }

    .sm\:mt-12 {
        margin-top: 3rem !important;
    }

    .sm\:mt-32 {
        margin-top: 8rem !important;
    }

    .sm\:mt-auto {
        margin-top: auto !important;
    }

    .sm\:mb-0 {
        margin-bottom: 0 !important;
    }

    .sm\:mb-1 {
        margin-bottom: 0.25rem !important;
    }

    .sm\:mb-2 {
        margin-bottom: 0.5rem !important;
    }

    .sm\:mb-3 {
        margin-bottom: 0.75rem !important;
    }

    .sm\:mb-4 {
        margin-bottom: 1rem !important;
    }

    .sm\:mb-5 {
        margin-bottom: 1.25rem !important;
    }

    .sm\:mb-6 {
        margin-bottom: 1.5rem !important;
    }

    .sm\:mb-8 {
        margin-bottom: 2rem !important;
    }

    .sm\:mb-10 {
        margin-bottom: 2.5rem !important;
    }

    .sm\:mb-12 {
        margin-bottom: 3rem !important;
    }

    .sm\:mb-32 {
        margin-bottom: 8rem !important;
    }

    .sm\:mb-auto {
        margin-bottom: auto !important;
    }

    .sm\:ml-0 {
        margin-left: 0 !important;
    }

    .sm\:ml-1 {
        margin-left: 0.25rem !important;
    }

    .sm\:ml-2 {
        margin-left: 0.5rem !important;
    }

    .sm\:ml-3 {
        margin-left: 0.75rem !important;
    }

    .sm\:ml-4 {
        margin-left: 1rem !important;
    }

    .sm\:ml-5 {
        margin-left: 1.25rem !important;
    }

    .sm\:ml-6 {
        margin-left: 1.5rem !important;
    }

    .sm\:ml-8 {
        margin-left: 2rem !important;
    }

    .sm\:ml-10 {
        margin-left: 2.5rem !important;
    }

    .sm\:ml-12 {
        margin-left: 3rem !important;
    }

    .sm\:ml-32 {
        margin-left: 8rem !important;
    }

    .sm\:ml-auto {
        margin-left: auto !important;
    }

    .sm\:mr-0 {
        margin-right: 0 !important;
    }

    .sm\:mr-1 {
        margin-right: 0.25rem !important;
    }

    .sm\:mr-2 {
        margin-right: 0.5rem !important;
    }

    .sm\:mr-3 {
        margin-right: 0.75rem !important;
    }

    .sm\:mr-4 {
        margin-right: 1rem !important;
    }

    .sm\:mr-5 {
        margin-right: 1.25rem !important;
    }

    .sm\:mr-6 {
        margin-right: 1.5rem !important;
    }

    .sm\:mr-8 {
        margin-right: 2rem !important;
    }

    .sm\:mr-10 {
        margin-right: 2.5rem !important;
    }

    .sm\:mr-12 {
        margin-right: 3rem !important;
    }

    .sm\:mr-32 {
        margin-right: 8rem !important;
    }

    .sm\:mr-auto {
        margin-right: auto !important;
    }

    /* Cursor Responsiveness */
    .sm\:cursor-auto {
        cursor: auto !important;
    }

    .sm\:cursor-default {
        cursor: default !important;
    }

    .sm\:cursor-pointer {
        cursor: pointer !important;
    }

    .sm\:cursor-wait {
        cursor: wait !important;
    }

    .sm\:cursor-text {
        cursor: text !important;
    }

    .sm\:cursor-move {
        cursor: move !important;
    }

    .sm\:cursor-help {
        cursor: help !important;
    }

    .sm\:cursor-not-allowed {
        cursor: not-allowed !important;
    }

    /* Border Radius Responsiveness */
    .sm\:rounded-none {
        border-radius: 0px !important;
    }

    .sm\:rounded-sm {
        border-radius: 0.125rem !important;
    }

    .sm\:rounded {
        border-radius: 0.25rem !important;
    }

    .sm\:rounded-md {
        border-radius: 0.375rem !important;
    }

    .sm\:rounded-lg {
        border-radius: 0.5rem !important;
    }

    .sm\:rounded-xl {
        border-radius: 0.75rem !important;
    }

    .sm\:rounded-2xl {
        border-radius: 1rem !important;
    }

    .sm\:rounded-3xl {
        border-radius: 1.5rem !important;
    }

    .sm\:rounded-full {
        border-radius: 9999px !important;
    }

    /* Positioning Responsiveness */
    .sm\:top-0 {
        top: 0 !important;
    }

    .sm\:top-1 {
        top: 0.25rem !important;
    }

    .sm\:top-2 {
        top: 0.5rem !important;
    }

    .sm\:top-3 {
        top: 0.75rem !important;
    }

    .sm\:top-4 {
        top: 1rem !important;
    }

    .sm\:top-5 {
        top: 1.25rem !important;
    }

    .sm\:top-6 {
        top: 1.5rem !important;
    }

    .sm\:top-8 {
        top: 2rem !important;
    }

    .sm\:top-10 {
        top: 2.5rem !important;
    }

    .sm\:top-12 {
        top: 3rem !important;
    }

    .sm\:top-32 {
        top: 8rem !important;
    }

    .sm\:top-auto {
        top: auto !important;
    }

    .sm\:right-0 {
        right: 0 !important;
    }

    .sm\:right-1 {
        right: 0.25rem !important;
    }

    .sm\:right-2 {
        right: 0.5rem !important;
    }

    .sm\:right-3 {
        right: 0.75rem !important;
    }

    .sm\:right-4 {
        right: 1rem !important;
    }

    .sm\:right-5 {
        right: 1.25rem !important;
    }

    .sm\:right-6 {
        right: 1.5rem !important;
    }

    .sm\:right-8 {
        right: 2rem !important;
    }

    .sm\:right-10 {
        right: 2.5rem !important;
    }

    .sm\:right-12 {
        right: 3rem !important;
    }

    .sm\:right-32 {
        right: 8rem !important;
    }

    .sm\:right-auto {
        right: auto !important;
    }

    .sm\:bottom-0 {
        bottom: 0 !important;
    }

    .sm\:bottom-1 {
        bottom: 0.25rem !important;
    }

    .sm\:bottom-2 {
        bottom: 0.5rem !important;
    }

    .sm\:bottom-3 {
        bottom: 0.75rem !important;
    }

    .sm\:bottom-4 {
        bottom: 1rem !important;
    }

    .sm\:bottom-5 {
        bottom: 1.25rem !important;
    }

    .sm\:bottom-6 {
        bottom: 1.5rem !important;
    }

    .sm\:bottom-8 {
        bottom: 2rem !important;
    }

    .sm\:bottom-10 {
        bottom: 2.5rem !important;
    }

    .sm\:bottom-12 {
        bottom: 3rem !important;
    }

    .sm\:bottom-32 {
        bottom: 8rem !important;
    }

    .sm\:bottom-auto {
        bottom: auto !important;
    }

    .sm\:left-0 {
        left: 0 !important;
    }

    .sm\:left-1 {
        left: 0.25rem !important;
    }

    .sm\:left-2 {
        left: 0.5rem !important;
    }

    .sm\:left-3 {
        left: 0.75rem !important;
    }

    .sm\:left-4 {
        left: 1rem !important;
    }

    .sm\:left-5 {
        left: 1.25rem !important;
    }

    .sm\:left-6 {
        left: 1.5rem !important;
    }

    .sm\:left-8 {
        left: 2rem !important;
    }

    .sm\:left-10 {
        left: 2.5rem !important;
    }

    .sm\:left-12 {
        left: 3rem !important;
    }

    .sm\:left-32 {
        left: 8rem !important;
    }

    .sm\:left-auto {
        left: auto !important;
    }

    /* Width Responsiveness */
    .sm\:w-0 {
        width: 0 !important;
    }

    .sm\:w-1 {
        width: 0.25rem !important;
    }

    .sm\:w-2 {
        width: 0.5rem !important;
    }

    .sm\:w-3 {
        width: 0.75rem !important;
    }

    .sm\:w-4 {
        width: 1rem !important;
    }

    .sm\:w-5 {
        width: 1.25rem !important;
    }

    .sm\:w-6 {
        width: 1.5rem !important;
    }

    .sm\:w-8 {
        width: 2rem !important;
    }

    .sm\:w-10 {
        width: 2.5rem !important;
    }

    .sm\:w-12 {
        width: 3rem !important;
    }

    .sm\:w-16 {
        width: 4rem !important;
    }

    .sm\:w-20 {
        width: 5rem !important;
    }

    .sm\:w-24 {
        width: 6rem !important;
    }

    .sm\:w-32 {
        width: 8rem !important;
    }

    .sm\:w-40 {
        width: 10rem !important;
    }

    .sm\:w-48 {
        width: 12rem !important;
    }

    .sm\:w-56 {
        width: 14rem !important;
    }

    .sm\:w-64 {
        width: 16rem !important;
    }

    .sm\:w-auto {
        width: auto !important;
    }

    .sm\:w-px {
        width: 1px !important;
    }

    .sm\:w-1\/2 {
        width: 50% !important;
    }

    .sm\:w-1\/3 {
        width: 33.333333% !important;
    }

    .sm\:w-2\/3 {
        width: 66.666667% !important;
    }

    .sm\:w-1\/4 {
        width: 25% !important;
    }

    .sm\:w-2\/4 {
        width: 50% !important;
    }

    .sm\:w-3\/4 {
        width: 75% !important;
    }

    .sm\:w-1\/5 {
        width: 20% !important;
    }

    .sm\:w-2\/5 {
        width: 40% !important;
    }

    .sm\:w-3\/5 {
        width: 60% !important;
    }

    .sm\:w-4\/5 {
        width: 80% !important;
    }

    .sm\:w-full {
        width: 100% !important;
    }

    .sm\:w-screen {
        width: 100vw !important;
    }

    .sm\:w-min {
        width: min-content !important;
    }

    .sm\:w-max {
        width: max-content !important;
    }

    .sm\:w-fit {
        width: fit-content !important;
    }
}

/* Medium devices (md) */
@media (min-width: 768px) {
    .md\:relative {
        position: relative !important;
    }

    .md\:absolute {
        position: absolute !important;
    }

    .md\:fixed {
        position: fixed !important;
    }

    .md\:hidden {
        display: none;
    }

    .md\:block {
        display: block;
    }

    .md\:text-left {
        text-align: left !important;
    }

    .md\:text-center {
        text-align: center !important;
    }

    .md\:text-right {
        text-align: right !important;
    }

    .md\:text-justify {
        text-align: justify !important;
    }

    /* Typography Size Responsiveness */
    .md\:text-xs {
        font-size: 0.75rem !important;
    }

    .md\:text-sm {
        font-size: 0.875rem !important;
    }

    .md\:text-base {
        font-size: 1rem !important;
    }

    .md\:text-lg {
        font-size: 1.125rem !important;
    }

    .md\:text-xl {
        font-size: 1.25rem !important;
    }

    .md\:text-2xl {
        font-size: 1.5rem !important;
    }

    .md\:text-3xl {
        font-size: 1.875rem !important;
    }

    .md\:text-4xl {
        font-size: 2.25rem !important;
    }

    .md\:text-5xl {
        font-size: 3rem !important;
    }

    .md\:text-6xl {
        font-size: 3.75rem !important;
    }

    .md\:text-7xl {
        font-size: 4.5rem !important;
    }

    .md\:text-8xl {
        font-size: 6rem !important;
    }

    .md\:text-9xl {
        font-size: 8rem !important;
    }

    /* Flexbox Responsiveness */
    .md\:flex {
        display: flex !important;
    }

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

    .md\:flex-col {
        flex-direction: column !important;
    }

    .md\:flex-1 {
        flex: 1 1 0% !important;
    }

    .md\:flex-auto {
        flex: 1 1 auto !important;
    }

    .md\:flex-initial {
        flex: 0 1 auto !important;
    }

    .md\:flex-none {
        flex: none !important;
    }

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

    .md\:justify-center {
        justify-content: center !important;
    }

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

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

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

    .md\:items-center {
        align-items: center !important;
    }

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

    /* Gap Responsiveness */
    .md\:gap-0 {
        gap: 0 !important;
    }

    .md\:gap-1 {
        gap: 0.25rem !important;
    }

    .md\:gap-2 {
        gap: 0.5rem !important;
    }

    .md\:gap-3 {
        gap: 0.75rem !important;
    }

    .md\:gap-4 {
        gap: 1rem !important;
    }

    .md\:gap-5 {
        gap: 1.25rem !important;
    }

    .md\:gap-6 {
        gap: 1.5rem !important;
    }

    .md\:gap-8 {
        gap: 2rem !important;
    }

    .md\:gap-10 {
        gap: 2.5rem !important;
    }

    .md\:gap-12 {
        gap: 3rem !important;
    }

    .md\:gap-32 {
        gap: 8rem !important;
    }

    .md\:gap-x-0 {
        column-gap: 0 !important;
    }

    .md\:gap-x-1 {
        column-gap: 0.25rem !important;
    }

    .md\:gap-x-2 {
        column-gap: 0.5rem !important;
    }

    .md\:gap-x-3 {
        column-gap: 0.75rem !important;
    }

    .md\:gap-x-4 {
        column-gap: 1rem !important;
    }

    .md\:gap-x-5 {
        column-gap: 1.25rem !important;
    }

    .md\:gap-x-6 {
        column-gap: 1.5rem !important;
    }

    .md\:gap-x-8 {
        column-gap: 2rem !important;
    }

    .md\:gap-x-10 {
        column-gap: 2.5rem !important;
    }

    .md\:gap-x-12 {
        column-gap: 3rem !important;
    }

    .md\:gap-x-32 {
        column-gap: 8rem !important;
    }

    .md\:gap-y-0 {
        row-gap: 0 !important;
    }

    .md\:gap-y-1 {
        row-gap: 0.25rem !important;
    }

    .md\:gap-y-2 {
        row-gap: 0.5rem !important;
    }

    .md\:gap-y-3 {
        row-gap: 0.75rem !important;
    }

    .md\:gap-y-4 {
        row-gap: 1rem !important;
    }

    .md\:gap-y-5 {
        row-gap: 1.25rem !important;
    }

    .md\:gap-y-6 {
        row-gap: 1.5rem !important;
    }

    .md\:gap-y-8 {
        row-gap: 2rem !important;
    }

    .md\:gap-y-10 {
        row-gap: 2.5rem !important;
    }

    .md\:gap-y-12 {
        row-gap: 3rem !important;
    }

    .md\:gap-y-32 {
        row-gap: 8rem !important;
    }

    /* Padding Responsiveness */
    .md\:p-0 {
        padding: 0 !important;
    }

    .md\:p-1 {
        padding: 0.25rem !important;
    }

    .md\:p-2 {
        padding: 0.5rem !important;
    }

    .md\:p-3 {
        padding: 0.75rem !important;
    }

    .md\:p-4 {
        padding: 1rem !important;
    }

    .md\:p-5 {
        padding: 1.25rem !important;
    }

    .md\:p-6 {
        padding: 1.5rem !important;
    }

    .md\:p-8 {
        padding: 2rem !important;
    }

    .md\:p-10 {
        padding: 2.5rem !important;
    }

    .md\:p-12 {
        padding: 3rem !important;
    }

    .md\:p-32 {
        padding: 8rem !important;
    }

    .md\:p-120 {
        padding: 7.5rem !important;
    }

    .md\:px-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .md\:px-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .md\:px-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .md\:px-3 {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .md\:px-4 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .md\:px-5 {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    .md\:px-6 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .md\:px-8 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .md\:px-10 {
        padding-left: 2.5rem !important;
        padding-right: 2.5rem !important;
    }

    .md\:px-12 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .md\:px-32 {
        padding-left: 8rem !important;
        padding-right: 8rem !important;
    }

    .md\:px-120 {
        padding-left: 7.5rem !important;
        padding-right: 7.5rem !important;
    }

    .md\:py-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .md\:py-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .md\:py-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .md\:py-3 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .md\:py-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .md\:py-5 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }

    .md\:py-6 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .md\:py-8 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .md\:py-10 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .md\:py-12 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .md\:py-32 {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
    }

    .md\:py-120 {
        padding-top: 7.5rem !important;
        padding-bottom: 7.5rem !important;
    }

    .md\:pt-0 {
        padding-top: 0 !important;
    }

    .md\:pt-1 {
        padding-top: 0.25rem !important;
    }

    .md\:pt-2 {
        padding-top: 0.5rem !important;
    }

    .md\:pt-3 {
        padding-top: 0.75rem !important;
    }

    .md\:pt-4 {
        padding-top: 1rem !important;
    }

    .md\:pt-5 {
        padding-top: 1.25rem !important;
    }

    .md\:pt-6 {
        padding-top: 1.5rem !important;
    }

    .md\:pt-8 {
        padding-top: 2rem !important;
    }

    .md\:pt-10 {
        padding-top: 2.5rem !important;
    }

    .md\:pt-12 {
        padding-top: 3rem !important;
    }

    .md\:pt-32 {
        padding-top: 8rem !important;
    }

    .md\:pb-0 {
        padding-bottom: 0 !important;
    }

    .md\:pb-1 {
        padding-bottom: 0.25rem !important;
    }

    .md\:pb-2 {
        padding-bottom: 0.5rem !important;
    }

    .md\:pb-3 {
        padding-bottom: 0.75rem !important;
    }

    .md\:pb-4 {
        padding-bottom: 1rem !important;
    }

    .md\:pb-5 {
        padding-bottom: 1.25rem !important;
    }

    .md\:pb-6 {
        padding-bottom: 1.5rem !important;
    }

    .md\:pb-8 {
        padding-bottom: 2rem !important;
    }

    .md\:pb-10 {
        padding-bottom: 2.5rem !important;
    }

    .md\:pb-12 {
        padding-bottom: 3rem !important;
    }

    .md\:pb-32 {
        padding-bottom: 8rem !important;
    }

    .md\:pl-0 {
        padding-left: 0 !important;
    }

    .md\:pl-1 {
        padding-left: 0.25rem !important;
    }

    .md\:pl-2 {
        padding-left: 0.5rem !important;
    }

    .md\:pl-3 {
        padding-left: 0.75rem !important;
    }

    .md\:pl-4 {
        padding-left: 1rem !important;
    }

    .md\:pl-5 {
        padding-left: 1.25rem !important;
    }

    .md\:pl-6 {
        padding-left: 1.5rem !important;
    }

    .md\:pl-8 {
        padding-left: 2rem !important;
    }

    .md\:pl-10 {
        padding-left: 2.5rem !important;
    }

    .md\:pl-12 {
        padding-left: 3rem !important;
    }

    .md\:pl-32 {
        padding-left: 8rem !important;
    }

    .md\:pr-0 {
        padding-right: 0 !important;
    }

    .md\:pr-1 {
        padding-right: 0.25rem !important;
    }

    .md\:pr-2 {
        padding-right: 0.5rem !important;
    }

    .md\:pr-3 {
        padding-right: 0.75rem !important;
    }

    .md\:pr-4 {
        padding-right: 1rem !important;
    }

    .md\:pr-5 {
        padding-right: 1.25rem !important;
    }

    .md\:pr-6 {
        padding-right: 1.5rem !important;
    }

    .md\:pr-8 {
        padding-right: 2rem !important;
    }

    .md\:pr-10 {
        padding-right: 2.5rem !important;
    }

    .md\:pr-12 {
        padding-right: 3rem !important;
    }

    .md\:pr-32 {
        padding-right: 8rem !important;
    }

    /* Margin Responsiveness */
    .md\:m-0 {
        margin: 0 !important;
    }

    .md\:m-1 {
        margin: 0.25rem !important;
    }

    .md\:m-2 {
        margin: 0.5rem !important;
    }

    .md\:m-3 {
        margin: 0.75rem !important;
    }

    .md\:m-4 {
        margin: 1rem !important;
    }

    .md\:m-5 {
        margin: 1.25rem !important;
    }

    .md\:m-6 {
        margin: 1.5rem !important;
    }

    .md\:m-8 {
        margin: 2rem !important;
    }

    .md\:m-10 {
        margin: 2.5rem !important;
    }

    .md\:m-12 {
        margin: 3rem !important;
    }

    .md\:m-32 {
        margin: 8rem !important;
    }

    .md\:m-auto {
        margin: auto !important;
    }

    .md\:mx-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .md\:mx-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .md\:mx-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .md\:mx-3 {
        margin-left: 0.75rem !important;
        margin-right: 0.75rem !important;
    }

    .md\:mx-4 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .md\:mx-5 {
        margin-left: 1.25rem !important;
        margin-right: 1.25rem !important;
    }

    .md\:mx-6 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .md\:mx-8 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .md\:mx-10 {
        margin-left: 2.5rem !important;
        margin-right: 2.5rem !important;
    }

    .md\:mx-12 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .md\:mx-32 {
        margin-left: 8rem !important;
        margin-right: 8rem !important;
    }

    .md\:mx-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .md\:my-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .md\:my-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .md\:my-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .md\:my-3 {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .md\:my-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .md\:my-5 {
        margin-top: 1.25rem !important;
        margin-bottom: 1.25rem !important;
    }

    .md\:my-6 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .md\:my-8 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .md\:my-10 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .md\:my-12 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .md\:my-32 {
        margin-top: 8rem !important;
        margin-bottom: 8rem !important;
    }

    .md\:my-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .md\:mt-0 {
        margin-top: 0 !important;
    }

    .md\:mt-1 {
        margin-top: 0.25rem !important;
    }

    .md\:mt-2 {
        margin-top: 0.5rem !important;
    }

    .md\:mt-3 {
        margin-top: 0.75rem !important;
    }

    .md\:mt-4 {
        margin-top: 1rem !important;
    }

    .md\:mt-5 {
        margin-top: 1.25rem !important;
    }

    .md\:mt-6 {
        margin-top: 1.5rem !important;
    }

    .md\:mt-8 {
        margin-top: 2rem !important;
    }

    .md\:mt-10 {
        margin-top: 2.5rem !important;
    }

    .md\:mt-12 {
        margin-top: 3rem !important;
    }

    .md\:mt-32 {
        margin-top: 8rem !important;
    }

    .md\:mt-auto {
        margin-top: auto !important;
    }

    .md\:mb-0 {
        margin-bottom: 0 !important;
    }

    .md\:mb-1 {
        margin-bottom: 0.25rem !important;
    }

    .md\:mb-2 {
        margin-bottom: 0.5rem !important;
    }

    .md\:mb-3 {
        margin-bottom: 0.75rem !important;
    }

    .md\:mb-4 {
        margin-bottom: 1rem !important;
    }

    .md\:mb-5 {
        margin-bottom: 1.25rem !important;
    }

    .md\:mb-6 {
        margin-bottom: 1.5rem !important;
    }

    .md\:mb-8 {
        margin-bottom: 2rem !important;
    }

    .md\:mb-10 {
        margin-bottom: 2.5rem !important;
    }

    .md\:mb-12 {
        margin-bottom: 3rem !important;
    }

    .md\:mb-32 {
        margin-bottom: 8rem !important;
    }

    .md\:mb-auto {
        margin-bottom: auto !important;
    }

    .md\:ml-0 {
        margin-left: 0 !important;
    }

    .md\:ml-1 {
        margin-left: 0.25rem !important;
    }

    .md\:ml-2 {
        margin-left: 0.5rem !important;
    }

    .md\:ml-3 {
        margin-left: 0.75rem !important;
    }

    .md\:ml-4 {
        margin-left: 1rem !important;
    }

    .md\:ml-5 {
        margin-left: 1.25rem !important;
    }

    .md\:ml-6 {
        margin-left: 1.5rem !important;
    }

    .md\:ml-8 {
        margin-left: 2rem !important;
    }

    .md\:ml-10 {
        margin-left: 2.5rem !important;
    }

    .md\:ml-12 {
        margin-left: 3rem !important;
    }

    .md\:ml-32 {
        margin-left: 8rem !important;
    }

    .md\:ml-auto {
        margin-left: auto !important;
    }

    .md\:mr-0 {
        margin-right: 0 !important;
    }

    .md\:mr-1 {
        margin-right: 0.25rem !important;
    }

    .md\:mr-2 {
        margin-right: 0.5rem !important;
    }

    .md\:mr-3 {
        margin-right: 0.75rem !important;
    }

    .md\:mr-4 {
        margin-right: 1rem !important;
    }

    .md\:mr-5 {
        margin-right: 1.25rem !important;
    }

    .md\:mr-6 {
        margin-right: 1.5rem !important;
    }

    .md\:mr-8 {
        margin-right: 2rem !important;
    }

    .md\:mr-10 {
        margin-right: 2.5rem !important;
    }

    .md\:mr-12 {
        margin-right: 3rem !important;
    }

    .md\:mr-32 {
        margin-right: 8rem !important;
    }

    .md\:mr-auto {
        margin-right: auto !important;
    }

    /* Cursor Responsiveness */
    .md\:cursor-auto {
        cursor: auto !important;
    }

    .md\:cursor-default {
        cursor: default !important;
    }

    .md\:cursor-pointer {
        cursor: pointer !important;
    }

    .md\:cursor-wait {
        cursor: wait !important;
    }

    .md\:cursor-text {
        cursor: text !important;
    }

    .md\:cursor-move {
        cursor: move !important;
    }

    .md\:cursor-help {
        cursor: help !important;
    }

    .md\:cursor-not-allowed {
        cursor: not-allowed !important;
    }

    /* Border Radius Responsiveness */
    .md\:rounded-none {
        border-radius: 0px !important;
    }

    .md\:rounded-sm {
        border-radius: 0.125rem !important;
    }

    .md\:rounded {
        border-radius: 0.25rem !important;
    }

    .md\:rounded-md {
        border-radius: 0.375rem !important;
    }

    .md\:rounded-lg {
        border-radius: 0.5rem !important;
    }

    .md\:rounded-xl {
        border-radius: 0.75rem !important;
    }

    .md\:rounded-2xl {
        border-radius: 1rem !important;
    }

    .md\:rounded-3xl {
        border-radius: 1.5rem !important;
    }

    .md\:rounded-full {
        border-radius: 9999px !important;
    }

    /* Positioning Responsiveness */
    .md\:top-0 {
        top: 0 !important;
    }

    .md\:top-1 {
        top: 0.25rem !important;
    }

    .md\:top-2 {
        top: 0.5rem !important;
    }

    .md\:top-3 {
        top: 0.75rem !important;
    }

    .md\:top-4 {
        top: 1rem !important;
    }

    .md\:top-5 {
        top: 1.25rem !important;
    }

    .md\:top-6 {
        top: 1.5rem !important;
    }

    .md\:top-8 {
        top: 2rem !important;
    }

    .md\:top-10 {
        top: 2.5rem !important;
    }

    .md\:top-12 {
        top: 3rem !important;
    }

    .md\:top-32 {
        top: 8rem !important;
    }

    .md\:top-auto {
        top: auto !important;
    }

    .md\:right-0 {
        right: 0 !important;
    }

    .md\:right-1 {
        right: 0.25rem !important;
    }

    .md\:right-2 {
        right: 0.5rem !important;
    }

    .md\:right-3 {
        right: 0.75rem !important;
    }

    .md\:right-4 {
        right: 1rem !important;
    }

    .md\:right-5 {
        right: 1.25rem !important;
    }

    .md\:right-6 {
        right: 1.5rem !important;
    }

    .md\:right-8 {
        right: 2rem !important;
    }

    .md\:right-10 {
        right: 2.5rem !important;
    }

    .md\:right-12 {
        right: 3rem !important;
    }

    .md\:right-32 {
        right: 8rem !important;
    }

    .md\:right-auto {
        right: auto !important;
    }

    .md\:bottom-0 {
        bottom: 0 !important;
    }

    .md\:bottom-1 {
        bottom: 0.25rem !important;
    }

    .md\:bottom-2 {
        bottom: 0.5rem !important;
    }

    .md\:bottom-3 {
        bottom: 0.75rem !important;
    }

    .md\:bottom-4 {
        bottom: 1rem !important;
    }

    .md\:bottom-5 {
        bottom: 1.25rem !important;
    }

    .md\:bottom-6 {
        bottom: 1.5rem !important;
    }

    .md\:bottom-8 {
        bottom: 2rem !important;
    }

    .md\:bottom-10 {
        bottom: 2.5rem !important;
    }

    .md\:bottom-12 {
        bottom: 3rem !important;
    }

    .md\:bottom-32 {
        bottom: 8rem !important;
    }

    .md\:bottom-auto {
        bottom: auto !important;
    }

    .md\:left-0 {
        left: 0 !important;
    }

    .md\:left-1 {
        left: 0.25rem !important;
    }

    .md\:left-2 {
        left: 0.5rem !important;
    }

    .md\:left-3 {
        left: 0.75rem !important;
    }

    .md\:left-4 {
        left: 1rem !important;
    }

    .md\:left-5 {
        left: 1.25rem !important;
    }

    .md\:left-6 {
        left: 1.5rem !important;
    }

    .md\:left-8 {
        left: 2rem !important;
    }

    .md\:left-10 {
        left: 2.5rem !important;
    }

    .md\:left-12 {
        left: 3rem !important;
    }

    .md\:left-32 {
        left: 8rem !important;
    }

    .md\:left-auto {
        left: auto !important;
    }

    /* Width Responsiveness */
    .md\:w-0 {
        width: 0 !important;
    }

    .md\:w-1 {
        width: 0.25rem !important;
    }

    .md\:w-2 {
        width: 0.5rem !important;
    }

    .md\:w-3 {
        width: 0.75rem !important;
    }

    .md\:w-4 {
        width: 1rem !important;
    }

    .md\:w-5 {
        width: 1.25rem !important;
    }

    .md\:w-6 {
        width: 1.5rem !important;
    }

    .md\:w-8 {
        width: 2rem !important;
    }

    .md\:w-10 {
        width: 2.5rem !important;
    }

    .md\:w-12 {
        width: 3rem !important;
    }

    .md\:w-16 {
        width: 4rem !important;
    }

    .md\:w-20 {
        width: 5rem !important;
    }

    .md\:w-24 {
        width: 6rem !important;
    }

    .md\:w-32 {
        width: 8rem !important;
    }

    .md\:w-40 {
        width: 10rem !important;
    }

    .md\:w-48 {
        width: 12rem !important;
    }

    .md\:w-56 {
        width: 14rem !important;
    }

    .md\:w-64 {
        width: 16rem !important;
    }

    .md\:w-auto {
        width: auto !important;
    }

    .md\:w-px {
        width: 1px !important;
    }

    .md\:w-1\/2 {
        width: 50% !important;
    }

    .md\:w-1\/3 {
        width: 33.333333% !important;
    }

    .md\:w-2\/3 {
        width: 66.666667% !important;
    }

    .md\:w-1\/4 {
        width: 25% !important;
    }

    .md\:w-2\/4 {
        width: 50% !important;
    }

    .md\:w-3\/4 {
        width: 75% !important;
    }

    .md\:w-1\/5 {
        width: 20% !important;
    }

    .md\:w-2\/5 {
        width: 40% !important;
    }

    .md\:w-3\/5 {
        width: 60% !important;
    }

    .md\:w-4\/5 {
        width: 80% !important;
    }

    .md\:w-full {
        width: 100% !important;
    }

    .md\:w-screen {
        width: 100vw !important;
    }

    .md\:w-min {
        width: min-content !important;
    }

    .md\:w-max {
        width: max-content !important;
    }

    .md\:w-fit {
        width: fit-content !important;
    }
}

/* Large devices (lg) */
@media (min-width: 1024px) {
    .lg\:relative {
        position: relative !important;
    }

    .lg\:absolute {
        position: absolute !important;
    }

    .lg\:fixed {
        position: fixed !important;
    }

    .lg\:hidden {
        display: none;
    }

    .lg\:block {
        display: block;
    }

    .lg\:text-left {
        text-align: left !important;
    }

    .lg\:text-center {
        text-align: center !important;
    }

    .lg\:text-right {
        text-align: right !important;
    }

    .lg\:text-justify {
        text-align: justify !important;
    }

    /* Typography Size Responsiveness */
    .lg\:text-xs {
        font-size: 0.75rem !important;
    }

    .lg\:text-sm {
        font-size: 0.875rem !important;
    }

    .lg\:text-base {
        font-size: 1rem !important;
    }

    .lg\:text-lg {
        font-size: 1.125rem !important;
    }

    .lg\:text-xl {
        font-size: 1.25rem !important;
    }

    .lg\:text-2xl {
        font-size: 1.5rem !important;
    }

    .lg\:text-3xl {
        font-size: 1.875rem !important;
    }

    .lg\:text-4xl {
        font-size: 2.25rem !important;
    }

    .lg\:text-5xl {
        font-size: 3rem !important;
    }

    .lg\:text-6xl {
        font-size: 3.75rem !important;
    }

    .lg\:text-7xl {
        font-size: 4.5rem !important;
    }

    .lg\:text-8xl {
        font-size: 6rem !important;
    }

    .lg\:text-9xl {
        font-size: 8rem !important;
    }

    /* Flexbox Responsiveness */
    .lg\:flex {
        display: flex !important;
    }

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

    .lg\:flex-col {
        flex-direction: column !important;
    }

    .lg\:flex-1 {
        flex: 1 1 0% !important;
    }

    .lg\:flex-auto {
        flex: 1 1 auto !important;
    }

    .lg\:flex-initial {
        flex: 0 1 auto !important;
    }

    .lg\:flex-none {
        flex: none !important;
    }

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

    .lg\:justify-center {
        justify-content: center !important;
    }

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

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

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

    .lg\:items-center {
        align-items: center !important;
    }

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

    /* Gap Responsiveness */
    .lg\:gap-0 {
        gap: 0 !important;
    }

    .lg\:gap-1 {
        gap: 0.25rem !important;
    }

    .lg\:gap-2 {
        gap: 0.5rem !important;
    }

    .lg\:gap-3 {
        gap: 0.75rem !important;
    }

    .lg\:gap-4 {
        gap: 1rem !important;
    }

    .lg\:gap-5 {
        gap: 1.25rem !important;
    }

    .lg\:gap-6 {
        gap: 1.5rem !important;
    }

    .lg\:gap-8 {
        gap: 2rem !important;
    }

    .lg\:gap-10 {
        gap: 2.5rem !important;
    }

    .lg\:gap-12 {
        gap: 3rem !important;
    }

    .lg\:gap-32 {
        gap: 8rem !important;
    }

    .lg\:gap-x-0 {
        column-gap: 0 !important;
    }

    .lg\:gap-x-1 {
        column-gap: 0.25rem !important;
    }

    .lg\:gap-x-2 {
        column-gap: 0.5rem !important;
    }

    .lg\:gap-x-3 {
        column-gap: 0.75rem !important;
    }

    .lg\:gap-x-4 {
        column-gap: 1rem !important;
    }

    .lg\:gap-x-5 {
        column-gap: 1.25rem !important;
    }

    .lg\:gap-x-6 {
        column-gap: 1.5rem !important;
    }

    .lg\:gap-x-8 {
        column-gap: 2rem !important;
    }

    .lg\:gap-x-10 {
        column-gap: 2.5rem !important;
    }

    .lg\:gap-x-12 {
        column-gap: 3rem !important;
    }

    .lg\:gap-x-32 {
        column-gap: 8rem !important;
    }

    .lg\:gap-y-0 {
        row-gap: 0 !important;
    }

    .lg\:gap-y-1 {
        row-gap: 0.25rem !important;
    }

    .lg\:gap-y-2 {
        row-gap: 0.5rem !important;
    }

    .lg\:gap-y-3 {
        row-gap: 0.75rem !important;
    }

    .lg\:gap-y-4 {
        row-gap: 1rem !important;
    }

    .lg\:gap-y-5 {
        row-gap: 1.25rem !important;
    }

    .lg\:gap-y-6 {
        row-gap: 1.5rem !important;
    }

    .lg\:gap-y-8 {
        row-gap: 2rem !important;
    }

    .lg\:gap-y-10 {
        row-gap: 2.5rem !important;
    }

    .lg\:gap-y-12 {
        row-gap: 3rem !important;
    }

    .lg\:gap-y-32 {
        row-gap: 8rem !important;
    }

    /* Padding Responsiveness */
    .lg\:p-0 {
        padding: 0 !important;
    }

    .lg\:p-1 {
        padding: 0.25rem !important;
    }

    .lg\:p-2 {
        padding: 0.5rem !important;
    }

    .lg\:p-3 {
        padding: 0.75rem !important;
    }

    .lg\:p-4 {
        padding: 1rem !important;
    }

    .lg\:p-5 {
        padding: 1.25rem !important;
    }

    .lg\:p-6 {
        padding: 1.5rem !important;
    }

    .lg\:p-8 {
        padding: 2rem !important;
    }

    .lg\:p-10 {
        padding: 2.5rem !important;
    }

    .lg\:p-12 {
        padding: 3rem !important;
    }

    .lg\:p-32 {
        padding: 8rem !important;
    }

    .lg\:p-120 {
        padding: 7.5rem !important;
    }

    .lg\:px-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .lg\:px-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .lg\:px-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .lg\:px-3 {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .lg\:px-4 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .lg\:px-5 {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    .lg\:px-6 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .lg\:px-8 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .lg\:px-10 {
        padding-left: 2.5rem !important;
        padding-right: 2.5rem !important;
    }

    .lg\:px-12 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .lg\:px-32 {
        padding-left: 8rem !important;
        padding-right: 8rem !important;
    }

    .lg\:px-120 {
        padding-left: 7.5rem !important;
        padding-right: 7.5rem !important;
    }

    .lg\:py-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .lg\:py-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .lg\:py-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .lg\:py-3 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .lg\:py-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .lg\:py-5 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }

    .lg\:py-6 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .lg\:py-8 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .lg\:py-10 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .lg\:py-12 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .lg\:py-32 {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
    }

    .lg\:py-120 {
        padding-top: 7.5rem !important;
        padding-bottom: 7.5rem !important;
    }

    .lg\:pt-0 {
        padding-top: 0 !important;
    }

    .lg\:pt-1 {
        padding-top: 0.25rem !important;
    }

    .lg\:pt-2 {
        padding-top: 0.5rem !important;
    }

    .lg\:pt-3 {
        padding-top: 0.75rem !important;
    }

    .lg\:pt-4 {
        padding-top: 1rem !important;
    }

    .lg\:pt-5 {
        padding-top: 1.25rem !important;
    }

    .lg\:pt-6 {
        padding-top: 1.5rem !important;
    }

    .lg\:pt-8 {
        padding-top: 2rem !important;
    }

    .lg\:pt-10 {
        padding-top: 2.5rem !important;
    }

    .lg\:pt-12 {
        padding-top: 3rem !important;
    }

    .lg\:pt-32 {
        padding-top: 8rem !important;
    }

    .lg\:pb-0 {
        padding-bottom: 0 !important;
    }

    .lg\:pb-1 {
        padding-bottom: 0.25rem !important;
    }

    .lg\:pb-2 {
        padding-bottom: 0.5rem !important;
    }

    .lg\:pb-3 {
        padding-bottom: 0.75rem !important;
    }

    .lg\:pb-4 {
        padding-bottom: 1rem !important;
    }

    .lg\:pb-5 {
        padding-bottom: 1.25rem !important;
    }

    .lg\:pb-6 {
        padding-bottom: 1.5rem !important;
    }

    .lg\:pb-8 {
        padding-bottom: 2rem !important;
    }

    .lg\:pb-10 {
        padding-bottom: 2.5rem !important;
    }

    .lg\:pb-12 {
        padding-bottom: 3rem !important;
    }

    .lg\:pb-32 {
        padding-bottom: 8rem !important;
    }

    .lg\:pl-0 {
        padding-left: 0 !important;
    }

    .lg\:pl-1 {
        padding-left: 0.25rem !important;
    }

    .lg\:pl-2 {
        padding-left: 0.5rem !important;
    }

    .lg\:pl-3 {
        padding-left: 0.75rem !important;
    }

    .lg\:pl-4 {
        padding-left: 1rem !important;
    }

    .lg\:pl-5 {
        padding-left: 1.25rem !important;
    }

    .lg\:pl-6 {
        padding-left: 1.5rem !important;
    }

    .lg\:pl-8 {
        padding-left: 2rem !important;
    }

    .lg\:pl-10 {
        padding-left: 2.5rem !important;
    }

    .lg\:pl-12 {
        padding-left: 3rem !important;
    }

    .lg\:pl-32 {
        padding-left: 8rem !important;
    }

    .lg\:pr-0 {
        padding-right: 0 !important;
    }

    .lg\:pr-1 {
        padding-right: 0.25rem !important;
    }

    .lg\:pr-2 {
        padding-right: 0.5rem !important;
    }

    .lg\:pr-3 {
        padding-right: 0.75rem !important;
    }

    .lg\:pr-4 {
        padding-right: 1rem !important;
    }

    .lg\:pr-5 {
        padding-right: 1.25rem !important;
    }

    .lg\:pr-6 {
        padding-right: 1.5rem !important;
    }

    .lg\:pr-8 {
        padding-right: 2rem !important;
    }

    .lg\:pr-10 {
        padding-right: 2.5rem !important;
    }

    .lg\:pr-12 {
        padding-right: 3rem !important;
    }

    .lg\:pr-32 {
        padding-right: 8rem !important;
    }

    /* Margin Responsiveness */
    .lg\:m-0 {
        margin: 0 !important;
    }

    .lg\:m-1 {
        margin: 0.25rem !important;
    }

    .lg\:m-2 {
        margin: 0.5rem !important;
    }

    .lg\:m-3 {
        margin: 0.75rem !important;
    }

    .lg\:m-4 {
        margin: 1rem !important;
    }

    .lg\:m-5 {
        margin: 1.25rem !important;
    }

    .lg\:m-6 {
        margin: 1.5rem !important;
    }

    .lg\:m-8 {
        margin: 2rem !important;
    }

    .lg\:m-10 {
        margin: 2.5rem !important;
    }

    .lg\:m-12 {
        margin: 3rem !important;
    }

    .lg\:m-32 {
        margin: 8rem !important;
    }

    .lg\:m-auto {
        margin: auto !important;
    }

    .lg\:mx-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .lg\:mx-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .lg\:mx-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .lg\:mx-3 {
        margin-left: 0.75rem !important;
        margin-right: 0.75rem !important;
    }

    .lg\:mx-4 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .lg\:mx-5 {
        margin-left: 1.25rem !important;
        margin-right: 1.25rem !important;
    }

    .lg\:mx-6 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .lg\:mx-8 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .lg\:mx-10 {
        margin-left: 2.5rem !important;
        margin-right: 2.5rem !important;
    }

    .lg\:mx-12 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .lg\:mx-32 {
        margin-left: 8rem !important;
        margin-right: 8rem !important;
    }

    .lg\:mx-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .lg\:my-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .lg\:my-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .lg\:my-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .lg\:my-3 {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .lg\:my-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .lg\:my-5 {
        margin-top: 1.25rem !important;
        margin-bottom: 1.25rem !important;
    }

    .lg\:my-6 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .lg\:my-8 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .lg\:my-10 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .lg\:my-12 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .lg\:my-32 {
        margin-top: 8rem !important;
        margin-bottom: 8rem !important;
    }

    .lg\:my-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .lg\:mt-0 {
        margin-top: 0 !important;
    }

    .lg\:mt-1 {
        margin-top: 0.25rem !important;
    }

    .lg\:mt-2 {
        margin-top: 0.5rem !important;
    }

    .lg\:mt-3 {
        margin-top: 0.75rem !important;
    }

    .lg\:mt-4 {
        margin-top: 1rem !important;
    }

    .lg\:mt-5 {
        margin-top: 1.25rem !important;
    }

    .lg\:mt-6 {
        margin-top: 1.5rem !important;
    }

    .lg\:mt-8 {
        margin-top: 2rem !important;
    }

    .lg\:mt-10 {
        margin-top: 2.5rem !important;
    }

    .lg\:mt-12 {
        margin-top: 3rem !important;
    }

    .lg\:mt-32 {
        margin-top: 8rem !important;
    }

    .lg\:mt-auto {
        margin-top: auto !important;
    }

    .lg\:mb-0 {
        margin-bottom: 0 !important;
    }

    .lg\:mb-1 {
        margin-bottom: 0.25rem !important;
    }

    .lg\:mb-2 {
        margin-bottom: 0.5rem !important;
    }

    .lg\:mb-3 {
        margin-bottom: 0.75rem !important;
    }

    .lg\:mb-4 {
        margin-bottom: 1rem !important;
    }

    .lg\:mb-5 {
        margin-bottom: 1.25rem !important;
    }

    .lg\:mb-6 {
        margin-bottom: 1.5rem !important;
    }

    .lg\:mb-8 {
        margin-bottom: 2rem !important;
    }

    .lg\:mb-10 {
        margin-bottom: 2.5rem !important;
    }

    .lg\:mb-12 {
        margin-bottom: 3rem !important;
    }

    .lg\:mb-32 {
        margin-bottom: 8rem !important;
    }

    .lg\:mb-auto {
        margin-bottom: auto !important;
    }

    .lg\:ml-0 {
        margin-left: 0 !important;
    }

    .lg\:ml-1 {
        margin-left: 0.25rem !important;
    }

    .lg\:ml-2 {
        margin-left: 0.5rem !important;
    }

    .lg\:ml-3 {
        margin-left: 0.75rem !important;
    }

    .lg\:ml-4 {
        margin-left: 1rem !important;
    }

    .lg\:ml-5 {
        margin-left: 1.25rem !important;
    }

    .lg\:ml-6 {
        margin-left: 1.5rem !important;
    }

    .lg\:ml-8 {
        margin-left: 2rem !important;
    }

    .lg\:ml-10 {
        margin-left: 2.5rem !important;
    }

    .lg\:ml-12 {
        margin-left: 3rem !important;
    }

    .lg\:ml-32 {
        margin-left: 8rem !important;
    }

    .lg\:ml-auto {
        margin-left: auto !important;
    }

    .lg\:mr-0 {
        margin-right: 0 !important;
    }

    .lg\:mr-1 {
        margin-right: 0.25rem !important;
    }

    .lg\:mr-2 {
        margin-right: 0.5rem !important;
    }

    .lg\:mr-3 {
        margin-right: 0.75rem !important;
    }

    .lg\:mr-4 {
        margin-right: 1rem !important;
    }

    .lg\:mr-5 {
        margin-right: 1.25rem !important;
    }

    .lg\:mr-6 {
        margin-right: 1.5rem !important;
    }

    .lg\:mr-8 {
        margin-right: 2rem !important;
    }

    .lg\:mr-10 {
        margin-right: 2.5rem !important;
    }

    .lg\:mr-12 {
        margin-right: 3rem !important;
    }

    .lg\:mr-32 {
        margin-right: 8rem !important;
    }

    .lg\:mr-auto {
        margin-right: auto !important;
    }

    /* Cursor Responsiveness */
    .lg\:cursor-auto {
        cursor: auto !important;
    }

    .lg\:cursor-default {
        cursor: default !important;
    }

    .lg\:cursor-pointer {
        cursor: pointer !important;
    }

    .lg\:cursor-wait {
        cursor: wait !important;
    }

    .lg\:cursor-text {
        cursor: text !important;
    }

    .lg\:cursor-move {
        cursor: move !important;
    }

    .lg\:cursor-help {
        cursor: help !important;
    }

    .lg\:cursor-not-allowed {
        cursor: not-allowed !important;
    }

    /* Border Radius Responsiveness */
    .lg\:rounded-none {
        border-radius: 0px !important;
    }

    .lg\:rounded-sm {
        border-radius: 0.125rem !important;
    }

    .lg\:rounded {
        border-radius: 0.25rem !important;
    }

    .lg\:rounded-md {
        border-radius: 0.375rem !important;
    }

    .lg\:rounded-lg {
        border-radius: 0.5rem !important;
    }

    .lg\:rounded-xl {
        border-radius: 0.75rem !important;
    }

    .lg\:rounded-2xl {
        border-radius: 1rem !important;
    }

    .lg\:rounded-3xl {
        border-radius: 1.5rem !important;
    }

    .lg\:rounded-full {
        border-radius: 9999px !important;
    }

    /* Positioning Responsiveness */
    .lg\:top-0 {
        top: 0 !important;
    }

    .lg\:top-1 {
        top: 0.25rem !important;
    }

    .lg\:top-2 {
        top: 0.5rem !important;
    }

    .lg\:top-3 {
        top: 0.75rem !important;
    }

    .lg\:top-4 {
        top: 1rem !important;
    }

    .lg\:top-5 {
        top: 1.25rem !important;
    }

    .lg\:top-6 {
        top: 1.5rem !important;
    }

    .lg\:top-8 {
        top: 2rem !important;
    }

    .lg\:top-10 {
        top: 2.5rem !important;
    }

    .lg\:top-12 {
        top: 3rem !important;
    }

    .lg\:top-32 {
        top: 8rem !important;
    }

    .lg\:top-auto {
        top: auto !important;
    }

    .lg\:right-0 {
        right: 0 !important;
    }

    .lg\:right-1 {
        right: 0.25rem !important;
    }

    .lg\:right-2 {
        right: 0.5rem !important;
    }

    .lg\:right-3 {
        right: 0.75rem !important;
    }

    .lg\:right-4 {
        right: 1rem !important;
    }

    .lg\:right-5 {
        right: 1.25rem !important;
    }

    .lg\:right-6 {
        right: 1.5rem !important;
    }

    .lg\:right-8 {
        right: 2rem !important;
    }

    .lg\:right-10 {
        right: 2.5rem !important;
    }

    .lg\:right-12 {
        right: 3rem !important;
    }

    .lg\:right-32 {
        right: 8rem !important;
    }

    .lg\:right-auto {
        right: auto !important;
    }

    .lg\:bottom-0 {
        bottom: 0 !important;
    }

    .lg\:bottom-1 {
        bottom: 0.25rem !important;
    }

    .lg\:bottom-2 {
        bottom: 0.5rem !important;
    }

    .lg\:bottom-3 {
        bottom: 0.75rem !important;
    }

    .lg\:bottom-4 {
        bottom: 1rem !important;
    }

    .lg\:bottom-5 {
        bottom: 1.25rem !important;
    }

    .lg\:bottom-6 {
        bottom: 1.5rem !important;
    }

    .lg\:bottom-8 {
        bottom: 2rem !important;
    }

    .lg\:bottom-10 {
        bottom: 2.5rem !important;
    }

    .lg\:bottom-12 {
        bottom: 3rem !important;
    }

    .lg\:bottom-32 {
        bottom: 8rem !important;
    }

    .lg\:bottom-auto {
        bottom: auto !important;
    }

    .lg\:left-0 {
        left: 0 !important;
    }

    .lg\:left-1 {
        left: 0.25rem !important;
    }

    .lg\:left-2 {
        left: 0.5rem !important;
    }

    .lg\:left-3 {
        left: 0.75rem !important;
    }

    .lg\:left-4 {
        left: 1rem !important;
    }

    .lg\:left-5 {
        left: 1.25rem !important;
    }

    .lg\:left-6 {
        left: 1.5rem !important;
    }

    .lg\:left-8 {
        left: 2rem !important;
    }

    .lg\:left-10 {
        left: 2.5rem !important;
    }

    .lg\:left-12 {
        left: 3rem !important;
    }

    .lg\:left-32 {
        left: 8rem !important;
    }

    .lg\:left-auto {
        left: auto !important;
    }

    /* Width Responsiveness */
    .lg\:w-0 {
        width: 0 !important;
    }

    .lg\:w-1 {
        width: 0.25rem !important;
    }

    .lg\:w-2 {
        width: 0.5rem !important;
    }

    .lg\:w-3 {
        width: 0.75rem !important;
    }

    .lg\:w-4 {
        width: 1rem !important;
    }

    .lg\:w-5 {
        width: 1.25rem !important;
    }

    .lg\:w-6 {
        width: 1.5rem !important;
    }

    .lg\:w-8 {
        width: 2rem !important;
    }

    .lg\:w-10 {
        width: 2.5rem !important;
    }

    .lg\:w-12 {
        width: 3rem !important;
    }

    .lg\:w-16 {
        width: 4rem !important;
    }

    .lg\:w-20 {
        width: 5rem !important;
    }

    .lg\:w-24 {
        width: 6rem !important;
    }

    .lg\:w-32 {
        width: 8rem !important;
    }

    .lg\:w-40 {
        width: 10rem !important;
    }

    .lg\:w-48 {
        width: 12rem !important;
    }

    .lg\:w-56 {
        width: 14rem !important;
    }

    .lg\:w-64 {
        width: 16rem !important;
    }

    .lg\:w-auto {
        width: auto !important;
    }

    .lg\:w-px {
        width: 1px !important;
    }

    .lg\:w-1\/2 {
        width: 50% !important;
    }

    .lg\:w-1\/3 {
        width: 33.333333% !important;
    }

    .lg\:w-2\/3 {
        width: 66.666667% !important;
    }

    .lg\:w-1\/4 {
        width: 25% !important;
    }

    .lg\:w-2\/4 {
        width: 50% !important;
    }

    .lg\:w-3\/4 {
        width: 75% !important;
    }

    .lg\:w-1\/5 {
        width: 20% !important;
    }

    .lg\:w-2\/5 {
        width: 40% !important;
    }

    .lg\:w-3\/5 {
        width: 60% !important;
    }

    .lg\:w-4\/5 {
        width: 80% !important;
    }

    .lg\:w-full {
        width: 100% !important;
    }

    .lg\:w-screen {
        width: 100vw !important;
    }

    .lg\:w-min {
        width: min-content !important;
    }

    .lg\:w-max {
        width: max-content !important;
    }

    .lg\:w-fit {
        width: fit-content !important;
    }
}