﻿
/*==============================global css==============================*/
.grid {
    display: grid;
}

/* Grid Columns */

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-1-i {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

.col-span-1 {
    grid-column: span 1 / span 1;
}

.col-span-1-i {
    grid-column: span 1 / span 1 !important;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-2-i {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.col-span-2 {
    grid-column: span 2 / span 2;
}

.col-span-2-i {
    grid-column: span 2 / span 2 !important;
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-3-i {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.col-span-3 {
    grid-column: span 3 / span 3;
}

.col-span-3-i {
    grid-column: span 3 / span 3 !important;
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-4-i {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.col-span-4 {
    grid-column: span 4 / span 4;
}

.col-span-4-i {
    grid-column: span 4 / span 4 !important;
}

.grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-5-i {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.col-span-5 {
    grid-column: span 5 / span 5;
}

.col-span-5-i {
    grid-column: span 5 / span 5 !important;
}

.grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-6-i {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.col-span-6 {
    grid-column: span 6 / span 6;
}

.col-span-6-i {
    grid-column: span 6 / span 6 !important;
}

.grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols-7-i {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}

.col-span-7 {
    grid-column: span 7 / span 7;
}

.col-span-7-i {
    grid-column: span 7 / span 7 !important;
}

.grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-cols-8-i {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
}

.col-span-8 {
    grid-column: span 8 / span 8;
}

.col-span-8-i {
    grid-column: span 8 / span 8 !important;
}

.grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-cols-9-i {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
}

.col-span-9 {
    grid-column: span 9 / span 9;
}

.col-span-9-i {
    grid-column: span 9 / span 9 !important;
}

.grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-cols-10-i {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
}

.col-span-10 {
    grid-column: span 10 / span 10;
}

.col-span-10-i {
    grid-column: span 10 / span 10 !important;
}

.grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-cols-11-i {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
}

.col-span-11 {
    grid-column: span 11 / span 11;
}

.col-span-11-i {
    grid-column: span 11 / span 11 !important;
}

.grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-12-i {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
}

.col-span-12 {
    grid-column: span 12 / span 12;
}

.col-span-12-i {
    grid-column: span 12 / span 12 !important;
}


/*=============== display propaty start ================*/
.hidden {
    display: none;
}

.hidden-i {
    display: none !important;
}

.block {
    display: block;
}

.block-i {
    display: block !important;
}

.inline-block {
    display: inline-block;
}

.inline-block-i {
    display: inline-block !important;
}

.inline {
    display: inline;
}

.inline-i {
    display: inline !important;
}

.flex {
    display: flex;
}

.flex-i {
    display: flex !important;
}

.grid {
    display: grid;
}

.grid-i {
    display: grid !important;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.cursor-pointer {
    cursor: pointer;
}

/*=============== display propaty end ================*/

/*================ justify propartys start ==================*/
.justify-normal {
    justify-content: normal;
}

.justify-normal-i {
    justify-content: normal !important;
}

.justify-center {
    justify-content: center;
}

.justify-center-i {
    justify-content: center !important;
}

.justify-between {
    justify-content: space-between;
}

.justify-between-i {
    justify-content: space-between !important;
}

.justify-around {
    justify-content: space-around;
}

.justify-around-i {
    justify-content: space-around !important;
}

.justify-end {
    justify-content: flex-end;
}

.justify-end-i {
    justify-content: flex-end !important;
}

/*================ justify propartys end ==================*/

/*================ flex derection start ================*/
.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-column-i {
    flex-direction: column !important;
}

.flex-row-i {
    flex-direction: row !important;
}

/*================ flex derection end ================*/

/*==================== flex items property start =================*/
.items-center {
    align-items: center;
}

.items-center-i {
    align-items: center !important;
}

.items-start {
    align-items: start;
}

.items-start-i {
    align-items: start !important;
}

.items-end {
    align-items: end;
}

.items-end-i {
    align-items: end !important;
}

/*==================== flex items property end =================*/

/*==================== position propertys start =================*/
.relative {
    position: relative;
}

.relative-i {
    position: relative !important;
}

.absolute {
    position: absolute;
}

.absolute-i {
    position: absolute !important;
}

.fixed {
    position: fixed;
}

.fixed-i {
    position: fixed !important;
}

.sticky {
    position: sticky;
}

.sticky-i {
    position: sticky !important;
}

.static {
    position: static;
}

.static-i {
    position: static !important;
}

/*==================== position propertys end =================*/

.ml-auto {
    margin-left: auto;
}

.ml-auto-i {
    margin-left: auto !important;
}

.mr-auto {
    margin-right: auto;
}

.mr-auto-i {
    margin-right: auto !important;
}

.mt-auto {
    margin-top: auto;
}

.mt-auto-i {
    margin-top: auto !important;
}

.mb-auto {
    margin-bottom: auto;
}

.mb-auto-i {
    margin-bottom: auto !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mx-auto-i {
    margin-left: auto !important;
    margin-right: auto !important;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.border,
.border-solid {
    border-style: solid;
}

.border-i,
.border-solid-i {
    border-style: solid !important;
}

.hover-border-i:hover,
.hover-border-solid-i:hover {
    border-style: solid !important;
}

.hover-border:hover,
.hover-border-solid:hover {
    border-style: solid;
}

.border-dashed {
    border-style: dashed;
}

.border-dashed-i {
    border-style: dashed !important;
}

.hover-border-dashed:hover {
    border-style: dashed;
}

.hover-border-dashed-i:hover {
    border-style: dashed !important;
}


.max-w-full {
    max-width: 100%;
}

.w-full {
    width: 100%;
}
.w-full-i {
    width: 100% !important;
}

.max-w-h {
    max-height: 100%;
}

.h-full {
    height: 100%;
}

.rounded-full {
    border-radius: 50%;
}

.rounded-full-i {
    border-radius: 50%;
}

/* ================== border redius end ===================== */

/* =================== font weight start =================== */
.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-normal-i {
    font-weight: 400 !important;
}

.font-medium-i {
    font-weight: 500 !important;
}

.font-semibold-i {
    font-weight: 600 !important;
}

.font-bold-i {
    font-weight: 700 !important;
}

/*================= typography =================*/

.w-0px {
    width: 0px;
}

.w-0px-i {
    width: 0px !important;
}

.max-w-0px {
    max-width: 0px;
}

.max-w-0px-i {
    max-width: 0px !important;
}

.max-h-0px {
    max-height: 0px;
}

.max-h-0px-i {
    max-height: 0px !important;
}

.min-h-0px {
    min-height: 0px;
}

.min-h-0px-i {
    min-height: 0px !important;
}

.min-w-0px {
    min-width: 0px;
}

.min-w-0px-i {
    min-width: 0px !important;
}

.h-0px {
    height: 0px;
}

.h-0px-i {
    height: 0px !important;
}

.w-1px {
    width: 1px;
}

.w-1px-i {
    width: 1px !important;
}

.max-w-1px {
    max-width: 1px;
}

.max-w-1px-i {
    max-width: 1px !important;
}

.max-h-1px {
    max-height: 1px;
}

.max-h-1px-i {
    max-height: 1px !important;
}

.min-h-1px {
    min-height: 1px;
}

.min-h-1px-i {
    min-height: 1px !important;
}

.min-w-1px {
    min-width: 1px;
}

.min-w-1px-i {
    min-width: 1px !important;
}

.h-1px {
    height: 1px;
}

.h-1px-i {
    height: 1px !important;
}

.w-2px {
    width: 2px;
}

.w-2px-i {
    width: 2px !important;
}

.max-w-2px {
    max-width: 2px;
}

.max-w-2px-i {
    max-width: 2px !important;
}

.max-h-2px {
    max-height: 2px;
}

.max-h-2px-i {
    max-height: 2px !important;
}

.min-h-2px {
    min-height: 2px;
}

.min-h-2px-i {
    min-height: 2px !important;
}

.min-w-2px {
    min-width: 2px;
}

.min-w-2px-i {
    min-width: 2px !important;
}

.h-2px {
    height: 2px;
}

.h-2px-i {
    height: 2px !important;
}

.w-3px {
    width: 3px;
}

.w-3px-i {
    width: 3px !important;
}

.max-w-3px {
    max-width: 3px;
}

.max-w-3px-i {
    max-width: 3px !important;
}

.max-h-3px {
    max-height: 3px;
}

.max-h-3px-i {
    max-height: 3px !important;
}

.min-h-3px {
    min-height: 3px;
}

.min-h-3px-i {
    min-height: 3px !important;
}

.min-w-3px {
    min-width: 3px;
}

.min-w-3px-i {
    min-width: 3px !important;
}

.h-3px {
    height: 3px;
}

.h-3px-i {
    height: 3px !important;
}

.w-4px {
    width: 4px;
}

.w-4px-i {
    width: 4px !important;
}

.max-w-4px {
    max-width: 4px;
}

.max-w-4px-i {
    max-width: 4px !important;
}

.max-h-4px {
    max-height: 4px;
}

.max-h-4px-i {
    max-height: 4px !important;
}

.min-h-4px {
    min-height: 4px;
}

.min-h-4px-i {
    min-height: 4px !important;
}

.min-w-4px {
    min-width: 4px;
}

.min-w-4px-i {
    min-width: 4px !important;
}

.h-4px {
    height: 4px;
}

.h-4px-i {
    height: 4px !important;
}

.w-5px {
    width: 5px;
}

.w-5px-i {
    width: 5px !important;
}

.max-w-5px {
    max-width: 5px;
}

.max-w-5px-i {
    max-width: 5px !important;
}

.max-h-5px {
    max-height: 5px;
}

.max-h-5px-i {
    max-height: 5px !important;
}

.min-h-5px {
    min-height: 5px;
}

.min-h-5px-i {
    min-height: 5px !important;
}

.min-w-5px {
    min-width: 5px;
}

.min-w-5px-i {
    min-width: 5px !important;
}

.h-5px {
    height: 5px;
}

.h-5px-i {
    height: 5px !important;
}

.w-6px {
    width: 6px;
}

.w-6px-i {
    width: 6px !important;
}

.max-w-6px {
    max-width: 6px;
}

.max-w-6px-i {
    max-width: 6px !important;
}

.max-h-6px {
    max-height: 6px;
}

.max-h-6px-i {
    max-height: 6px !important;
}

.min-h-6px {
    min-height: 6px;
}

.min-h-6px-i {
    min-height: 6px !important;
}

.min-w-6px {
    min-width: 6px;
}

.min-w-6px-i {
    min-width: 6px !important;
}

.h-6px {
    height: 6px;
}

.h-6px-i {
    height: 6px !important;
}

.w-7px {
    width: 7px;
}

.w-7px-i {
    width: 7px !important;
}

.max-w-7px {
    max-width: 7px;
}

.max-w-7px-i {
    max-width: 7px !important;
}

.max-h-7px {
    max-height: 7px;
}

.max-h-7px-i {
    max-height: 7px !important;
}

.min-h-7px {
    min-height: 7px;
}

.min-h-7px-i {
    min-height: 7px !important;
}

.min-w-7px {
    min-width: 7px;
}

.min-w-7px-i {
    min-width: 7px !important;
}

.h-7px {
    height: 7px;
}

.h-7px-i {
    height: 7px !important;
}

.w-8px {
    width: 8px;
}

.w-8px-i {
    width: 8px !important;
}

.max-w-8px {
    max-width: 8px;
}

.max-w-8px-i {
    max-width: 8px !important;
}

.max-h-8px {
    max-height: 8px;
}

.max-h-8px-i {
    max-height: 8px !important;
}

.min-h-8px {
    min-height: 8px;
}

.min-h-8px-i {
    min-height: 8px !important;
}

.min-w-8px {
    min-width: 8px;
}

.min-w-8px-i {
    min-width: 8px !important;
}

.h-8px {
    height: 8px;
}

.h-8px-i {
    height: 8px !important;
}

.w-9px {
    width: 9px;
}

.w-9px-i {
    width: 9px !important;
}

.max-w-9px {
    max-width: 9px;
}

.max-w-9px-i {
    max-width: 9px !important;
}

.max-h-9px {
    max-height: 9px;
}

.max-h-9px-i {
    max-height: 9px !important;
}

.min-h-9px {
    min-height: 9px;
}

.min-h-9px-i {
    min-height: 9px !important;
}

.min-w-9px {
    min-width: 9px;
}

.min-w-9px-i {
    min-width: 9px !important;
}

.h-9px {
    height: 9px;
}

.h-9px-i {
    height: 9px !important;
}

.w-10px {
    width: 10px;
}

.w-10px-i {
    width: 10px !important;
}

.max-w-10px {
    max-width: 10px;
}

.max-w-10px-i {
    max-width: 10px !important;
}

.max-h-10px {
    max-height: 10px;
}

.max-h-10px-i {
    max-height: 10px !important;
}

.min-h-10px {
    min-height: 10px;
}

.min-h-10px-i {
    min-height: 10px !important;
}

.min-w-10px {
    min-width: 10px;
}

.min-w-10px-i {
    min-width: 10px !important;
}

.h-10px {
    height: 10px;
}

.h-10px-i {
    height: 10px !important;
}

.w-11px {
    width: 11px;
}

.w-11px-i {
    width: 11px !important;
}

.max-w-11px {
    max-width: 11px;
}

.max-w-11px-i {
    max-width: 11px !important;
}

.max-h-11px {
    max-height: 11px;
}

.max-h-11px-i {
    max-height: 11px !important;
}

.min-h-11px {
    min-height: 11px;
}

.min-h-11px-i {
    min-height: 11px !important;
}

.min-w-11px {
    min-width: 11px;
}

.min-w-11px-i {
    min-width: 11px !important;
}

.h-11px {
    height: 11px;
}

.h-11px-i {
    height: 11px !important;
}

.w-12px {
    width: 12px;
}

.w-12px-i {
    width: 12px !important;
}

.max-w-12px {
    max-width: 12px;
}

.max-w-12px-i {
    max-width: 12px !important;
}

.max-h-12px {
    max-height: 12px;
}

.max-h-12px-i {
    max-height: 12px !important;
}

.min-h-12px {
    min-height: 12px;
}

.min-h-12px-i {
    min-height: 12px !important;
}

.min-w-12px {
    min-width: 12px;
}

.min-w-12px-i {
    min-width: 12px !important;
}

.h-12px {
    height: 12px;
}

.h-12px-i {
    height: 12px !important;
}

.w-13px {
    width: 13px;
}

.w-13px-i {
    width: 13px !important;
}

.max-w-13px {
    max-width: 13px;
}

.max-w-13px-i {
    max-width: 13px !important;
}

.max-h-13px {
    max-height: 13px;
}

.max-h-13px-i {
    max-height: 13px !important;
}

.min-h-13px {
    min-height: 13px;
}

.min-h-13px-i {
    min-height: 13px !important;
}

.min-w-13px {
    min-width: 13px;
}

.min-w-13px-i {
    min-width: 13px !important;
}

.h-13px {
    height: 13px;
}

.h-13px-i {
    height: 13px !important;
}

.w-14px {
    width: 14px;
}

.w-14px-i {
    width: 14px !important;
}

.max-w-14px {
    max-width: 14px;
}

.max-w-14px-i {
    max-width: 14px !important;
}

.max-h-14px {
    max-height: 14px;
}

.max-h-14px-i {
    max-height: 14px !important;
}

.min-h-14px {
    min-height: 14px;
}

.min-h-14px-i {
    min-height: 14px !important;
}

.min-w-14px {
    min-width: 14px;
}

.min-w-14px-i {
    min-width: 14px !important;
}

.h-14px {
    height: 14px;
}

.h-14px-i {
    height: 14px !important;
}

.w-15px {
    width: 15px;
}

.w-15px-i {
    width: 15px !important;
}

.max-w-15px {
    max-width: 15px;
}

.max-w-15px-i {
    max-width: 15px !important;
}

.max-h-15px {
    max-height: 15px;
}

.max-h-15px-i {
    max-height: 15px !important;
}

.min-h-15px {
    min-height: 15px;
}

.min-h-15px-i {
    min-height: 15px !important;
}

.min-w-15px {
    min-width: 15px;
}

.min-w-15px-i {
    min-width: 15px !important;
}

.h-15px {
    height: 15px;
}

.h-15px-i {
    height: 15px !important;
}

.w-16px {
    width: 16px;
}

.w-16px-i {
    width: 16px !important;
}

.max-w-16px {
    max-width: 16px;
}

.max-w-16px-i {
    max-width: 16px !important;
}

.max-h-16px {
    max-height: 16px;
}

.max-h-16px-i {
    max-height: 16px !important;
}

.min-h-16px {
    min-height: 16px;
}

.min-h-16px-i {
    min-height: 16px !important;
}

.min-w-16px {
    min-width: 16px;
}

.min-w-16px-i {
    min-width: 16px !important;
}

.h-16px {
    height: 16px;
}

.h-16px-i {
    height: 16px !important;
}

.w-17px {
    width: 17px;
}

.w-17px-i {
    width: 17px !important;
}

.max-w-17px {
    max-width: 17px;
}

.max-w-17px-i {
    max-width: 17px !important;
}

.max-h-17px {
    max-height: 17px;
}

.max-h-17px-i {
    max-height: 17px !important;
}

.min-h-17px {
    min-height: 17px;
}

.min-h-17px-i {
    min-height: 17px !important;
}

.min-w-17px {
    min-width: 17px;
}

.min-w-17px-i {
    min-width: 17px !important;
}

.h-17px {
    height: 17px;
}

.h-17px-i {
    height: 17px !important;
}

.w-18px {
    width: 18px;
}

.w-18px-i {
    width: 18px !important;
}

.max-w-18px {
    max-width: 18px;
}

.max-w-18px-i {
    max-width: 18px !important;
}

.max-h-18px {
    max-height: 18px;
}

.max-h-18px-i {
    max-height: 18px !important;
}

.min-h-18px {
    min-height: 18px;
}

.min-h-18px-i {
    min-height: 18px !important;
}

.min-w-18px {
    min-width: 18px;
}

.min-w-18px-i {
    min-width: 18px !important;
}

.h-18px {
    height: 18px;
}

.h-18px-i {
    height: 18px !important;
}

.w-19px {
    width: 19px;
}

.w-19px-i {
    width: 19px !important;
}

.max-w-19px {
    max-width: 19px;
}

.max-w-19px-i {
    max-width: 19px !important;
}

.max-h-19px {
    max-height: 19px;
}

.max-h-19px-i {
    max-height: 19px !important;
}

.min-h-19px {
    min-height: 19px;
}

.min-h-19px-i {
    min-height: 19px !important;
}

.min-w-19px {
    min-width: 19px;
}

.min-w-19px-i {
    min-width: 19px !important;
}

.h-19px {
    height: 19px;
}

.h-19px-i {
    height: 19px !important;
}

.w-20px {
    width: 20px;
}

.w-20px-i {
    width: 20px !important;
}

.max-w-20px {
    max-width: 20px;
}

.max-w-20px-i {
    max-width: 20px !important;
}

.max-h-20px {
    max-height: 20px;
}

.max-h-20px-i {
    max-height: 20px !important;
}

.min-h-20px {
    min-height: 20px;
}

.min-h-20px-i {
    min-height: 20px !important;
}

.min-w-20px {
    min-width: 20px;
}

.min-w-20px-i {
    min-width: 20px !important;
}

.h-20px {
    height: 20px;
}

.h-20px-i {
    height: 20px !important;
}

.w-21px {
    width: 21px;
}

.w-21px-i {
    width: 21px !important;
}

.max-w-21px {
    max-width: 21px;
}

.max-w-21px-i {
    max-width: 21px !important;
}

.max-h-21px {
    max-height: 21px;
}

.max-h-21px-i {
    max-height: 21px !important;
}

.min-h-21px {
    min-height: 21px;
}

.min-h-21px-i {
    min-height: 21px !important;
}

.min-w-21px {
    min-width: 21px;
}

.min-w-21px-i {
    min-width: 21px !important;
}

.h-21px {
    height: 21px;
}

.h-21px-i {
    height: 21px !important;
}

.w-22px {
    width: 22px;
}

.w-22px-i {
    width: 22px !important;
}

.max-w-22px {
    max-width: 22px;
}

.max-w-22px-i {
    max-width: 22px !important;
}

.max-h-22px {
    max-height: 22px;
}

.max-h-22px-i {
    max-height: 22px !important;
}

.min-h-22px {
    min-height: 22px;
}

.min-h-22px-i {
    min-height: 22px !important;
}

.min-w-22px {
    min-width: 22px;
}

.min-w-22px-i {
    min-width: 22px !important;
}

.h-22px {
    height: 22px;
}

.h-22px-i {
    height: 22px !important;
}

.w-23px {
    width: 23px;
}

.w-23px-i {
    width: 23px !important;
}

.max-w-23px {
    max-width: 23px;
}

.max-w-23px-i {
    max-width: 23px !important;
}

.max-h-23px {
    max-height: 23px;
}

.max-h-23px-i {
    max-height: 23px !important;
}

.min-h-23px {
    min-height: 23px;
}

.min-h-23px-i {
    min-height: 23px !important;
}

.min-w-23px {
    min-width: 23px;
}

.min-w-23px-i {
    min-width: 23px !important;
}

.h-23px {
    height: 23px;
}

.h-23px-i {
    height: 23px !important;
}

.w-24px {
    width: 24px;
}

.w-24px-i {
    width: 24px !important;
}

.max-w-24px {
    max-width: 24px;
}

.max-w-24px-i {
    max-width: 24px !important;
}

.max-h-24px {
    max-height: 24px;
}

.max-h-24px-i {
    max-height: 24px !important;
}

.min-h-24px {
    min-height: 24px;
}

.min-h-24px-i {
    min-height: 24px !important;
}

.min-w-24px {
    min-width: 24px;
}

.min-w-24px-i {
    min-width: 24px !important;
}

.h-24px {
    height: 24px;
}

.h-24px-i {
    height: 24px !important;
}

.w-25px {
    width: 25px;
}

.w-25px-i {
    width: 25px !important;
}

.max-w-25px {
    max-width: 25px;
}

.max-w-25px-i {
    max-width: 25px !important;
}

.max-h-25px {
    max-height: 25px;
}

.max-h-25px-i {
    max-height: 25px !important;
}

.min-h-25px {
    min-height: 25px;
}

.min-h-25px-i {
    min-height: 25px !important;
}

.min-w-25px {
    min-width: 25px;
}

.min-w-25px-i {
    min-width: 25px !important;
}

.h-25px {
    height: 25px;
}

.h-25px-i {
    height: 25px !important;
}

.w-26px {
    width: 26px;
}

.w-26px-i {
    width: 26px !important;
}

.max-w-26px {
    max-width: 26px;
}

.max-w-26px-i {
    max-width: 26px !important;
}

.max-h-26px {
    max-height: 26px;
}

.max-h-26px-i {
    max-height: 26px !important;
}

.min-h-26px {
    min-height: 26px;
}

.min-h-26px-i {
    min-height: 26px !important;
}

.min-w-26px {
    min-width: 26px;
}

.min-w-26px-i {
    min-width: 26px !important;
}

.h-26px {
    height: 26px;
}

.h-26px-i {
    height: 26px !important;
}

.w-27px {
    width: 27px;
}

.w-27px-i {
    width: 27px !important;
}

.max-w-27px {
    max-width: 27px;
}

.max-w-27px-i {
    max-width: 27px !important;
}

.max-h-27px {
    max-height: 27px;
}

.max-h-27px-i {
    max-height: 27px !important;
}

.min-h-27px {
    min-height: 27px;
}

.min-h-27px-i {
    min-height: 27px !important;
}

.min-w-27px {
    min-width: 27px;
}

.min-w-27px-i {
    min-width: 27px !important;
}

.h-27px {
    height: 27px;
}

.h-27px-i {
    height: 27px !important;
}

.w-28px {
    width: 28px;
}

.w-28px-i {
    width: 28px !important;
}

.max-w-28px {
    max-width: 28px;
}

.max-w-28px-i {
    max-width: 28px !important;
}

.max-h-28px {
    max-height: 28px;
}

.max-h-28px-i {
    max-height: 28px !important;
}

.min-h-28px {
    min-height: 28px;
}

.min-h-28px-i {
    min-height: 28px !important;
}

.min-w-28px {
    min-width: 28px;
}

.min-w-28px-i {
    min-width: 28px !important;
}

.h-28px {
    height: 28px;
}

.h-28px-i {
    height: 28px !important;
}

.w-29px {
    width: 29px;
}

.w-29px-i {
    width: 29px !important;
}

.max-w-29px {
    max-width: 29px;
}

.max-w-29px-i {
    max-width: 29px !important;
}

.max-h-29px {
    max-height: 29px;
}

.max-h-29px-i {
    max-height: 29px !important;
}

.min-h-29px {
    min-height: 29px;
}

.min-h-29px-i {
    min-height: 29px !important;
}

.min-w-29px {
    min-width: 29px;
}

.min-w-29px-i {
    min-width: 29px !important;
}

.h-29px {
    height: 29px;
}

.h-29px-i {
    height: 29px !important;
}

.w-30px {
    width: 30px;
}

.w-30px-i {
    width: 30px !important;
}

.max-w-30px {
    max-width: 30px;
}

.max-w-30px-i {
    max-width: 30px !important;
}

.max-h-30px {
    max-height: 30px;
}

.max-h-30px-i {
    max-height: 30px !important;
}

.min-h-30px {
    min-height: 30px;
}

.min-h-30px-i {
    min-height: 30px !important;
}

.min-w-30px {
    min-width: 30px;
}

.min-w-30px-i {
    min-width: 30px !important;
}

.h-30px {
    height: 30px;
}

.h-30px-i {
    height: 30px !important;
}

.w-31px {
    width: 31px;
}

.w-31px-i {
    width: 31px !important;
}

.max-w-31px {
    max-width: 31px;
}

.max-w-31px-i {
    max-width: 31px !important;
}

.max-h-31px {
    max-height: 31px;
}

.max-h-31px-i {
    max-height: 31px !important;
}

.min-h-31px {
    min-height: 31px;
}

.min-h-31px-i {
    min-height: 31px !important;
}

.min-w-31px {
    min-width: 31px;
}

.min-w-31px-i {
    min-width: 31px !important;
}

.h-31px {
    height: 31px;
}

.h-31px-i {
    height: 31px !important;
}

.w-32px {
    width: 32px;
}

.w-32px-i {
    width: 32px !important;
}

.max-w-32px {
    max-width: 32px;
}

.max-w-32px-i {
    max-width: 32px !important;
}

.max-h-32px {
    max-height: 32px;
}

.max-h-32px-i {
    max-height: 32px !important;
}

.min-h-32px {
    min-height: 32px;
}

.min-h-32px-i {
    min-height: 32px !important;
}

.min-w-32px {
    min-width: 32px;
}

.min-w-32px-i {
    min-width: 32px !important;
}

.h-32px {
    height: 32px;
}

.h-32px-i {
    height: 32px !important;
}

.w-33px {
    width: 33px;
}

.w-33px-i {
    width: 33px !important;
}

.max-w-33px {
    max-width: 33px;
}

.max-w-33px-i {
    max-width: 33px !important;
}

.max-h-33px {
    max-height: 33px;
}

.max-h-33px-i {
    max-height: 33px !important;
}

.min-h-33px {
    min-height: 33px;
}

.min-h-33px-i {
    min-height: 33px !important;
}

.min-w-33px {
    min-width: 33px;
}

.min-w-33px-i {
    min-width: 33px !important;
}

.h-33px {
    height: 33px;
}

.h-33px-i {
    height: 33px !important;
}

.w-34px {
    width: 34px;
}

.w-34px-i {
    width: 34px !important;
}

.max-w-34px {
    max-width: 34px;
}

.max-w-34px-i {
    max-width: 34px !important;
}

.max-h-34px {
    max-height: 34px;
}

.max-h-34px-i {
    max-height: 34px !important;
}

.min-h-34px {
    min-height: 34px;
}

.min-h-34px-i {
    min-height: 34px !important;
}

.min-w-34px {
    min-width: 34px;
}

.min-w-34px-i {
    min-width: 34px !important;
}

.h-34px {
    height: 34px;
}

.h-34px-i {
    height: 34px !important;
}

.w-35px {
    width: 35px;
}

.w-35px-i {
    width: 35px !important;
}

.max-w-35px {
    max-width: 35px;
}

.max-w-35px-i {
    max-width: 35px !important;
}

.max-h-35px {
    max-height: 35px;
}

.max-h-35px-i {
    max-height: 35px !important;
}

.min-h-35px {
    min-height: 35px;
}

.min-h-35px-i {
    min-height: 35px !important;
}

.min-w-35px {
    min-width: 35px;
}

.min-w-35px-i {
    min-width: 35px !important;
}

.h-35px {
    height: 35px;
}

.h-35px-i {
    height: 35px !important;
}

.w-36px {
    width: 36px;
}

.w-36px-i {
    width: 36px !important;
}

.max-w-36px {
    max-width: 36px;
}

.max-w-36px-i {
    max-width: 36px !important;
}

.max-h-36px {
    max-height: 36px;
}

.max-h-36px-i {
    max-height: 36px !important;
}

.min-h-36px {
    min-height: 36px;
}

.min-h-36px-i {
    min-height: 36px !important;
}

.min-w-36px {
    min-width: 36px;
}

.min-w-36px-i {
    min-width: 36px !important;
}

.h-36px {
    height: 36px;
}

.h-36px-i {
    height: 36px !important;
}

.w-37px {
    width: 37px;
}

.w-37px-i {
    width: 37px !important;
}

.max-w-37px {
    max-width: 37px;
}

.max-w-37px-i {
    max-width: 37px !important;
}

.max-h-37px {
    max-height: 37px;
}

.max-h-37px-i {
    max-height: 37px !important;
}

.min-h-37px {
    min-height: 37px;
}

.min-h-37px-i {
    min-height: 37px !important;
}

.min-w-37px {
    min-width: 37px;
}

.min-w-37px-i {
    min-width: 37px !important;
}

.h-37px {
    height: 37px;
}

.h-37px-i {
    height: 37px !important;
}

.w-38px {
    width: 38px;
}

.w-38px-i {
    width: 38px !important;
}

.max-w-38px {
    max-width: 38px;
}

.max-w-38px-i {
    max-width: 38px !important;
}

.max-h-38px {
    max-height: 38px;
}

.max-h-38px-i {
    max-height: 38px !important;
}

.min-h-38px {
    min-height: 38px;
}

.min-h-38px-i {
    min-height: 38px !important;
}

.min-w-38px {
    min-width: 38px;
}

.min-w-38px-i {
    min-width: 38px !important;
}

.h-38px {
    height: 38px;
}

.h-38px-i {
    height: 38px !important;
}

.w-39px {
    width: 39px;
}

.w-39px-i {
    width: 39px !important;
}

.max-w-39px {
    max-width: 39px;
}

.max-w-39px-i {
    max-width: 39px !important;
}

.max-h-39px {
    max-height: 39px;
}

.max-h-39px-i {
    max-height: 39px !important;
}

.min-h-39px {
    min-height: 39px;
}

.min-h-39px-i {
    min-height: 39px !important;
}

.min-w-39px {
    min-width: 39px;
}

.min-w-39px-i {
    min-width: 39px !important;
}

.h-39px {
    height: 39px;
}

.h-39px-i {
    height: 39px !important;
}

.w-40px {
    width: 40px;
}

.w-40px-i {
    width: 40px !important;
}

.max-w-40px {
    max-width: 40px;
}

.max-w-40px-i {
    max-width: 40px !important;
}

.max-h-40px {
    max-height: 40px;
}

.max-h-40px-i {
    max-height: 40px !important;
}

.min-h-40px {
    min-height: 40px;
}

.min-h-40px-i {
    min-height: 40px !important;
}

.min-w-40px {
    min-width: 40px;
}

.min-w-40px-i {
    min-width: 40px !important;
}

.h-40px {
    height: 40px;
}

.h-40px-i {
    height: 40px !important;
}

.w-41px {
    width: 41px;
}

.w-41px-i {
    width: 41px !important;
}

.max-w-41px {
    max-width: 41px;
}

.max-w-41px-i {
    max-width: 41px !important;
}

.max-h-41px {
    max-height: 41px;
}

.max-h-41px-i {
    max-height: 41px !important;
}

.min-h-41px {
    min-height: 41px;
}

.min-h-41px-i {
    min-height: 41px !important;
}

.min-w-41px {
    min-width: 41px;
}

.min-w-41px-i {
    min-width: 41px !important;
}

.h-41px {
    height: 41px;
}

.h-41px-i {
    height: 41px !important;
}

.w-42px {
    width: 42px;
}

.w-42px-i {
    width: 42px !important;
}

.max-w-42px {
    max-width: 42px;
}

.max-w-42px-i {
    max-width: 42px !important;
}

.max-h-42px {
    max-height: 42px;
}

.max-h-42px-i {
    max-height: 42px !important;
}

.min-h-42px {
    min-height: 42px;
}

.min-h-42px-i {
    min-height: 42px !important;
}

.min-w-42px {
    min-width: 42px;
}

.min-w-42px-i {
    min-width: 42px !important;
}

.h-42px {
    height: 42px;
}

.h-42px-i {
    height: 42px !important;
}

.w-43px {
    width: 43px;
}

.w-43px-i {
    width: 43px !important;
}

.max-w-43px {
    max-width: 43px;
}

.max-w-43px-i {
    max-width: 43px !important;
}

.max-h-43px {
    max-height: 43px;
}

.max-h-43px-i {
    max-height: 43px !important;
}

.min-h-43px {
    min-height: 43px;
}

.min-h-43px-i {
    min-height: 43px !important;
}

.min-w-43px {
    min-width: 43px;
}

.min-w-43px-i {
    min-width: 43px !important;
}

.h-43px {
    height: 43px;
}

.h-43px-i {
    height: 43px !important;
}

.w-44px {
    width: 44px;
}

.w-44px-i {
    width: 44px !important;
}

.max-w-44px {
    max-width: 44px;
}

.max-w-44px-i {
    max-width: 44px !important;
}

.max-h-44px {
    max-height: 44px;
}

.max-h-44px-i {
    max-height: 44px !important;
}

.min-h-44px {
    min-height: 44px;
}

.min-h-44px-i {
    min-height: 44px !important;
}

.min-w-44px {
    min-width: 44px;
}

.min-w-44px-i {
    min-width: 44px !important;
}

.h-44px {
    height: 44px;
}

.h-44px-i {
    height: 44px !important;
}

.w-45px {
    width: 45px;
}

.w-45px-i {
    width: 45px !important;
}

.max-w-45px {
    max-width: 45px;
}

.max-w-45px-i {
    max-width: 45px !important;
}

.max-h-45px {
    max-height: 45px;
}

.max-h-45px-i {
    max-height: 45px !important;
}

.min-h-45px {
    min-height: 45px;
}

.min-h-45px-i {
    min-height: 45px !important;
}

.min-w-45px {
    min-width: 45px;
}

.min-w-45px-i {
    min-width: 45px !important;
}

.h-45px {
    height: 45px;
}

.h-45px-i {
    height: 45px !important;
}

.w-46px {
    width: 46px;
}

.w-46px-i {
    width: 46px !important;
}

.max-w-46px {
    max-width: 46px;
}

.max-w-46px-i {
    max-width: 46px !important;
}

.max-h-46px {
    max-height: 46px;
}

.max-h-46px-i {
    max-height: 46px !important;
}

.min-h-46px {
    min-height: 46px;
}

.min-h-46px-i {
    min-height: 46px !important;
}

.min-w-46px {
    min-width: 46px;
}

.min-w-46px-i {
    min-width: 46px !important;
}

.h-46px {
    height: 46px;
}

.h-46px-i {
    height: 46px !important;
}

.w-47px {
    width: 47px;
}

.w-47px-i {
    width: 47px !important;
}

.max-w-47px {
    max-width: 47px;
}

.max-w-47px-i {
    max-width: 47px !important;
}

.max-h-47px {
    max-height: 47px;
}

.max-h-47px-i {
    max-height: 47px !important;
}

.min-h-47px {
    min-height: 47px;
}

.min-h-47px-i {
    min-height: 47px !important;
}

.min-w-47px {
    min-width: 47px;
}

.min-w-47px-i {
    min-width: 47px !important;
}

.h-47px {
    height: 47px;
}

.h-47px-i {
    height: 47px !important;
}

.w-48px {
    width: 48px;
}

.w-48px-i {
    width: 48px !important;
}

.max-w-48px {
    max-width: 48px;
}

.max-w-48px-i {
    max-width: 48px !important;
}

.max-h-48px {
    max-height: 48px;
}

.max-h-48px-i {
    max-height: 48px !important;
}

.min-h-48px {
    min-height: 48px;
}

.min-h-48px-i {
    min-height: 48px !important;
}

.min-w-48px {
    min-width: 48px;
}

.min-w-48px-i {
    min-width: 48px !important;
}

.h-48px {
    height: 48px;
}

.h-48px-i {
    height: 48px !important;
}

.w-49px {
    width: 49px;
}

.w-49px-i {
    width: 49px !important;
}

.max-w-49px {
    max-width: 49px;
}

.max-w-49px-i {
    max-width: 49px !important;
}

.max-h-49px {
    max-height: 49px;
}

.max-h-49px-i {
    max-height: 49px !important;
}

.min-h-49px {
    min-height: 49px;
}

.min-h-49px-i {
    min-height: 49px !important;
}

.min-w-49px {
    min-width: 49px;
}

.min-w-49px-i {
    min-width: 49px !important;
}

.h-49px {
    height: 49px;
}

.h-49px-i {
    height: 49px !important;
}

.w-50px {
    width: 50px;
}

.w-50px-i {
    width: 50px !important;
}

.max-w-50px {
    max-width: 50px;
}

.max-w-50px-i {
    max-width: 50px !important;
}

.max-h-50px {
    max-height: 50px;
}

.max-h-50px-i {
    max-height: 50px !important;
}

.min-h-50px {
    min-height: 50px;
}

.min-h-50px-i {
    min-height: 50px !important;
}

.min-w-50px {
    min-width: 50px;
}

.min-w-50px-i {
    min-width: 50px !important;
}

.h-50px {
    height: 50px;
}

.h-50px-i {
    height: 50px !important;
}

.w-51px {
    width: 51px;
}

.w-51px-i {
    width: 51px !important;
}

.max-w-51px {
    max-width: 51px;
}

.max-w-51px-i {
    max-width: 51px !important;
}

.max-h-51px {
    max-height: 51px;
}

.max-h-51px-i {
    max-height: 51px !important;
}

.min-h-51px {
    min-height: 51px;
}

.min-h-51px-i {
    min-height: 51px !important;
}

.min-w-51px {
    min-width: 51px;
}

.min-w-51px-i {
    min-width: 51px !important;
}

.h-51px {
    height: 51px;
}

.h-51px-i {
    height: 51px !important;
}

.w-52px {
    width: 52px;
}

.w-52px-i {
    width: 52px !important;
}

.max-w-52px {
    max-width: 52px;
}

.max-w-52px-i {
    max-width: 52px !important;
}

.max-h-52px {
    max-height: 52px;
}

.max-h-52px-i {
    max-height: 52px !important;
}

.min-h-52px {
    min-height: 52px;
}

.min-h-52px-i {
    min-height: 52px !important;
}

.min-w-52px {
    min-width: 52px;
}

.min-w-52px-i {
    min-width: 52px !important;
}

.h-52px {
    height: 52px;
}

.h-52px-i {
    height: 52px !important;
}

.w-53px {
    width: 53px;
}

.w-53px-i {
    width: 53px !important;
}

.max-w-53px {
    max-width: 53px;
}

.max-w-53px-i {
    max-width: 53px !important;
}

.max-h-53px {
    max-height: 53px;
}

.max-h-53px-i {
    max-height: 53px !important;
}

.min-h-53px {
    min-height: 53px;
}

.min-h-53px-i {
    min-height: 53px !important;
}

.min-w-53px {
    min-width: 53px;
}

.min-w-53px-i {
    min-width: 53px !important;
}

.h-53px {
    height: 53px;
}

.h-53px-i {
    height: 53px !important;
}

.w-54px {
    width: 54px;
}

.w-54px-i {
    width: 54px !important;
}

.max-w-54px {
    max-width: 54px;
}

.max-w-54px-i {
    max-width: 54px !important;
}

.max-h-54px {
    max-height: 54px;
}

.max-h-54px-i {
    max-height: 54px !important;
}

.min-h-54px {
    min-height: 54px;
}

.min-h-54px-i {
    min-height: 54px !important;
}

.min-w-54px {
    min-width: 54px;
}

.min-w-54px-i {
    min-width: 54px !important;
}

.h-54px {
    height: 54px;
}

.h-54px-i {
    height: 54px !important;
}

.w-55px {
    width: 55px;
}

.w-55px-i {
    width: 55px !important;
}

.max-w-55px {
    max-width: 55px;
}

.max-w-55px-i {
    max-width: 55px !important;
}

.max-h-55px {
    max-height: 55px;
}

.max-h-55px-i {
    max-height: 55px !important;
}

.min-h-55px {
    min-height: 55px;
}

.min-h-55px-i {
    min-height: 55px !important;
}

.min-w-55px {
    min-width: 55px;
}

.min-w-55px-i {
    min-width: 55px !important;
}

.h-55px {
    height: 55px;
}

.h-55px-i {
    height: 55px !important;
}

.w-56px {
    width: 56px;
}

.w-56px-i {
    width: 56px !important;
}

.max-w-56px {
    max-width: 56px;
}

.max-w-56px-i {
    max-width: 56px !important;
}

.max-h-56px {
    max-height: 56px;
}

.max-h-56px-i {
    max-height: 56px !important;
}

.min-h-56px {
    min-height: 56px;
}

.min-h-56px-i {
    min-height: 56px !important;
}

.min-w-56px {
    min-width: 56px;
}

.min-w-56px-i {
    min-width: 56px !important;
}

.h-56px {
    height: 56px;
}

.h-56px-i {
    height: 56px !important;
}

.w-57px {
    width: 57px;
}

.w-57px-i {
    width: 57px !important;
}

.max-w-57px {
    max-width: 57px;
}

.max-w-57px-i {
    max-width: 57px !important;
}

.max-h-57px {
    max-height: 57px;
}

.max-h-57px-i {
    max-height: 57px !important;
}

.min-h-57px {
    min-height: 57px;
}

.min-h-57px-i {
    min-height: 57px !important;
}

.min-w-57px {
    min-width: 57px;
}

.min-w-57px-i {
    min-width: 57px !important;
}

.h-57px {
    height: 57px;
}

.h-57px-i {
    height: 57px !important;
}

.w-58px {
    width: 58px;
}

.w-58px-i {
    width: 58px !important;
}

.max-w-58px {
    max-width: 58px;
}

.max-w-58px-i {
    max-width: 58px !important;
}

.max-h-58px {
    max-height: 58px;
}

.max-h-58px-i {
    max-height: 58px !important;
}

.min-h-58px {
    min-height: 58px;
}

.min-h-58px-i {
    min-height: 58px !important;
}

.min-w-58px {
    min-width: 58px;
}

.min-w-58px-i {
    min-width: 58px !important;
}

.h-58px {
    height: 58px;
}

.h-58px-i {
    height: 58px !important;
}

.w-59px {
    width: 59px;
}

.w-59px-i {
    width: 59px !important;
}

.max-w-59px {
    max-width: 59px;
}

.max-w-59px-i {
    max-width: 59px !important;
}

.max-h-59px {
    max-height: 59px;
}

.max-h-59px-i {
    max-height: 59px !important;
}

.min-h-59px {
    min-height: 59px;
}

.min-h-59px-i {
    min-height: 59px !important;
}

.min-w-59px {
    min-width: 59px;
}

.min-w-59px-i {
    min-width: 59px !important;
}

.h-59px {
    height: 59px;
}

.h-59px-i {
    height: 59px !important;
}

.w-60px {
    width: 60px;
}

.w-60px-i {
    width: 60px !important;
}

.max-w-60px {
    max-width: 60px;
}

.max-w-60px-i {
    max-width: 60px !important;
}

.max-h-60px {
    max-height: 60px;
}

.max-h-60px-i {
    max-height: 60px !important;
}

.min-h-60px {
    min-height: 60px;
}

.min-h-60px-i {
    min-height: 60px !important;
}

.min-w-60px {
    min-width: 60px;
}

.min-w-60px-i {
    min-width: 60px !important;
}

.h-60px {
    height: 60px;
}

.h-60px-i {
    height: 60px !important;
}

.w-61px {
    width: 61px;
}

.w-61px-i {
    width: 61px !important;
}

.max-w-61px {
    max-width: 61px;
}

.max-w-61px-i {
    max-width: 61px !important;
}

.max-h-61px {
    max-height: 61px;
}

.max-h-61px-i {
    max-height: 61px !important;
}

.min-h-61px {
    min-height: 61px;
}

.min-h-61px-i {
    min-height: 61px !important;
}

.min-w-61px {
    min-width: 61px;
}

.min-w-61px-i {
    min-width: 61px !important;
}

.h-61px {
    height: 61px;
}

.h-61px-i {
    height: 61px !important;
}

.w-62px {
    width: 62px;
}

.w-62px-i {
    width: 62px !important;
}

.max-w-62px {
    max-width: 62px;
}

.max-w-62px-i {
    max-width: 62px !important;
}

.max-h-62px {
    max-height: 62px;
}

.max-h-62px-i {
    max-height: 62px !important;
}

.min-h-62px {
    min-height: 62px;
}

.min-h-62px-i {
    min-height: 62px !important;
}

.min-w-62px {
    min-width: 62px;
}

.min-w-62px-i {
    min-width: 62px !important;
}

.h-62px {
    height: 62px;
}

.h-62px-i {
    height: 62px !important;
}

.w-63px {
    width: 63px;
}

.w-63px-i {
    width: 63px !important;
}

.max-w-63px {
    max-width: 63px;
}

.max-w-63px-i {
    max-width: 63px !important;
}

.max-h-63px {
    max-height: 63px;
}

.max-h-63px-i {
    max-height: 63px !important;
}

.min-h-63px {
    min-height: 63px;
}

.min-h-63px-i {
    min-height: 63px !important;
}

.min-w-63px {
    min-width: 63px;
}

.min-w-63px-i {
    min-width: 63px !important;
}

.h-63px {
    height: 63px;
}

.h-63px-i {
    height: 63px !important;
}

.w-64px {
    width: 64px;
}

.w-64px-i {
    width: 64px !important;
}

.max-w-64px {
    max-width: 64px;
}

.max-w-64px-i {
    max-width: 64px !important;
}

.max-h-64px {
    max-height: 64px;
}

.max-h-64px-i {
    max-height: 64px !important;
}

.min-h-64px {
    min-height: 64px;
}

.min-h-64px-i {
    min-height: 64px !important;
}

.min-w-64px {
    min-width: 64px;
}

.min-w-64px-i {
    min-width: 64px !important;
}

.h-64px {
    height: 64px;
}

.h-64px-i {
    height: 64px !important;
}

.w-65px {
    width: 65px;
}

.w-65px-i {
    width: 65px !important;
}

.max-w-65px {
    max-width: 65px;
}

.max-w-65px-i {
    max-width: 65px !important;
}

.max-h-65px {
    max-height: 65px;
}

.max-h-65px-i {
    max-height: 65px !important;
}

.min-h-65px {
    min-height: 65px;
}

.min-h-65px-i {
    min-height: 65px !important;
}

.min-w-65px {
    min-width: 65px;
}

.min-w-65px-i {
    min-width: 65px !important;
}

.h-65px {
    height: 65px;
}

.h-65px-i {
    height: 65px !important;
}

.w-66px {
    width: 66px;
}

.w-66px-i {
    width: 66px !important;
}

.max-w-66px {
    max-width: 66px;
}

.max-w-66px-i {
    max-width: 66px !important;
}

.max-h-66px {
    max-height: 66px;
}

.max-h-66px-i {
    max-height: 66px !important;
}

.min-h-66px {
    min-height: 66px;
}

.min-h-66px-i {
    min-height: 66px !important;
}

.min-w-66px {
    min-width: 66px;
}

.min-w-66px-i {
    min-width: 66px !important;
}

.h-66px {
    height: 66px;
}

.h-66px-i {
    height: 66px !important;
}

.w-67px {
    width: 67px;
}

.w-67px-i {
    width: 67px !important;
}

.max-w-67px {
    max-width: 67px;
}

.max-w-67px-i {
    max-width: 67px !important;
}

.max-h-67px {
    max-height: 67px;
}

.max-h-67px-i {
    max-height: 67px !important;
}

.min-h-67px {
    min-height: 67px;
}

.min-h-67px-i {
    min-height: 67px !important;
}

.min-w-67px {
    min-width: 67px;
}

.min-w-67px-i {
    min-width: 67px !important;
}

.h-67px {
    height: 67px;
}

.h-67px-i {
    height: 67px !important;
}

.w-68px {
    width: 68px;
}

.w-68px-i {
    width: 68px !important;
}

.max-w-68px {
    max-width: 68px;
}

.max-w-68px-i {
    max-width: 68px !important;
}

.max-h-68px {
    max-height: 68px;
}

.max-h-68px-i {
    max-height: 68px !important;
}

.min-h-68px {
    min-height: 68px;
}

.min-h-68px-i {
    min-height: 68px !important;
}

.min-w-68px {
    min-width: 68px;
}

.min-w-68px-i {
    min-width: 68px !important;
}

.h-68px {
    height: 68px;
}

.h-68px-i {
    height: 68px !important;
}

.w-69px {
    width: 69px;
}

.w-69px-i {
    width: 69px !important;
}

.max-w-69px {
    max-width: 69px;
}

.max-w-69px-i {
    max-width: 69px !important;
}

.max-h-69px {
    max-height: 69px;
}

.max-h-69px-i {
    max-height: 69px !important;
}

.min-h-69px {
    min-height: 69px;
}

.min-h-69px-i {
    min-height: 69px !important;
}

.min-w-69px {
    min-width: 69px;
}

.min-w-69px-i {
    min-width: 69px !important;
}

.h-69px {
    height: 69px;
}

.h-69px-i {
    height: 69px !important;
}

.w-70px {
    width: 70px;
}

.w-70px-i {
    width: 70px !important;
}

.max-w-70px {
    max-width: 70px;
}

.max-w-70px-i {
    max-width: 70px !important;
}

.max-h-70px {
    max-height: 70px;
}

.max-h-70px-i {
    max-height: 70px !important;
}

.min-h-70px {
    min-height: 70px;
}

.min-h-70px-i {
    min-height: 70px !important;
}

.min-w-70px {
    min-width: 70px;
}

.min-w-70px-i {
    min-width: 70px !important;
}

.h-70px {
    height: 70px;
}

.h-70px-i {
    height: 70px !important;
}

.w-71px {
    width: 71px;
}

.w-71px-i {
    width: 71px !important;
}

.max-w-71px {
    max-width: 71px;
}

.max-w-71px-i {
    max-width: 71px !important;
}

.max-h-71px {
    max-height: 71px;
}

.max-h-71px-i {
    max-height: 71px !important;
}

.min-h-71px {
    min-height: 71px;
}

.min-h-71px-i {
    min-height: 71px !important;
}

.min-w-71px {
    min-width: 71px;
}

.min-w-71px-i {
    min-width: 71px !important;
}

.h-71px {
    height: 71px;
}

.h-71px-i {
    height: 71px !important;
}

.w-72px {
    width: 72px;
}

.w-72px-i {
    width: 72px !important;
}

.max-w-72px {
    max-width: 72px;
}

.max-w-72px-i {
    max-width: 72px !important;
}

.max-h-72px {
    max-height: 72px;
}

.max-h-72px-i {
    max-height: 72px !important;
}

.min-h-72px {
    min-height: 72px;
}

.min-h-72px-i {
    min-height: 72px !important;
}

.min-w-72px {
    min-width: 72px;
}

.min-w-72px-i {
    min-width: 72px !important;
}

.h-72px {
    height: 72px;
}

.h-72px-i {
    height: 72px !important;
}

.w-73px {
    width: 73px;
}

.w-73px-i {
    width: 73px !important;
}

.max-w-73px {
    max-width: 73px;
}

.max-w-73px-i {
    max-width: 73px !important;
}

.max-h-73px {
    max-height: 73px;
}

.max-h-73px-i {
    max-height: 73px !important;
}

.min-h-73px {
    min-height: 73px;
}

.min-h-73px-i {
    min-height: 73px !important;
}

.min-w-73px {
    min-width: 73px;
}

.min-w-73px-i {
    min-width: 73px !important;
}

.h-73px {
    height: 73px;
}

.h-73px-i {
    height: 73px !important;
}

.w-74px {
    width: 74px;
}

.w-74px-i {
    width: 74px !important;
}

.max-w-74px {
    max-width: 74px;
}

.max-w-74px-i {
    max-width: 74px !important;
}

.max-h-74px {
    max-height: 74px;
}

.max-h-74px-i {
    max-height: 74px !important;
}

.min-h-74px {
    min-height: 74px;
}

.min-h-74px-i {
    min-height: 74px !important;
}

.min-w-74px {
    min-width: 74px;
}

.min-w-74px-i {
    min-width: 74px !important;
}

.h-74px {
    height: 74px;
}

.h-74px-i {
    height: 74px !important;
}

.w-75px {
    width: 75px;
}

.w-75px-i {
    width: 75px !important;
}

.max-w-75px {
    max-width: 75px;
}

.max-w-75px-i {
    max-width: 75px !important;
}

.max-h-75px {
    max-height: 75px;
}

.max-h-75px-i {
    max-height: 75px !important;
}

.min-h-75px {
    min-height: 75px;
}

.min-h-75px-i {
    min-height: 75px !important;
}

.min-w-75px {
    min-width: 75px;
}

.min-w-75px-i {
    min-width: 75px !important;
}

.h-75px {
    height: 75px;
}

.h-75px-i {
    height: 75px !important;
}

.w-76px {
    width: 76px;
}

.w-76px-i {
    width: 76px !important;
}

.max-w-76px {
    max-width: 76px;
}

.max-w-76px-i {
    max-width: 76px !important;
}

.max-h-76px {
    max-height: 76px;
}

.max-h-76px-i {
    max-height: 76px !important;
}

.min-h-76px {
    min-height: 76px;
}

.min-h-76px-i {
    min-height: 76px !important;
}

.min-w-76px {
    min-width: 76px;
}

.min-w-76px-i {
    min-width: 76px !important;
}

.h-76px {
    height: 76px;
}

.h-76px-i {
    height: 76px !important;
}

.w-77px {
    width: 77px;
}

.w-77px-i {
    width: 77px !important;
}

.max-w-77px {
    max-width: 77px;
}

.max-w-77px-i {
    max-width: 77px !important;
}

.max-h-77px {
    max-height: 77px;
}

.max-h-77px-i {
    max-height: 77px !important;
}

.min-h-77px {
    min-height: 77px;
}

.min-h-77px-i {
    min-height: 77px !important;
}

.min-w-77px {
    min-width: 77px;
}

.min-w-77px-i {
    min-width: 77px !important;
}

.h-77px {
    height: 77px;
}

.h-77px-i {
    height: 77px !important;
}

.w-78px {
    width: 78px;
}

.w-78px-i {
    width: 78px !important;
}

.max-w-78px {
    max-width: 78px;
}

.max-w-78px-i {
    max-width: 78px !important;
}

.max-h-78px {
    max-height: 78px;
}

.max-h-78px-i {
    max-height: 78px !important;
}

.min-h-78px {
    min-height: 78px;
}

.min-h-78px-i {
    min-height: 78px !important;
}

.min-w-78px {
    min-width: 78px;
}

.min-w-78px-i {
    min-width: 78px !important;
}

.h-78px {
    height: 78px;
}

.h-78px-i {
    height: 78px !important;
}

.w-79px {
    width: 79px;
}

.w-79px-i {
    width: 79px !important;
}

.max-w-79px {
    max-width: 79px;
}

.max-w-79px-i {
    max-width: 79px !important;
}

.max-h-79px {
    max-height: 79px;
}

.max-h-79px-i {
    max-height: 79px !important;
}

.min-h-79px {
    min-height: 79px;
}

.min-h-79px-i {
    min-height: 79px !important;
}

.min-w-79px {
    min-width: 79px;
}

.min-w-79px-i {
    min-width: 79px !important;
}

.h-79px {
    height: 79px;
}

.h-79px-i {
    height: 79px !important;
}

.w-80px {
    width: 80px;
}

.w-80px-i {
    width: 80px !important;
}

.max-w-80px {
    max-width: 80px;
}

.max-w-80px-i {
    max-width: 80px !important;
}

.max-h-80px {
    max-height: 80px;
}

.max-h-80px-i {
    max-height: 80px !important;
}

.min-h-80px {
    min-height: 80px;
}

.min-h-80px-i {
    min-height: 80px !important;
}

.min-w-80px {
    min-width: 80px;
}

.min-w-80px-i {
    min-width: 80px !important;
}

.h-80px {
    height: 80px;
}

.h-80px-i {
    height: 80px !important;
}

.w-81px {
    width: 81px;
}

.w-81px-i {
    width: 81px !important;
}

.max-w-81px {
    max-width: 81px;
}

.max-w-81px-i {
    max-width: 81px !important;
}

.max-h-81px {
    max-height: 81px;
}

.max-h-81px-i {
    max-height: 81px !important;
}

.min-h-81px {
    min-height: 81px;
}

.min-h-81px-i {
    min-height: 81px !important;
}

.min-w-81px {
    min-width: 81px;
}

.min-w-81px-i {
    min-width: 81px !important;
}

.h-81px {
    height: 81px;
}

.h-81px-i {
    height: 81px !important;
}

.w-82px {
    width: 82px;
}

.w-82px-i {
    width: 82px !important;
}

.max-w-82px {
    max-width: 82px;
}

.max-w-82px-i {
    max-width: 82px !important;
}

.max-h-82px {
    max-height: 82px;
}

.max-h-82px-i {
    max-height: 82px !important;
}

.min-h-82px {
    min-height: 82px;
}

.min-h-82px-i {
    min-height: 82px !important;
}

.min-w-82px {
    min-width: 82px;
}

.min-w-82px-i {
    min-width: 82px !important;
}

.h-82px {
    height: 82px;
}

.h-82px-i {
    height: 82px !important;
}

.w-83px {
    width: 83px;
}

.w-83px-i {
    width: 83px !important;
}

.max-w-83px {
    max-width: 83px;
}

.max-w-83px-i {
    max-width: 83px !important;
}

.max-h-83px {
    max-height: 83px;
}

.max-h-83px-i {
    max-height: 83px !important;
}

.min-h-83px {
    min-height: 83px;
}

.min-h-83px-i {
    min-height: 83px !important;
}

.min-w-83px {
    min-width: 83px;
}

.min-w-83px-i {
    min-width: 83px !important;
}

.h-83px {
    height: 83px;
}

.h-83px-i {
    height: 83px !important;
}

.w-84px {
    width: 84px;
}

.w-84px-i {
    width: 84px !important;
}

.max-w-84px {
    max-width: 84px;
}

.max-w-84px-i {
    max-width: 84px !important;
}

.max-h-84px {
    max-height: 84px;
}

.max-h-84px-i {
    max-height: 84px !important;
}

.min-h-84px {
    min-height: 84px;
}

.min-h-84px-i {
    min-height: 84px !important;
}

.min-w-84px {
    min-width: 84px;
}

.min-w-84px-i {
    min-width: 84px !important;
}

.h-84px {
    height: 84px;
}

.h-84px-i {
    height: 84px !important;
}

.w-85px {
    width: 85px;
}

.w-85px-i {
    width: 85px !important;
}

.max-w-85px {
    max-width: 85px;
}

.max-w-85px-i {
    max-width: 85px !important;
}

.max-h-85px {
    max-height: 85px;
}

.max-h-85px-i {
    max-height: 85px !important;
}

.min-h-85px {
    min-height: 85px;
}

.min-h-85px-i {
    min-height: 85px !important;
}

.min-w-85px {
    min-width: 85px;
}

.min-w-85px-i {
    min-width: 85px !important;
}

.h-85px {
    height: 85px;
}

.h-85px-i {
    height: 85px !important;
}

.w-86px {
    width: 86px;
}

.w-86px-i {
    width: 86px !important;
}

.max-w-86px {
    max-width: 86px;
}

.max-w-86px-i {
    max-width: 86px !important;
}

.max-h-86px {
    max-height: 86px;
}

.max-h-86px-i {
    max-height: 86px !important;
}

.min-h-86px {
    min-height: 86px;
}

.min-h-86px-i {
    min-height: 86px !important;
}

.min-w-86px {
    min-width: 86px;
}

.min-w-86px-i {
    min-width: 86px !important;
}

.h-86px {
    height: 86px;
}

.h-86px-i {
    height: 86px !important;
}

.w-87px {
    width: 87px;
}

.w-87px-i {
    width: 87px !important;
}

.max-w-87px {
    max-width: 87px;
}

.max-w-87px-i {
    max-width: 87px !important;
}

.max-h-87px {
    max-height: 87px;
}

.max-h-87px-i {
    max-height: 87px !important;
}

.min-h-87px {
    min-height: 87px;
}

.min-h-87px-i {
    min-height: 87px !important;
}

.min-w-87px {
    min-width: 87px;
}

.min-w-87px-i {
    min-width: 87px !important;
}

.h-87px {
    height: 87px;
}

.h-87px-i {
    height: 87px !important;
}

.w-88px {
    width: 88px;
}

.w-88px-i {
    width: 88px !important;
}

.max-w-88px {
    max-width: 88px;
}

.max-w-88px-i {
    max-width: 88px !important;
}

.max-h-88px {
    max-height: 88px;
}

.max-h-88px-i {
    max-height: 88px !important;
}

.min-h-88px {
    min-height: 88px;
}

.min-h-88px-i {
    min-height: 88px !important;
}

.min-w-88px {
    min-width: 88px;
}

.min-w-88px-i {
    min-width: 88px !important;
}

.h-88px {
    height: 88px;
}

.h-88px-i {
    height: 88px !important;
}

.w-89px {
    width: 89px;
}

.w-89px-i {
    width: 89px !important;
}

.max-w-89px {
    max-width: 89px;
}

.max-w-89px-i {
    max-width: 89px !important;
}

.max-h-89px {
    max-height: 89px;
}

.max-h-89px-i {
    max-height: 89px !important;
}

.min-h-89px {
    min-height: 89px;
}

.min-h-89px-i {
    min-height: 89px !important;
}

.min-w-89px {
    min-width: 89px;
}

.min-w-89px-i {
    min-width: 89px !important;
}

.h-89px {
    height: 89px;
}

.h-89px-i {
    height: 89px !important;
}

.w-90px {
    width: 90px;
}

.w-90px-i {
    width: 90px !important;
}

.max-w-90px {
    max-width: 90px;
}

.max-w-90px-i {
    max-width: 90px !important;
}

.max-h-90px {
    max-height: 90px;
}

.max-h-90px-i {
    max-height: 90px !important;
}

.min-h-90px {
    min-height: 90px;
}

.min-h-90px-i {
    min-height: 90px !important;
}

.min-w-90px {
    min-width: 90px;
}

.min-w-90px-i {
    min-width: 90px !important;
}

.h-90px {
    height: 90px;
}

.h-90px-i {
    height: 90px !important;
}

.w-91px {
    width: 91px;
}

.w-91px-i {
    width: 91px !important;
}

.max-w-91px {
    max-width: 91px;
}

.max-w-91px-i {
    max-width: 91px !important;
}

.max-h-91px {
    max-height: 91px;
}

.max-h-91px-i {
    max-height: 91px !important;
}

.min-h-91px {
    min-height: 91px;
}

.min-h-91px-i {
    min-height: 91px !important;
}

.min-w-91px {
    min-width: 91px;
}

.min-w-91px-i {
    min-width: 91px !important;
}

.h-91px {
    height: 91px;
}

.h-91px-i {
    height: 91px !important;
}

.w-92px {
    width: 92px;
}

.w-92px-i {
    width: 92px !important;
}

.max-w-92px {
    max-width: 92px;
}

.max-w-92px-i {
    max-width: 92px !important;
}

.max-h-92px {
    max-height: 92px;
}

.max-h-92px-i {
    max-height: 92px !important;
}

.min-h-92px {
    min-height: 92px;
}

.min-h-92px-i {
    min-height: 92px !important;
}

.min-w-92px {
    min-width: 92px;
}

.min-w-92px-i {
    min-width: 92px !important;
}

.h-92px {
    height: 92px;
}

.h-92px-i {
    height: 92px !important;
}

.w-93px {
    width: 93px;
}

.w-93px-i {
    width: 93px !important;
}

.max-w-93px {
    max-width: 93px;
}

.max-w-93px-i {
    max-width: 93px !important;
}

.max-h-93px {
    max-height: 93px;
}

.max-h-93px-i {
    max-height: 93px !important;
}

.min-h-93px {
    min-height: 93px;
}

.min-h-93px-i {
    min-height: 93px !important;
}

.min-w-93px {
    min-width: 93px;
}

.min-w-93px-i {
    min-width: 93px !important;
}

.h-93px {
    height: 93px;
}

.h-93px-i {
    height: 93px !important;
}

.w-94px {
    width: 94px;
}

.w-94px-i {
    width: 94px !important;
}

.max-w-94px {
    max-width: 94px;
}

.max-w-94px-i {
    max-width: 94px !important;
}

.max-h-94px {
    max-height: 94px;
}

.max-h-94px-i {
    max-height: 94px !important;
}

.min-h-94px {
    min-height: 94px;
}

.min-h-94px-i {
    min-height: 94px !important;
}

.min-w-94px {
    min-width: 94px;
}

.min-w-94px-i {
    min-width: 94px !important;
}

.h-94px {
    height: 94px;
}

.h-94px-i {
    height: 94px !important;
}

.w-95px {
    width: 95px;
}

.w-95px-i {
    width: 95px !important;
}

.max-w-95px {
    max-width: 95px;
}

.max-w-95px-i {
    max-width: 95px !important;
}

.max-h-95px {
    max-height: 95px;
}

.max-h-95px-i {
    max-height: 95px !important;
}

.min-h-95px {
    min-height: 95px;
}

.min-h-95px-i {
    min-height: 95px !important;
}

.min-w-95px {
    min-width: 95px;
}

.min-w-95px-i {
    min-width: 95px !important;
}

.h-95px {
    height: 95px;
}

.h-95px-i {
    height: 95px !important;
}

.w-96px {
    width: 96px;
}

.w-96px-i {
    width: 96px !important;
}

.max-w-96px {
    max-width: 96px;
}

.max-w-96px-i {
    max-width: 96px !important;
}

.max-h-96px {
    max-height: 96px;
}

.max-h-96px-i {
    max-height: 96px !important;
}

.min-h-96px {
    min-height: 96px;
}

.min-h-96px-i {
    min-height: 96px !important;
}

.min-w-96px {
    min-width: 96px;
}

.min-w-96px-i {
    min-width: 96px !important;
}

.h-96px {
    height: 96px;
}

.h-96px-i {
    height: 96px !important;
}

.w-97px {
    width: 97px;
}

.w-97px-i {
    width: 97px !important;
}

.max-w-97px {
    max-width: 97px;
}

.max-w-97px-i {
    max-width: 97px !important;
}

.max-h-97px {
    max-height: 97px;
}

.max-h-97px-i {
    max-height: 97px !important;
}

.min-h-97px {
    min-height: 97px;
}

.min-h-97px-i {
    min-height: 97px !important;
}

.min-w-97px {
    min-width: 97px;
}

.min-w-97px-i {
    min-width: 97px !important;
}

.h-97px {
    height: 97px;
}

.h-97px-i {
    height: 97px !important;
}

.w-98px {
    width: 98px;
}

.w-98px-i {
    width: 98px !important;
}

.max-w-98px {
    max-width: 98px;
}

.max-w-98px-i {
    max-width: 98px !important;
}

.max-h-98px {
    max-height: 98px;
}

.max-h-98px-i {
    max-height: 98px !important;
}

.min-h-98px {
    min-height: 98px;
}

.min-h-98px-i {
    min-height: 98px !important;
}

.min-w-98px {
    min-width: 98px;
}

.min-w-98px-i {
    min-width: 98px !important;
}

.h-98px {
    height: 98px;
}

.h-98px-i {
    height: 98px !important;
}

.w-99px {
    width: 99px;
}

.w-99px-i {
    width: 99px !important;
}

.max-w-99px {
    max-width: 99px;
}

.max-w-99px-i {
    max-width: 99px !important;
}

.max-h-99px {
    max-height: 99px;
}

.max-h-99px-i {
    max-height: 99px !important;
}

.min-h-99px {
    min-height: 99px;
}

.min-h-99px-i {
    min-height: 99px !important;
}

.min-w-99px {
    min-width: 99px;
}

.min-w-99px-i {
    min-width: 99px !important;
}

.h-99px {
    height: 99px;
}

.h-99px-i {
    height: 99px !important;
}

.w-100px {
    width: 100px;
}

.w-100px-i {
    width: 100px !important;
}

.max-w-100px {
    max-width: 100px;
}

.max-w-100px-i {
    max-width: 100px !important;
}

.max-h-100px {
    max-height: 100px;
}

.max-h-100px-i {
    max-height: 100px !important;
}

.min-h-100px {
    min-height: 100px;
}

.min-h-100px-i {
    min-height: 100px !important;
}

.min-w-100px {
    min-width: 100px;
}

.min-w-100px-i {
    min-width: 100px !important;
}

.h-100px {
    height: 100px;
}

.h-100px-i {
    height: 100px !important;
}

.w-101px {
    width: 101px;
}

.w-101px-i {
    width: 101px !important;
}

.max-w-101px {
    max-width: 101px;
}

.max-w-101px-i {
    max-width: 101px !important;
}

.max-h-101px {
    max-height: 101px;
}

.max-h-101px-i {
    max-height: 101px !important;
}

.min-h-101px {
    min-height: 101px;
}

.min-h-101px-i {
    min-height: 101px !important;
}

.min-w-101px {
    min-width: 101px;
}

.min-w-101px-i {
    min-width: 101px !important;
}

.h-101px {
    height: 101px;
}

.h-101px-i {
    height: 101px !important;
}

.w-102px {
    width: 102px;
}

.w-102px-i {
    width: 102px !important;
}

.max-w-102px {
    max-width: 102px;
}

.max-w-102px-i {
    max-width: 102px !important;
}

.max-h-102px {
    max-height: 102px;
}

.max-h-102px-i {
    max-height: 102px !important;
}

.min-h-102px {
    min-height: 102px;
}

.min-h-102px-i {
    min-height: 102px !important;
}

.min-w-102px {
    min-width: 102px;
}

.min-w-102px-i {
    min-width: 102px !important;
}

.h-102px {
    height: 102px;
}

.h-102px-i {
    height: 102px !important;
}

.w-103px {
    width: 103px;
}

.w-103px-i {
    width: 103px !important;
}

.max-w-103px {
    max-width: 103px;
}

.max-w-103px-i {
    max-width: 103px !important;
}

.max-h-103px {
    max-height: 103px;
}

.max-h-103px-i {
    max-height: 103px !important;
}

.min-h-103px {
    min-height: 103px;
}

.min-h-103px-i {
    min-height: 103px !important;
}

.min-w-103px {
    min-width: 103px;
}

.min-w-103px-i {
    min-width: 103px !important;
}

.h-103px {
    height: 103px;
}

.h-103px-i {
    height: 103px !important;
}

.w-104px {
    width: 104px;
}

.w-104px-i {
    width: 104px !important;
}

.max-w-104px {
    max-width: 104px;
}

.max-w-104px-i {
    max-width: 104px !important;
}

.max-h-104px {
    max-height: 104px;
}

.max-h-104px-i {
    max-height: 104px !important;
}

.min-h-104px {
    min-height: 104px;
}

.min-h-104px-i {
    min-height: 104px !important;
}

.min-w-104px {
    min-width: 104px;
}

.min-w-104px-i {
    min-width: 104px !important;
}

.h-104px {
    height: 104px;
}

.h-104px-i {
    height: 104px !important;
}

.w-105px {
    width: 105px;
}

.w-105px-i {
    width: 105px !important;
}

.max-w-105px {
    max-width: 105px;
}

.max-w-105px-i {
    max-width: 105px !important;
}

.max-h-105px {
    max-height: 105px;
}

.max-h-105px-i {
    max-height: 105px !important;
}

.min-h-105px {
    min-height: 105px;
}

.min-h-105px-i {
    min-height: 105px !important;
}

.min-w-105px {
    min-width: 105px;
}

.min-w-105px-i {
    min-width: 105px !important;
}

.h-105px {
    height: 105px;
}

.h-105px-i {
    height: 105px !important;
}

.w-106px {
    width: 106px;
}

.w-106px-i {
    width: 106px !important;
}

.max-w-106px {
    max-width: 106px;
}

.max-w-106px-i {
    max-width: 106px !important;
}

.max-h-106px {
    max-height: 106px;
}

.max-h-106px-i {
    max-height: 106px !important;
}

.min-h-106px {
    min-height: 106px;
}

.min-h-106px-i {
    min-height: 106px !important;
}

.min-w-106px {
    min-width: 106px;
}

.min-w-106px-i {
    min-width: 106px !important;
}

.h-106px {
    height: 106px;
}

.h-106px-i {
    height: 106px !important;
}

.w-107px {
    width: 107px;
}

.w-107px-i {
    width: 107px !important;
}

.max-w-107px {
    max-width: 107px;
}

.max-w-107px-i {
    max-width: 107px !important;
}

.max-h-107px {
    max-height: 107px;
}

.max-h-107px-i {
    max-height: 107px !important;
}

.min-h-107px {
    min-height: 107px;
}

.min-h-107px-i {
    min-height: 107px !important;
}

.min-w-107px {
    min-width: 107px;
}

.min-w-107px-i {
    min-width: 107px !important;
}

.h-107px {
    height: 107px;
}

.h-107px-i {
    height: 107px !important;
}

.w-108px {
    width: 108px;
}

.w-108px-i {
    width: 108px !important;
}

.max-w-108px {
    max-width: 108px;
}

.max-w-108px-i {
    max-width: 108px !important;
}

.max-h-108px {
    max-height: 108px;
}

.max-h-108px-i {
    max-height: 108px !important;
}

.min-h-108px {
    min-height: 108px;
}

.min-h-108px-i {
    min-height: 108px !important;
}

.min-w-108px {
    min-width: 108px;
}

.min-w-108px-i {
    min-width: 108px !important;
}

.h-108px {
    height: 108px;
}

.h-108px-i {
    height: 108px !important;
}

.w-109px {
    width: 109px;
}

.w-109px-i {
    width: 109px !important;
}

.max-w-109px {
    max-width: 109px;
}

.max-w-109px-i {
    max-width: 109px !important;
}

.max-h-109px {
    max-height: 109px;
}

.max-h-109px-i {
    max-height: 109px !important;
}

.min-h-109px {
    min-height: 109px;
}

.min-h-109px-i {
    min-height: 109px !important;
}

.min-w-109px {
    min-width: 109px;
}

.min-w-109px-i {
    min-width: 109px !important;
}

.h-109px {
    height: 109px;
}

.h-109px-i {
    height: 109px !important;
}

.w-110px {
    width: 110px;
}

.w-110px-i {
    width: 110px !important;
}

.max-w-110px {
    max-width: 110px;
}

.max-w-110px-i {
    max-width: 110px !important;
}

.max-h-110px {
    max-height: 110px;
}

.max-h-110px-i {
    max-height: 110px !important;
}

.min-h-110px {
    min-height: 110px;
}

.min-h-110px-i {
    min-height: 110px !important;
}

.min-w-110px {
    min-width: 110px;
}

.min-w-110px-i {
    min-width: 110px !important;
}

.h-110px {
    height: 110px;
}

.h-110px-i {
    height: 110px !important;
}

.w-111px {
    width: 111px;
}

.w-111px-i {
    width: 111px !important;
}

.max-w-111px {
    max-width: 111px;
}

.max-w-111px-i {
    max-width: 111px !important;
}

.max-h-111px {
    max-height: 111px;
}

.max-h-111px-i {
    max-height: 111px !important;
}

.min-h-111px {
    min-height: 111px;
}

.min-h-111px-i {
    min-height: 111px !important;
}

.min-w-111px {
    min-width: 111px;
}

.min-w-111px-i {
    min-width: 111px !important;
}

.h-111px {
    height: 111px;
}

.h-111px-i {
    height: 111px !important;
}

.w-112px {
    width: 112px;
}

.w-112px-i {
    width: 112px !important;
}

.max-w-112px {
    max-width: 112px;
}

.max-w-112px-i {
    max-width: 112px !important;
}

.max-h-112px {
    max-height: 112px;
}

.max-h-112px-i {
    max-height: 112px !important;
}

.min-h-112px {
    min-height: 112px;
}

.min-h-112px-i {
    min-height: 112px !important;
}

.min-w-112px {
    min-width: 112px;
}

.min-w-112px-i {
    min-width: 112px !important;
}

.h-112px {
    height: 112px;
}

.h-112px-i {
    height: 112px !important;
}

.w-113px {
    width: 113px;
}

.w-113px-i {
    width: 113px !important;
}

.max-w-113px {
    max-width: 113px;
}

.max-w-113px-i {
    max-width: 113px !important;
}

.max-h-113px {
    max-height: 113px;
}

.max-h-113px-i {
    max-height: 113px !important;
}

.min-h-113px {
    min-height: 113px;
}

.min-h-113px-i {
    min-height: 113px !important;
}

.min-w-113px {
    min-width: 113px;
}

.min-w-113px-i {
    min-width: 113px !important;
}

.h-113px {
    height: 113px;
}

.h-113px-i {
    height: 113px !important;
}

.w-114px {
    width: 114px;
}

.w-114px-i {
    width: 114px !important;
}

.max-w-114px {
    max-width: 114px;
}

.max-w-114px-i {
    max-width: 114px !important;
}

.max-h-114px {
    max-height: 114px;
}

.max-h-114px-i {
    max-height: 114px !important;
}

.min-h-114px {
    min-height: 114px;
}

.min-h-114px-i {
    min-height: 114px !important;
}

.min-w-114px {
    min-width: 114px;
}

.min-w-114px-i {
    min-width: 114px !important;
}

.h-114px {
    height: 114px;
}

.h-114px-i {
    height: 114px !important;
}

.w-115px {
    width: 115px;
}

.w-115px-i {
    width: 115px !important;
}

.max-w-115px {
    max-width: 115px;
}

.max-w-115px-i {
    max-width: 115px !important;
}

.max-h-115px {
    max-height: 115px;
}

.max-h-115px-i {
    max-height: 115px !important;
}

.min-h-115px {
    min-height: 115px;
}

.min-h-115px-i {
    min-height: 115px !important;
}

.min-w-115px {
    min-width: 115px;
}

.min-w-115px-i {
    min-width: 115px !important;
}

.h-115px {
    height: 115px;
}

.h-115px-i {
    height: 115px !important;
}

.w-116px {
    width: 116px;
}

.w-116px-i {
    width: 116px !important;
}

.max-w-116px {
    max-width: 116px;
}

.max-w-116px-i {
    max-width: 116px !important;
}

.max-h-116px {
    max-height: 116px;
}

.max-h-116px-i {
    max-height: 116px !important;
}

.min-h-116px {
    min-height: 116px;
}

.min-h-116px-i {
    min-height: 116px !important;
}

.min-w-116px {
    min-width: 116px;
}

.min-w-116px-i {
    min-width: 116px !important;
}

.h-116px {
    height: 116px;
}

.h-116px-i {
    height: 116px !important;
}

.w-117px {
    width: 117px;
}

.w-117px-i {
    width: 117px !important;
}

.max-w-117px {
    max-width: 117px;
}

.max-w-117px-i {
    max-width: 117px !important;
}

.max-h-117px {
    max-height: 117px;
}

.max-h-117px-i {
    max-height: 117px !important;
}

.min-h-117px {
    min-height: 117px;
}

.min-h-117px-i {
    min-height: 117px !important;
}

.min-w-117px {
    min-width: 117px;
}

.min-w-117px-i {
    min-width: 117px !important;
}

.h-117px {
    height: 117px;
}

.h-117px-i {
    height: 117px !important;
}

.w-118px {
    width: 118px;
}

.w-118px-i {
    width: 118px !important;
}

.max-w-118px {
    max-width: 118px;
}

.max-w-118px-i {
    max-width: 118px !important;
}

.max-h-118px {
    max-height: 118px;
}

.max-h-118px-i {
    max-height: 118px !important;
}

.min-h-118px {
    min-height: 118px;
}

.min-h-118px-i {
    min-height: 118px !important;
}

.min-w-118px {
    min-width: 118px;
}

.min-w-118px-i {
    min-width: 118px !important;
}

.h-118px {
    height: 118px;
}

.h-118px-i {
    height: 118px !important;
}

.w-119px {
    width: 119px;
}

.w-119px-i {
    width: 119px !important;
}

.max-w-119px {
    max-width: 119px;
}

.max-w-119px-i {
    max-width: 119px !important;
}

.max-h-119px {
    max-height: 119px;
}

.max-h-119px-i {
    max-height: 119px !important;
}

.min-h-119px {
    min-height: 119px;
}

.min-h-119px-i {
    min-height: 119px !important;
}

.min-w-119px {
    min-width: 119px;
}

.min-w-119px-i {
    min-width: 119px !important;
}

.h-119px {
    height: 119px;
}

.h-119px-i {
    height: 119px !important;
}

.w-120px {
    width: 120px;
}

.w-120px-i {
    width: 120px !important;
}

.max-w-120px {
    max-width: 120px;
}

.max-w-120px-i {
    max-width: 120px !important;
}

.max-h-120px {
    max-height: 120px;
}

.max-h-120px-i {
    max-height: 120px !important;
}

.min-h-120px {
    min-height: 120px;
}

.min-h-120px-i {
    min-height: 120px !important;
}

.min-w-120px {
    min-width: 120px;
}

.min-w-120px-i {
    min-width: 120px !important;
}

.h-120px {
    height: 120px;
}

.h-120px-i {
    height: 120px !important;
}

.w-121px {
    width: 121px;
}

.w-121px-i {
    width: 121px !important;
}

.max-w-121px {
    max-width: 121px;
}

.max-w-121px-i {
    max-width: 121px !important;
}

.max-h-121px {
    max-height: 121px;
}

.max-h-121px-i {
    max-height: 121px !important;
}

.min-h-121px {
    min-height: 121px;
}

.min-h-121px-i {
    min-height: 121px !important;
}

.min-w-121px {
    min-width: 121px;
}

.min-w-121px-i {
    min-width: 121px !important;
}

.h-121px {
    height: 121px;
}

.h-121px-i {
    height: 121px !important;
}

.w-122px {
    width: 122px;
}

.w-122px-i {
    width: 122px !important;
}

.max-w-122px {
    max-width: 122px;
}

.max-w-122px-i {
    max-width: 122px !important;
}

.max-h-122px {
    max-height: 122px;
}

.max-h-122px-i {
    max-height: 122px !important;
}

.min-h-122px {
    min-height: 122px;
}

.min-h-122px-i {
    min-height: 122px !important;
}

.min-w-122px {
    min-width: 122px;
}

.min-w-122px-i {
    min-width: 122px !important;
}

.h-122px {
    height: 122px;
}

.h-122px-i {
    height: 122px !important;
}

.w-123px {
    width: 123px;
}

.w-123px-i {
    width: 123px !important;
}

.max-w-123px {
    max-width: 123px;
}

.max-w-123px-i {
    max-width: 123px !important;
}

.max-h-123px {
    max-height: 123px;
}

.max-h-123px-i {
    max-height: 123px !important;
}

.min-h-123px {
    min-height: 123px;
}

.min-h-123px-i {
    min-height: 123px !important;
}

.min-w-123px {
    min-width: 123px;
}

.min-w-123px-i {
    min-width: 123px !important;
}

.h-123px {
    height: 123px;
}

.h-123px-i {
    height: 123px !important;
}

.w-124px {
    width: 124px;
}

.w-124px-i {
    width: 124px !important;
}

.max-w-124px {
    max-width: 124px;
}

.max-w-124px-i {
    max-width: 124px !important;
}

.max-h-124px {
    max-height: 124px;
}

.max-h-124px-i {
    max-height: 124px !important;
}

.min-h-124px {
    min-height: 124px;
}

.min-h-124px-i {
    min-height: 124px !important;
}

.min-w-124px {
    min-width: 124px;
}

.min-w-124px-i {
    min-width: 124px !important;
}

.h-124px {
    height: 124px;
}

.h-124px-i {
    height: 124px !important;
}

.w-125px {
    width: 125px;
}

.w-125px-i {
    width: 125px !important;
}

.max-w-125px {
    max-width: 125px;
}

.max-w-125px-i {
    max-width: 125px !important;
}

.max-h-125px {
    max-height: 125px;
}

.max-h-125px-i {
    max-height: 125px !important;
}

.min-h-125px {
    min-height: 125px;
}

.min-h-125px-i {
    min-height: 125px !important;
}

.min-w-125px {
    min-width: 125px;
}

.min-w-125px-i {
    min-width: 125px !important;
}

.h-125px {
    height: 125px;
}

.h-125px-i {
    height: 125px !important;
}

.w-126px {
    width: 126px;
}

.w-126px-i {
    width: 126px !important;
}

.max-w-126px {
    max-width: 126px;
}

.max-w-126px-i {
    max-width: 126px !important;
}

.max-h-126px {
    max-height: 126px;
}

.max-h-126px-i {
    max-height: 126px !important;
}

.min-h-126px {
    min-height: 126px;
}

.min-h-126px-i {
    min-height: 126px !important;
}

.min-w-126px {
    min-width: 126px;
}

.min-w-126px-i {
    min-width: 126px !important;
}

.h-126px {
    height: 126px;
}

.h-126px-i {
    height: 126px !important;
}

.w-127px {
    width: 127px;
}

.w-127px-i {
    width: 127px !important;
}

.max-w-127px {
    max-width: 127px;
}

.max-w-127px-i {
    max-width: 127px !important;
}

.max-h-127px {
    max-height: 127px;
}

.max-h-127px-i {
    max-height: 127px !important;
}

.min-h-127px {
    min-height: 127px;
}

.min-h-127px-i {
    min-height: 127px !important;
}

.min-w-127px {
    min-width: 127px;
}

.min-w-127px-i {
    min-width: 127px !important;
}

.h-127px {
    height: 127px;
}

.h-127px-i {
    height: 127px !important;
}

.w-128px {
    width: 128px;
}

.w-128px-i {
    width: 128px !important;
}

.max-w-128px {
    max-width: 128px;
}

.max-w-128px-i {
    max-width: 128px !important;
}

.max-h-128px {
    max-height: 128px;
}

.max-h-128px-i {
    max-height: 128px !important;
}

.min-h-128px {
    min-height: 128px;
}

.min-h-128px-i {
    min-height: 128px !important;
}

.min-w-128px {
    min-width: 128px;
}

.min-w-128px-i {
    min-width: 128px !important;
}

.h-128px {
    height: 128px;
}

.h-128px-i {
    height: 128px !important;
}

.w-129px {
    width: 129px;
}

.w-129px-i {
    width: 129px !important;
}

.max-w-129px {
    max-width: 129px;
}

.max-w-129px-i {
    max-width: 129px !important;
}

.max-h-129px {
    max-height: 129px;
}

.max-h-129px-i {
    max-height: 129px !important;
}

.min-h-129px {
    min-height: 129px;
}

.min-h-129px-i {
    min-height: 129px !important;
}

.min-w-129px {
    min-width: 129px;
}

.min-w-129px-i {
    min-width: 129px !important;
}

.h-129px {
    height: 129px;
}

.h-129px-i {
    height: 129px !important;
}

.w-130px {
    width: 130px;
}

.w-130px-i {
    width: 130px !important;
}

.max-w-130px {
    max-width: 130px;
}

.max-w-130px-i {
    max-width: 130px !important;
}

.max-h-130px {
    max-height: 130px;
}

.max-h-130px-i {
    max-height: 130px !important;
}

.min-h-130px {
    min-height: 130px;
}

.min-h-130px-i {
    min-height: 130px !important;
}

.min-w-130px {
    min-width: 130px;
}

.min-w-130px-i {
    min-width: 130px !important;
}

.h-130px {
    height: 130px;
}

.h-130px-i {
    height: 130px !important;
}

.w-131px {
    width: 131px;
}

.w-131px-i {
    width: 131px !important;
}

.max-w-131px {
    max-width: 131px;
}

.max-w-131px-i {
    max-width: 131px !important;
}

.max-h-131px {
    max-height: 131px;
}

.max-h-131px-i {
    max-height: 131px !important;
}

.min-h-131px {
    min-height: 131px;
}

.min-h-131px-i {
    min-height: 131px !important;
}

.min-w-131px {
    min-width: 131px;
}

.min-w-131px-i {
    min-width: 131px !important;
}

.h-131px {
    height: 131px;
}

.h-131px-i {
    height: 131px !important;
}

.w-132px {
    width: 132px;
}

.w-132px-i {
    width: 132px !important;
}

.max-w-132px {
    max-width: 132px;
}

.max-w-132px-i {
    max-width: 132px !important;
}

.max-h-132px {
    max-height: 132px;
}

.max-h-132px-i {
    max-height: 132px !important;
}

.min-h-132px {
    min-height: 132px;
}

.min-h-132px-i {
    min-height: 132px !important;
}

.min-w-132px {
    min-width: 132px;
}

.min-w-132px-i {
    min-width: 132px !important;
}

.h-132px {
    height: 132px;
}

.h-132px-i {
    height: 132px !important;
}

.w-133px {
    width: 133px;
}

.w-133px-i {
    width: 133px !important;
}

.max-w-133px {
    max-width: 133px;
}

.max-w-133px-i {
    max-width: 133px !important;
}

.max-h-133px {
    max-height: 133px;
}

.max-h-133px-i {
    max-height: 133px !important;
}

.min-h-133px {
    min-height: 133px;
}

.min-h-133px-i {
    min-height: 133px !important;
}

.min-w-133px {
    min-width: 133px;
}

.min-w-133px-i {
    min-width: 133px !important;
}

.h-133px {
    height: 133px;
}

.h-133px-i {
    height: 133px !important;
}

.w-134px {
    width: 134px;
}

.w-134px-i {
    width: 134px !important;
}

.max-w-134px {
    max-width: 134px;
}

.max-w-134px-i {
    max-width: 134px !important;
}

.max-h-134px {
    max-height: 134px;
}

.max-h-134px-i {
    max-height: 134px !important;
}

.min-h-134px {
    min-height: 134px;
}

.min-h-134px-i {
    min-height: 134px !important;
}

.min-w-134px {
    min-width: 134px;
}

.min-w-134px-i {
    min-width: 134px !important;
}

.h-134px {
    height: 134px;
}

.h-134px-i {
    height: 134px !important;
}

.w-135px {
    width: 135px;
}

.w-135px-i {
    width: 135px !important;
}

.max-w-135px {
    max-width: 135px;
}

.max-w-135px-i {
    max-width: 135px !important;
}

.max-h-135px {
    max-height: 135px;
}

.max-h-135px-i {
    max-height: 135px !important;
}

.min-h-135px {
    min-height: 135px;
}

.min-h-135px-i {
    min-height: 135px !important;
}

.min-w-135px {
    min-width: 135px;
}

.min-w-135px-i {
    min-width: 135px !important;
}

.h-135px {
    height: 135px;
}

.h-135px-i {
    height: 135px !important;
}

.w-136px {
    width: 136px;
}

.w-136px-i {
    width: 136px !important;
}

.max-w-136px {
    max-width: 136px;
}

.max-w-136px-i {
    max-width: 136px !important;
}

.max-h-136px {
    max-height: 136px;
}

.max-h-136px-i {
    max-height: 136px !important;
}

.min-h-136px {
    min-height: 136px;
}

.min-h-136px-i {
    min-height: 136px !important;
}

.min-w-136px {
    min-width: 136px;
}

.min-w-136px-i {
    min-width: 136px !important;
}

.h-136px {
    height: 136px;
}

.h-136px-i {
    height: 136px !important;
}

.w-137px {
    width: 137px;
}

.w-137px-i {
    width: 137px !important;
}

.max-w-137px {
    max-width: 137px;
}

.max-w-137px-i {
    max-width: 137px !important;
}

.max-h-137px {
    max-height: 137px;
}

.max-h-137px-i {
    max-height: 137px !important;
}

.min-h-137px {
    min-height: 137px;
}

.min-h-137px-i {
    min-height: 137px !important;
}

.min-w-137px {
    min-width: 137px;
}

.min-w-137px-i {
    min-width: 137px !important;
}

.h-137px {
    height: 137px;
}

.h-137px-i {
    height: 137px !important;
}

.w-138px {
    width: 138px;
}

.w-138px-i {
    width: 138px !important;
}

.max-w-138px {
    max-width: 138px;
}

.max-w-138px-i {
    max-width: 138px !important;
}

.max-h-138px {
    max-height: 138px;
}

.max-h-138px-i {
    max-height: 138px !important;
}

.min-h-138px {
    min-height: 138px;
}

.min-h-138px-i {
    min-height: 138px !important;
}

.min-w-138px {
    min-width: 138px;
}

.min-w-138px-i {
    min-width: 138px !important;
}

.h-138px {
    height: 138px;
}

.h-138px-i {
    height: 138px !important;
}

.w-139px {
    width: 139px;
}

.w-139px-i {
    width: 139px !important;
}

.max-w-139px {
    max-width: 139px;
}

.max-w-139px-i {
    max-width: 139px !important;
}

.max-h-139px {
    max-height: 139px;
}

.max-h-139px-i {
    max-height: 139px !important;
}

.min-h-139px {
    min-height: 139px;
}

.min-h-139px-i {
    min-height: 139px !important;
}

.min-w-139px {
    min-width: 139px;
}

.min-w-139px-i {
    min-width: 139px !important;
}

.h-139px {
    height: 139px;
}

.h-139px-i {
    height: 139px !important;
}

.w-140px {
    width: 140px;
}

.w-140px-i {
    width: 140px !important;
}

.max-w-140px {
    max-width: 140px;
}

.max-w-140px-i {
    max-width: 140px !important;
}

.max-h-140px {
    max-height: 140px;
}

.max-h-140px-i {
    max-height: 140px !important;
}

.min-h-140px {
    min-height: 140px;
}

.min-h-140px-i {
    min-height: 140px !important;
}

.min-w-140px {
    min-width: 140px;
}

.min-w-140px-i {
    min-width: 140px !important;
}

.h-140px {
    height: 140px;
}

.h-140px-i {
    height: 140px !important;
}

.w-141px {
    width: 141px;
}

.w-141px-i {
    width: 141px !important;
}

.max-w-141px {
    max-width: 141px;
}

.max-w-141px-i {
    max-width: 141px !important;
}

.max-h-141px {
    max-height: 141px;
}

.max-h-141px-i {
    max-height: 141px !important;
}

.min-h-141px {
    min-height: 141px;
}

.min-h-141px-i {
    min-height: 141px !important;
}

.min-w-141px {
    min-width: 141px;
}

.min-w-141px-i {
    min-width: 141px !important;
}

.h-141px {
    height: 141px;
}

.h-141px-i {
    height: 141px !important;
}

.w-142px {
    width: 142px;
}

.w-142px-i {
    width: 142px !important;
}

.max-w-142px {
    max-width: 142px;
}

.max-w-142px-i {
    max-width: 142px !important;
}

.max-h-142px {
    max-height: 142px;
}

.max-h-142px-i {
    max-height: 142px !important;
}

.min-h-142px {
    min-height: 142px;
}

.min-h-142px-i {
    min-height: 142px !important;
}

.min-w-142px {
    min-width: 142px;
}

.min-w-142px-i {
    min-width: 142px !important;
}

.h-142px {
    height: 142px;
}

.h-142px-i {
    height: 142px !important;
}

.w-143px {
    width: 143px;
}

.w-143px-i {
    width: 143px !important;
}

.max-w-143px {
    max-width: 143px;
}

.max-w-143px-i {
    max-width: 143px !important;
}

.max-h-143px {
    max-height: 143px;
}

.max-h-143px-i {
    max-height: 143px !important;
}

.min-h-143px {
    min-height: 143px;
}

.min-h-143px-i {
    min-height: 143px !important;
}

.min-w-143px {
    min-width: 143px;
}

.min-w-143px-i {
    min-width: 143px !important;
}

.h-143px {
    height: 143px;
}

.h-143px-i {
    height: 143px !important;
}

.w-144px {
    width: 144px;
}

.w-144px-i {
    width: 144px !important;
}

.max-w-144px {
    max-width: 144px;
}

.max-w-144px-i {
    max-width: 144px !important;
}

.max-h-144px {
    max-height: 144px;
}

.max-h-144px-i {
    max-height: 144px !important;
}

.min-h-144px {
    min-height: 144px;
}

.min-h-144px-i {
    min-height: 144px !important;
}

.min-w-144px {
    min-width: 144px;
}

.min-w-144px-i {
    min-width: 144px !important;
}

.h-144px {
    height: 144px;
}

.h-144px-i {
    height: 144px !important;
}

.w-145px {
    width: 145px;
}

.w-145px-i {
    width: 145px !important;
}

.max-w-145px {
    max-width: 145px;
}

.max-w-145px-i {
    max-width: 145px !important;
}

.max-h-145px {
    max-height: 145px;
}

.max-h-145px-i {
    max-height: 145px !important;
}

.min-h-145px {
    min-height: 145px;
}

.min-h-145px-i {
    min-height: 145px !important;
}

.min-w-145px {
    min-width: 145px;
}

.min-w-145px-i {
    min-width: 145px !important;
}

.h-145px {
    height: 145px;
}

.h-145px-i {
    height: 145px !important;
}

.w-146px {
    width: 146px;
}

.w-146px-i {
    width: 146px !important;
}

.max-w-146px {
    max-width: 146px;
}

.max-w-146px-i {
    max-width: 146px !important;
}

.max-h-146px {
    max-height: 146px;
}

.max-h-146px-i {
    max-height: 146px !important;
}

.min-h-146px {
    min-height: 146px;
}

.min-h-146px-i {
    min-height: 146px !important;
}

.min-w-146px {
    min-width: 146px;
}

.min-w-146px-i {
    min-width: 146px !important;
}

.h-146px {
    height: 146px;
}

.h-146px-i {
    height: 146px !important;
}

.w-147px {
    width: 147px;
}

.w-147px-i {
    width: 147px !important;
}

.max-w-147px {
    max-width: 147px;
}

.max-w-147px-i {
    max-width: 147px !important;
}

.max-h-147px {
    max-height: 147px;
}

.max-h-147px-i {
    max-height: 147px !important;
}

.min-h-147px {
    min-height: 147px;
}

.min-h-147px-i {
    min-height: 147px !important;
}

.min-w-147px {
    min-width: 147px;
}

.min-w-147px-i {
    min-width: 147px !important;
}

.h-147px {
    height: 147px;
}

.h-147px-i {
    height: 147px !important;
}

.w-148px {
    width: 148px;
}

.w-148px-i {
    width: 148px !important;
}

.max-w-148px {
    max-width: 148px;
}

.max-w-148px-i {
    max-width: 148px !important;
}

.max-h-148px {
    max-height: 148px;
}

.max-h-148px-i {
    max-height: 148px !important;
}

.min-h-148px {
    min-height: 148px;
}

.min-h-148px-i {
    min-height: 148px !important;
}

.min-w-148px {
    min-width: 148px;
}

.min-w-148px-i {
    min-width: 148px !important;
}

.h-148px {
    height: 148px;
}

.h-148px-i {
    height: 148px !important;
}

.w-149px {
    width: 149px;
}

.w-149px-i {
    width: 149px !important;
}

.max-w-149px {
    max-width: 149px;
}

.max-w-149px-i {
    max-width: 149px !important;
}

.max-h-149px {
    max-height: 149px;
}

.max-h-149px-i {
    max-height: 149px !important;
}

.min-h-149px {
    min-height: 149px;
}

.min-h-149px-i {
    min-height: 149px !important;
}

.min-w-149px {
    min-width: 149px;
}

.min-w-149px-i {
    min-width: 149px !important;
}

.h-149px {
    height: 149px;
}

.h-149px-i {
    height: 149px !important;
}

.w-150px {
    width: 150px;
}

.w-150px-i {
    width: 150px !important;
}

.max-w-150px {
    max-width: 150px;
}

.max-w-150px-i {
    max-width: 150px !important;
}

.max-h-150px {
    max-height: 150px;
}

.max-h-150px-i {
    max-height: 150px !important;
}

.min-h-150px {
    min-height: 150px;
}

.min-h-150px-i {
    min-height: 150px !important;
}

.min-w-150px {
    min-width: 150px;
}

.min-w-150px-i {
    min-width: 150px !important;
}

.h-150px {
    height: 150px;
}

.h-150px-i {
    height: 150px !important;
}

/*================= typography =================*/

.rounded-0px {
    border-radius: 0px;
}

.rounded-l-0px {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.rounded-r-0px {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.rounded-t-0px {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.rounded-b-0px {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.rounded-0px-i {
    border-radius: 0px !important;
}

.rounded-l-0px-i {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}

.rounded-r-0px-i {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.rounded-t-0px-i {
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
}

.rounded-b-0px-i {
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}

.top-0px {
    top: 0px;
}

.top-0px-i {
    top: 0px !important;
}

.bottom-0px {
    bottom: 0px;
}

.bottom-0px-i {
    bottom: 0px !important;
}

.left-0px {
    left: 0px;
}

.left-0px-i {
    left: 0px !important;
}

.right-0px {
    right: 0px;
}

.right-0px-i {
    right: 0px !important;
}

.gap-0px {
    gap: 0px;
}

.gap-x-0px {
    column-gap: 0px;
}

.gap-y-0px {
    row-gap: 0px;
}

.gap-y-0px-i {
    row-gap: 0px !important;
}

.leading-0px {
    line-height: 0px;
}

.leading-0px-i {
    line-height: 0px !important;
}

.text-0px {
    font-size: 0px;
}

.text-0px-i {
    font-size: 0px !important;
}

.p-0px {
    padding: 0px;
}

.pl-0px {
    padding-left: 0px;
}

.pl-0px-i {
    padding-left: 0px !important;
}

.pr-0px {
    padding-right: 0px;
}

.pr-0px-i {
    padding-right: 0px !important;
}

.pb-0px {
    padding-bottom: 0px;
}

.pb-0px-i {
    padding-bottom: 0px !important;
}

.pt-0px {
    padding-top: 0px;
}

.pt-0px-i {
    padding-top: 0px !important;
}

.px-0px {
    padding-left: 0px;
    padding-right: 0px;
}

.px-0px-i {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.py-0px {
    padding-top: 0px;
    padding-bottom: 0px;
}

.py-0px-i {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.m-0px {
    margin: 0px;
}

.mt-0px {
    margin-top: 0px;
}

.mt-0px-i {
    margin-top: 0px !important;
}

.mb-0px {
    margin-bottom: 0px;
}

.mb-0px-i {
    margin-bottom: 0px !important;
}

.ml-0px {
    margin-left: 0px;
}

.ml-0px-i {
    margin-left: 0px !important;
}

.mr-0px {
    margin-right: 0px;
}

.mr-0px-i {
    margin-right: 0px !important;
}

.mx-0px {
    margin-right: 0px;
    margin-left: 0px;
}

.mx-0px-i {
    margin-right: 0px !important;
    margin-left: 0px !important;
}

.my-0px {
    margin-top: 0px;
    margin-bottom: 0px;
}

.my-0px-i {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.-mt-0px {
    margin-top: -0px;
}

.-mt-0px-i {
    margin-top: -0px !important;
}

.-mb-0px {
    margin-bottom: -0px;
}

.-mb-0px-i {
    margin-bottom: -0px !important;
}

.-ml-0px {
    margin-left: -0px;
}

.-ml-0px-i {
    margin-left: -0px !important;
}

.-mr-0px {
    margin-right: -0px;
}

.-mr-0px-i {
    margin-right: -0px !important;
}

.rounded-1px {
    border-radius: 1px;
}

.rounded-l-1px {
    border-top-left-radius: 1px;
    border-bottom-left-radius: 1px;
}

.rounded-r-1px {
    border-top-right-radius: 1px;
    border-bottom-right-radius: 1px;
}

.rounded-t-1px {
    border-top-left-radius: 1px;
    border-top-right-radius: 1px;
}

.rounded-b-1px {
    border-bottom-right-radius: 1px;
    border-bottom-left-radius: 1px;
}

.rounded-1px-i {
    border-radius: 1px !important;
}

.rounded-l-1px-i {
    border-top-left-radius: 1px !important;
    border-bottom-left-radius: 1px !important;
}

.rounded-r-1px-i {
    border-top-right-radius: 1px !important;
    border-bottom-right-radius: 1px !important;
}

.rounded-t-1px-i {
    border-top-left-radius: 1px !important;
    border-top-right-radius: 1px !important;
}

.rounded-b-1px-i {
    border-bottom-right-radius: 1px !important;
    border-bottom-left-radius: 1px !important;
}

.top-1px {
    top: 1px;
}

.top-1px-i {
    top: 1px !important;
}

.bottom-1px {
    bottom: 1px;
}

.bottom-1px-i {
    bottom: 1px !important;
}

.left-1px {
    left: 1px;
}

.left-1px-i {
    left: 1px !important;
}

.right-1px {
    right: 1px;
}

.right-1px-i {
    right: 1px !important;
}

.gap-1px {
    gap: 1px;
}

.gap-x-1px {
    column-gap: 1px;
}

.gap-y-1px {
    row-gap: 1px;
}

.gap-y-1px-i {
    row-gap: 1px !important;
}

.leading-1px {
    line-height: 1px;
}

.leading-1px-i {
    line-height: 1px !important;
}

.text-1px {
    font-size: 1px;
}

.text-1px-i {
    font-size: 1px !important;
}

.p-1px {
    padding: 1px;
}

.pl-1px {
    padding-left: 1px;
}

.pl-1px-i {
    padding-left: 1px !important;
}

.pr-1px {
    padding-right: 1px;
}

.pr-1px-i {
    padding-right: 1px !important;
}

.pb-1px {
    padding-bottom: 1px;
}

.pb-1px-i {
    padding-bottom: 1px !important;
}

.pt-1px {
    padding-top: 1px;
}

.pt-1px-i {
    padding-top: 1px !important;
}

.px-1px {
    padding-left: 1px;
    padding-right: 1px;
}

.px-1px-i {
    padding-left: 1px !important;
    padding-right: 1px !important;
}

.py-1px {
    padding-top: 1px;
    padding-bottom: 1px;
}

.py-1px-i {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
}

.m-1px {
    margin: 1px;
}

.mt-1px {
    margin-top: 1px;
}

.mt-1px-i {
    margin-top: 1px !important;
}

.mb-1px {
    margin-bottom: 1px;
}

.mb-1px-i {
    margin-bottom: 1px !important;
}

.ml-1px {
    margin-left: 1px;
}

.ml-1px-i {
    margin-left: 1px !important;
}

.mr-1px {
    margin-right: 1px;
}

.mr-1px-i {
    margin-right: 1px !important;
}

.mx-1px {
    margin-right: 1px;
    margin-left: 1px;
}

.mx-1px-i {
    margin-right: 1px !important;
    margin-left: 1px !important;
}

.my-1px {
    margin-top: 1px;
    margin-bottom: 1px;
}

.my-1px-i {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
}

.-mt-1px {
    margin-top: -1px;
}

.-mt-1px-i {
    margin-top: -1px !important;
}

.-mb-1px {
    margin-bottom: -1px;
}

.-mb-1px-i {
    margin-bottom: -1px !important;
}

.-ml-1px {
    margin-left: -1px;
}

.-ml-1px-i {
    margin-left: -1px !important;
}

.-mr-1px {
    margin-right: -1px;
}

.-mr-1px-i {
    margin-right: -1px !important;
}

.rounded-2px {
    border-radius: 2px;
}

.rounded-l-2px {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.rounded-r-2px {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.rounded-t-2px {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.rounded-b-2px {
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}

.rounded-2px-i {
    border-radius: 2px !important;
}

.rounded-l-2px-i {
    border-top-left-radius: 2px !important;
    border-bottom-left-radius: 2px !important;
}

.rounded-r-2px-i {
    border-top-right-radius: 2px !important;
    border-bottom-right-radius: 2px !important;
}

.rounded-t-2px-i {
    border-top-left-radius: 2px !important;
    border-top-right-radius: 2px !important;
}

.rounded-b-2px-i {
    border-bottom-right-radius: 2px !important;
    border-bottom-left-radius: 2px !important;
}

.top-2px {
    top: 2px;
}

.top-2px-i {
    top: 2px !important;
}

.bottom-2px {
    bottom: 2px;
}

.bottom-2px-i {
    bottom: 2px !important;
}

.left-2px {
    left: 2px;
}

.left-2px-i {
    left: 2px !important;
}

.right-2px {
    right: 2px;
}

.right-2px-i {
    right: 2px !important;
}

.gap-2px {
    gap: 2px;
}

.gap-x-2px {
    column-gap: 2px;
}

.gap-y-2px {
    row-gap: 2px;
}

.gap-y-2px-i {
    row-gap: 2px !important;
}

.leading-2px {
    line-height: 2px;
}

.leading-2px-i {
    line-height: 2px !important;
}

.text-2px {
    font-size: 2px;
}

.text-2px-i {
    font-size: 2px !important;
}

.p-2px {
    padding: 2px;
}

.pl-2px {
    padding-left: 2px;
}

.pl-2px-i {
    padding-left: 2px !important;
}

.pr-2px {
    padding-right: 2px;
}

.pr-2px-i {
    padding-right: 2px !important;
}

.pb-2px {
    padding-bottom: 2px;
}

.pb-2px-i {
    padding-bottom: 2px !important;
}

.pt-2px {
    padding-top: 2px;
}

.pt-2px-i {
    padding-top: 2px !important;
}

.px-2px {
    padding-left: 2px;
    padding-right: 2px;
}

.px-2px-i {
    padding-left: 2px !important;
    padding-right: 2px !important;
}

.py-2px {
    padding-top: 2px;
    padding-bottom: 2px;
}

.py-2px-i {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}

.m-2px {
    margin: 2px;
}

.mt-2px {
    margin-top: 2px;
}

.mt-2px-i {
    margin-top: 2px !important;
}

.mb-2px {
    margin-bottom: 2px;
}

.mb-2px-i {
    margin-bottom: 2px !important;
}

.ml-2px {
    margin-left: 2px;
}

.ml-2px-i {
    margin-left: 2px !important;
}

.mr-2px {
    margin-right: 2px;
}

.mr-2px-i {
    margin-right: 2px !important;
}

.mx-2px {
    margin-right: 2px;
    margin-left: 2px;
}

.mx-2px-i {
    margin-right: 2px !important;
    margin-left: 2px !important;
}

.my-2px {
    margin-top: 2px;
    margin-bottom: 2px;
}

.my-2px-i {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
}

.-mt-2px {
    margin-top: -2px;
}

.-mt-2px-i {
    margin-top: -2px !important;
}

.-mb-2px {
    margin-bottom: -2px;
}

.-mb-2px-i {
    margin-bottom: -2px !important;
}

.-ml-2px {
    margin-left: -2px;
}

.-ml-2px-i {
    margin-left: -2px !important;
}

.-mr-2px {
    margin-right: -2px;
}

.-mr-2px-i {
    margin-right: -2px !important;
}

.rounded-3px {
    border-radius: 3px;
}

.rounded-l-3px {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.rounded-r-3px {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.rounded-t-3px {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.rounded-b-3px {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.rounded-3px-i {
    border-radius: 3px !important;
}

.rounded-l-3px-i {
    border-top-left-radius: 3px !important;
    border-bottom-left-radius: 3px !important;
}

.rounded-r-3px-i {
    border-top-right-radius: 3px !important;
    border-bottom-right-radius: 3px !important;
}

.rounded-t-3px-i {
    border-top-left-radius: 3px !important;
    border-top-right-radius: 3px !important;
}

.rounded-b-3px-i {
    border-bottom-right-radius: 3px !important;
    border-bottom-left-radius: 3px !important;
}

.top-3px {
    top: 3px;
}

.top-3px-i {
    top: 3px !important;
}

.bottom-3px {
    bottom: 3px;
}

.bottom-3px-i {
    bottom: 3px !important;
}

.left-3px {
    left: 3px;
}

.left-3px-i {
    left: 3px !important;
}

.right-3px {
    right: 3px;
}

.right-3px-i {
    right: 3px !important;
}

.gap-3px {
    gap: 3px;
}

.gap-x-3px {
    column-gap: 3px;
}

.gap-y-3px {
    row-gap: 3px;
}

.gap-y-3px-i {
    row-gap: 3px !important;
}

.leading-3px {
    line-height: 3px;
}

.leading-3px-i {
    line-height: 3px !important;
}

.text-3px {
    font-size: 3px;
}

.text-3px-i {
    font-size: 3px !important;
}

.p-3px {
    padding: 3px;
}

.pl-3px {
    padding-left: 3px;
}

.pl-3px-i {
    padding-left: 3px !important;
}

.pr-3px {
    padding-right: 3px;
}

.pr-3px-i {
    padding-right: 3px !important;
}

.pb-3px {
    padding-bottom: 3px;
}

.pb-3px-i {
    padding-bottom: 3px !important;
}

.pt-3px {
    padding-top: 3px;
}

.pt-3px-i {
    padding-top: 3px !important;
}

.px-3px {
    padding-left: 3px;
    padding-right: 3px;
}

.px-3px-i {
    padding-left: 3px !important;
    padding-right: 3px !important;
}

.py-3px {
    padding-top: 3px;
    padding-bottom: 3px;
}

.py-3px-i {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
}

.m-3px {
    margin: 3px;
}

.mt-3px {
    margin-top: 3px;
}

.mt-3px-i {
    margin-top: 3px !important;
}

.mb-3px {
    margin-bottom: 3px;
}

.mb-3px-i {
    margin-bottom: 3px !important;
}

.ml-3px {
    margin-left: 3px;
}

.ml-3px-i {
    margin-left: 3px !important;
}

.mr-3px {
    margin-right: 3px;
}

.mr-3px-i {
    margin-right: 3px !important;
}

.mx-3px {
    margin-right: 3px;
    margin-left: 3px;
}

.mx-3px-i {
    margin-right: 3px !important;
    margin-left: 3px !important;
}

.my-3px {
    margin-top: 3px;
    margin-bottom: 3px;
}

.my-3px-i {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
}

.-mt-3px {
    margin-top: -3px;
}

.-mt-3px-i {
    margin-top: -3px !important;
}

.-mb-3px {
    margin-bottom: -3px;
}

.-mb-3px-i {
    margin-bottom: -3px !important;
}

.-ml-3px {
    margin-left: -3px;
}

.-ml-3px-i {
    margin-left: -3px !important;
}

.-mr-3px {
    margin-right: -3px;
}

.-mr-3px-i {
    margin-right: -3px !important;
}

.rounded-4px {
    border-radius: 4px;
}

.rounded-l-4px {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.rounded-r-4px {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.rounded-t-4px {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.rounded-b-4px {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.rounded-4px-i {
    border-radius: 4px !important;
}

.rounded-l-4px-i {
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}

.rounded-r-4px-i {
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}

.rounded-t-4px-i {
    border-top-left-radius: 4px !important;
    border-top-right-radius: 4px !important;
}

.rounded-b-4px-i {
    border-bottom-right-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}

.top-4px {
    top: 4px;
}

.top-4px-i {
    top: 4px !important;
}

.bottom-4px {
    bottom: 4px;
}

.bottom-4px-i {
    bottom: 4px !important;
}

.left-4px {
    left: 4px;
}

.left-4px-i {
    left: 4px !important;
}

.right-4px {
    right: 4px;
}

.right-4px-i {
    right: 4px !important;
}

.gap-4px {
    gap: 4px;
}

.gap-x-4px {
    column-gap: 4px;
}

.gap-y-4px {
    row-gap: 4px;
}

.gap-y-4px-i {
    row-gap: 4px !important;
}

.leading-4px {
    line-height: 4px;
}

.leading-4px-i {
    line-height: 4px !important;
}

.text-4px {
    font-size: 4px;
}

.text-4px-i {
    font-size: 4px !important;
}

.p-4px {
    padding: 4px;
}

.pl-4px {
    padding-left: 4px;
}

.pl-4px-i {
    padding-left: 4px !important;
}

.pr-4px {
    padding-right: 4px;
}

.pr-4px-i {
    padding-right: 4px !important;
}

.pb-4px {
    padding-bottom: 4px;
}

.pb-4px-i {
    padding-bottom: 4px !important;
}

.pt-4px {
    padding-top: 4px;
}

.pt-4px-i {
    padding-top: 4px !important;
}

.px-4px {
    padding-left: 4px;
    padding-right: 4px;
}

.px-4px-i {
    padding-left: 4px !important;
    padding-right: 4px !important;
}

.py-4px {
    padding-top: 4px;
    padding-bottom: 4px;
}

.py-4px-i {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

.m-4px {
    margin: 4px;
}

.mt-4px {
    margin-top: 4px;
}

.mt-4px-i {
    margin-top: 4px !important;
}

.mb-4px {
    margin-bottom: 4px;
}

.mb-4px-i {
    margin-bottom: 4px !important;
}

.ml-4px {
    margin-left: 4px;
}

.ml-4px-i {
    margin-left: 4px !important;
}

.mr-4px {
    margin-right: 4px;
}

.mr-4px-i {
    margin-right: 4px !important;
}

.mx-4px {
    margin-right: 4px;
    margin-left: 4px;
}

.mx-4px-i {
    margin-right: 4px !important;
    margin-left: 4px !important;
}

.my-4px {
    margin-top: 4px;
    margin-bottom: 4px;
}

.my-4px-i {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
}

.-mt-4px {
    margin-top: -4px;
}

.-mt-4px-i {
    margin-top: -4px !important;
}

.-mb-4px {
    margin-bottom: -4px;
}

.-mb-4px-i {
    margin-bottom: -4px !important;
}

.-ml-4px {
    margin-left: -4px;
}

.-ml-4px-i {
    margin-left: -4px !important;
}

.-mr-4px {
    margin-right: -4px;
}

.-mr-4px-i {
    margin-right: -4px !important;
}

.rounded-5px {
    border-radius: 5px;
}

.rounded-l-5px {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.rounded-r-5px {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.rounded-t-5px {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.rounded-b-5px {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.rounded-5px-i {
    border-radius: 5px !important;
}

.rounded-l-5px-i {
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

.rounded-r-5px-i {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

.rounded-t-5px-i {
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
}

.rounded-b-5px-i {
    border-bottom-right-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

.top-5px {
    top: 5px;
}

.top-5px-i {
    top: 5px !important;
}

.bottom-5px {
    bottom: 5px;
}

.bottom-5px-i {
    bottom: 5px !important;
}

.left-5px {
    left: 5px;
}

.left-5px-i {
    left: 5px !important;
}

.right-5px {
    right: 5px;
}

.right-5px-i {
    right: 5px !important;
}

.gap-5px {
    gap: 5px;
}

.gap-x-5px {
    column-gap: 5px;
}

.gap-y-5px {
    row-gap: 5px;
}

.gap-y-5px-i {
    row-gap: 5px !important;
}

.leading-5px {
    line-height: 5px;
}

.leading-5px-i {
    line-height: 5px !important;
}

.text-5px {
    font-size: 5px;
}

.text-5px-i {
    font-size: 5px !important;
}

.p-5px {
    padding: 5px;
}

.pl-5px {
    padding-left: 5px;
}

.pl-5px-i {
    padding-left: 5px !important;
}

.pr-5px {
    padding-right: 5px;
}

.pr-5px-i {
    padding-right: 5px !important;
}

.pb-5px {
    padding-bottom: 5px;
}

.pb-5px-i {
    padding-bottom: 5px !important;
}

.pt-5px {
    padding-top: 5px;
}

.pt-5px-i {
    padding-top: 5px !important;
}

.px-5px {
    padding-left: 5px;
    padding-right: 5px;
}

.px-5px-i {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.py-5px {
    padding-top: 5px;
    padding-bottom: 5px;
}

.py-5px-i {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.m-5px {
    margin: 5px;
}

.mt-5px {
    margin-top: 5px;
}

.mt-5px-i {
    margin-top: 5px !important;
}

.mb-5px {
    margin-bottom: 5px;
}

.mb-5px-i {
    margin-bottom: 5px !important;
}

.ml-5px {
    margin-left: 5px;
}

.ml-5px-i {
    margin-left: 5px !important;
}

.mr-5px {
    margin-right: 5px;
}

.mr-5px-i {
    margin-right: 5px !important;
}

.mx-5px {
    margin-right: 5px;
    margin-left: 5px;
}

.mx-5px-i {
    margin-right: 5px !important;
    margin-left: 5px !important;
}

.my-5px {
    margin-top: 5px;
    margin-bottom: 5px;
}

.my-5px-i {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.-mt-5px {
    margin-top: -5px;
}

.-mt-5px-i {
    margin-top: -5px !important;
}

.-mb-5px {
    margin-bottom: -5px;
}

.-mb-5px-i {
    margin-bottom: -5px !important;
}

.-ml-5px {
    margin-left: -5px;
}

.-ml-5px-i {
    margin-left: -5px !important;
}

.-mr-5px {
    margin-right: -5px;
}

.-mr-5px-i {
    margin-right: -5px !important;
}

.rounded-6px {
    border-radius: 6px;
}

.rounded-l-6px {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.rounded-r-6px {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.rounded-t-6px {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.rounded-b-6px {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}

.rounded-6px-i {
    border-radius: 6px !important;
}

.rounded-l-6px-i {
    border-top-left-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
}

.rounded-r-6px-i {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
}

.rounded-t-6px-i {
    border-top-left-radius: 6px !important;
    border-top-right-radius: 6px !important;
}

.rounded-b-6px-i {
    border-bottom-right-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
}

.top-6px {
    top: 6px;
}

.top-6px-i {
    top: 6px !important;
}

.bottom-6px {
    bottom: 6px;
}

.bottom-6px-i {
    bottom: 6px !important;
}

.left-6px {
    left: 6px;
}

.left-6px-i {
    left: 6px !important;
}

.right-6px {
    right: 6px;
}

.right-6px-i {
    right: 6px !important;
}

.gap-6px {
    gap: 6px;
}

.gap-x-6px {
    column-gap: 6px;
}

.gap-y-6px {
    row-gap: 6px;
}

.gap-y-6px-i {
    row-gap: 6px !important;
}

.leading-6px {
    line-height: 6px;
}

.leading-6px-i {
    line-height: 6px !important;
}

.text-6px {
    font-size: 6px;
}

.text-6px-i {
    font-size: 6px !important;
}

.p-6px {
    padding: 6px;
}

.pl-6px {
    padding-left: 6px;
}

.pl-6px-i {
    padding-left: 6px !important;
}

.pr-6px {
    padding-right: 6px;
}

.pr-6px-i {
    padding-right: 6px !important;
}

.pb-6px {
    padding-bottom: 6px;
}

.pb-6px-i {
    padding-bottom: 6px !important;
}

.pt-6px {
    padding-top: 6px;
}

.pt-6px-i {
    padding-top: 6px !important;
}

.px-6px {
    padding-left: 6px;
    padding-right: 6px;
}

.px-6px-i {
    padding-left: 6px !important;
    padding-right: 6px !important;
}

.py-6px {
    padding-top: 6px;
    padding-bottom: 6px;
}

.py-6px-i {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

.m-6px {
    margin: 6px;
}

.mt-6px {
    margin-top: 6px;
}

.mt-6px-i {
    margin-top: 6px !important;
}

.mb-6px {
    margin-bottom: 6px;
}

.mb-6px-i {
    margin-bottom: 6px !important;
}

.ml-6px {
    margin-left: 6px;
}

.ml-6px-i {
    margin-left: 6px !important;
}

.mr-6px {
    margin-right: 6px;
}

.mr-6px-i {
    margin-right: 6px !important;
}

.mx-6px {
    margin-right: 6px;
    margin-left: 6px;
}

.mx-6px-i {
    margin-right: 6px !important;
    margin-left: 6px !important;
}

.my-6px {
    margin-top: 6px;
    margin-bottom: 6px;
}

.my-6px-i {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
}

.-mt-6px {
    margin-top: -6px;
}

.-mt-6px-i {
    margin-top: -6px !important;
}

.-mb-6px {
    margin-bottom: -6px;
}

.-mb-6px-i {
    margin-bottom: -6px !important;
}

.-ml-6px {
    margin-left: -6px;
}

.-ml-6px-i {
    margin-left: -6px !important;
}

.-mr-6px {
    margin-right: -6px;
}

.-mr-6px-i {
    margin-right: -6px !important;
}

.rounded-7px {
    border-radius: 7px;
}

.rounded-l-7px {
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

.rounded-r-7px {
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}

.rounded-t-7px {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.rounded-b-7px {
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
}

.rounded-7px-i {
    border-radius: 7px !important;
}

.rounded-l-7px-i {
    border-top-left-radius: 7px !important;
    border-bottom-left-radius: 7px !important;
}

.rounded-r-7px-i {
    border-top-right-radius: 7px !important;
    border-bottom-right-radius: 7px !important;
}

.rounded-t-7px-i {
    border-top-left-radius: 7px !important;
    border-top-right-radius: 7px !important;
}

.rounded-b-7px-i {
    border-bottom-right-radius: 7px !important;
    border-bottom-left-radius: 7px !important;
}

.top-7px {
    top: 7px;
}

.top-7px-i {
    top: 7px !important;
}

.bottom-7px {
    bottom: 7px;
}

.bottom-7px-i {
    bottom: 7px !important;
}

.left-7px {
    left: 7px;
}

.left-7px-i {
    left: 7px !important;
}

.right-7px {
    right: 7px;
}

.right-7px-i {
    right: 7px !important;
}

.gap-7px {
    gap: 7px;
}

.gap-x-7px {
    column-gap: 7px;
}

.gap-y-7px {
    row-gap: 7px;
}

.gap-y-7px-i {
    row-gap: 7px !important;
}

.leading-7px {
    line-height: 7px;
}

.leading-7px-i {
    line-height: 7px !important;
}

.text-7px {
    font-size: 7px;
}

.text-7px-i {
    font-size: 7px !important;
}

.p-7px {
    padding: 7px;
}

.pl-7px {
    padding-left: 7px;
}

.pl-7px-i {
    padding-left: 7px !important;
}

.pr-7px {
    padding-right: 7px;
}

.pr-7px-i {
    padding-right: 7px !important;
}

.pb-7px {
    padding-bottom: 7px;
}

.pb-7px-i {
    padding-bottom: 7px !important;
}

.pt-7px {
    padding-top: 7px;
}

.pt-7px-i {
    padding-top: 7px !important;
}

.px-7px {
    padding-left: 7px;
    padding-right: 7px;
}

.px-7px-i {
    padding-left: 7px !important;
    padding-right: 7px !important;
}

.py-7px {
    padding-top: 7px;
    padding-bottom: 7px;
}

.py-7px-i {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
}

.m-7px {
    margin: 7px;
}

.mt-7px {
    margin-top: 7px;
}

.mt-7px-i {
    margin-top: 7px !important;
}

.mb-7px {
    margin-bottom: 7px;
}

.mb-7px-i {
    margin-bottom: 7px !important;
}

.ml-7px {
    margin-left: 7px;
}

.ml-7px-i {
    margin-left: 7px !important;
}

.mr-7px {
    margin-right: 7px;
}

.mr-7px-i {
    margin-right: 7px !important;
}

.mx-7px {
    margin-right: 7px;
    margin-left: 7px;
}

.mx-7px-i {
    margin-right: 7px !important;
    margin-left: 7px !important;
}

.my-7px {
    margin-top: 7px;
    margin-bottom: 7px;
}

.my-7px-i {
    margin-top: 7px !important;
    margin-bottom: 7px !important;
}

.-mt-7px {
    margin-top: -7px;
}

.-mt-7px-i {
    margin-top: -7px !important;
}

.-mb-7px {
    margin-bottom: -7px;
}

.-mb-7px-i {
    margin-bottom: -7px !important;
}

.-ml-7px {
    margin-left: -7px;
}

.-ml-7px-i {
    margin-left: -7px !important;
}

.-mr-7px {
    margin-right: -7px;
}

.-mr-7px-i {
    margin-right: -7px !important;
}

.rounded-8px {
    border-radius: 8px;
}

.rounded-l-8px {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.rounded-r-8px {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.rounded-t-8px {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.rounded-b-8px {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.rounded-8px-i {
    border-radius: 8px !important;
}

.rounded-l-8px-i {
    border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
}

.rounded-r-8px-i {
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.rounded-t-8px-i {
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}

.rounded-b-8px-i {
    border-bottom-right-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
}

.top-8px {
    top: 8px;
}

.top-8px-i {
    top: 8px !important;
}

.bottom-8px {
    bottom: 8px;
}

.bottom-8px-i {
    bottom: 8px !important;
}

.left-8px {
    left: 8px;
}

.left-8px-i {
    left: 8px !important;
}

.right-8px {
    right: 8px;
}

.right-8px-i {
    right: 8px !important;
}

.gap-8px {
    gap: 8px;
}

.gap-x-8px {
    column-gap: 8px;
}

.gap-y-8px {
    row-gap: 8px;
}

.gap-y-8px-i {
    row-gap: 8px !important;
}

.leading-8px {
    line-height: 8px;
}

.leading-8px-i {
    line-height: 8px !important;
}

.text-8px {
    font-size: 8px;
}

.text-8px-i {
    font-size: 8px !important;
}

.p-8px {
    padding: 8px;
}

.pl-8px {
    padding-left: 8px;
}

.pl-8px-i {
    padding-left: 8px !important;
}

.pr-8px {
    padding-right: 8px;
}

.pr-8px-i {
    padding-right: 8px !important;
}

.pb-8px {
    padding-bottom: 8px;
}

.pb-8px-i {
    padding-bottom: 8px !important;
}

.pt-8px {
    padding-top: 8px;
}

.pt-8px-i {
    padding-top: 8px !important;
}

.px-8px {
    padding-left: 8px;
    padding-right: 8px;
}

.px-8px-i {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.py-8px {
    padding-top: 8px;
    padding-bottom: 8px;
}

.py-8px-i {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.m-8px {
    margin: 8px;
}

.mt-8px {
    margin-top: 8px;
}

.mt-8px-i {
    margin-top: 8px !important;
}

.mb-8px {
    margin-bottom: 8px;
}

.mb-8px-i {
    margin-bottom: 8px !important;
}

.ml-8px {
    margin-left: 8px;
}

.ml-8px-i {
    margin-left: 8px !important;
}

.mr-8px {
    margin-right: 8px;
}

.mr-8px-i {
    margin-right: 8px !important;
}

.mx-8px {
    margin-right: 8px;
    margin-left: 8px;
}

.mx-8px-i {
    margin-right: 8px !important;
    margin-left: 8px !important;
}

.my-8px {
    margin-top: 8px;
    margin-bottom: 8px;
}

.my-8px-i {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
}

.-mt-8px {
    margin-top: -8px;
}

.-mt-8px-i {
    margin-top: -8px !important;
}

.-mb-8px {
    margin-bottom: -8px;
}

.-mb-8px-i {
    margin-bottom: -8px !important;
}

.-ml-8px {
    margin-left: -8px;
}

.-ml-8px-i {
    margin-left: -8px !important;
}

.-mr-8px {
    margin-right: -8px;
}

.-mr-8px-i {
    margin-right: -8px !important;
}
