@import url("https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,400,400italic,500,500italic,700,700italic,900,900italic");

body {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #EEEEEE;
}


.font-italic {
    font-style: italic;
}

.clearboth {
    clear: both;
}

/* Margins */
.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Fontweight */
.fw-0 {
    font-weight: unset;
}

.AppWrapper {
    /*display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 100vh;*/
}

.AppWrapper-header {
    flex: 0 0 auto;
    display: none;
    flex-direction: row;
    padding: 10px;
    background-color: #FFFFFF;
    color: #696969;
    font-size: 1.5em;
    font-weight: 300;
    border-top: 1px solid #696969;
    border-bottom: 1px solid #9c9c9c;
    height: 80px;
}

.AppWrapper-header-logo {
    flex: 0 0 auto;
    max-height: 45px;
}

.AppWrapper-header-desc {
    flex: 1 0 auto;
    width: 1px;
    margin-left: 25px;
    margin-right: 25px;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    font-weight: 200;
    overflow: hidden;
}

.AppWrapper-header-desc span {
    color: #9c9c9c;
}

.AppWrapper-header-desc span:hover {
    text-decoration: underline;
    color: #838383;
}

.AppWrapper-header-tools {
    margin-top: 5px;
    flex: 0 0 auto;
    height: 45px;
    line-height: 45px;
}

.AppWrapper-header-tools a {
    font-size: 15px;
}

.AppWrapper-header::after {
    content: " ";
    display: table;
    clear: both;
}

.AppWrapper-main {
    /*    display: flex;
        display: -webkit-flex;
        -webkit-flex-grow: 1;
        flex-grow: 1;*/
    display: flex;
    flex-grow: 1;
}

.AppWrapper-footer {
    display: none;
    padding: 5px;
    background-color: #696969;
    color: #FFFAF0;
    font-size: 0.9em;
    font-weight: 300;
}

.LoginBox {
    width: 500px;
    margin: 40px auto 0px auto;
    padding: 15px;
    background-color: #FFFFFF;
    border: 1px solid #696969;
    height: 450px;
}

.LoginBox h2 {
    font-weight: lighter;
}


.ProductCategories {
    width: 225px;
    min-width: 225px;
    background: #838383;
    overflow-y: auto;
    height: calc(100vh - 100px);
}

.ProductCategories-loading {
    color: #FFFAF0;
    padding: 10px;
}

.ProductCategories-category {
    padding: 10px;
    color: #FFFAF0;
    font-size: 1.2em;
    font-weight: 300;
    border-bottom: 1px solid #9c9c9c;
    cursor: pointer;
}

.ProductCategories-category:last-child {
    border-bottom: none;
}

.ProductCategories-category-name {
    float: left;
    max-width: 160px;
}

.ProductCategories-category-name:hover {
    text-decoration: underline;
}

.ProductCategories-category-arrow {
    float: right;
}

.ProductCategories-category::after {
    content: " ";
    display: table;
    clear: both;
}

.ProductCategories-subcategory {
    padding: 2px 0px;
    margin-left: 10px;
    color: #fff7e6;
    font-size: 0.9em;
    font-weight: 300;
    cursor: pointer;
}

.ProductCategories-subcategory:last-child {
    border-bottom: none;
}

.ProductCategories-subcategory-name {
    float: left;
    max-width: 180px;
}

.ProductCategories-subcategory-name:hover {
    text-decoration: underline;
}

.ProductCategories-subcategory-name::before {
    display: inline-block;
    content: '';
    -webkit-border-radius: 0.5rem;
    border-radius: 0.5rem;
    height: 1rem;
    width: 1rem;
    margin-right: 0.5rem;
    background-color: #bdbdbd;
}

.ProductCategories-subcategory-arrow {
    float: right;
}

.ProductCategories-subcategory::after {
    content: " ";
    display: table;
    clear: both;
}

.ProductList {
    min-width: 300px;
    background: tint(#696969, 40%);
    padding: 10px;
    flex: 1;
    overflow-y: auto;
    height: calc(100vh - 100px);
}

.ProductList-header {
    background: tint(#696969, 40%);
    font-size: 1.5em;
    padding: 10px;
    font-weight: 300;
    color: #FFFAF0;
    border: 2px outset #C0C0C0;
}

.ProductList-wrapper {
    margin-top: 15px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ProductList-wrapper-product {
    position: relative;
    flex: 0 0 150px;
    height: 185px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 2px solid #b6b6b6;
    cursor: pointer;
    background-color: #FFFFFF;
}

.ProductList-wrapper-product-img {
    position: relative;
    height: 110px;
    background-repeat: no-repeat;
    background-size: cover;
}

.ProductList-wrapper-product-img-price {
    position: absolute;
    right: 0px;
    width: 90px;
    background: #778899;
    opacity: 1;
    color: #FFFAF0;
    text-align: center;
    padding: 5px;
}

.ProductList-wrapper-product-img-price .popover-content {
    width: 250px;
    color: black;
}

.ProductList-wrapper-product-img-stock {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 40px;
    background: #abb8c5;
    opacity: 1;
    color: #FFFAF0;
    text-align: center;
    padding: 2px;
}

.ProductList-wrapper-product-img-stock:hover {
    background: #94a2af;
}

/* Loading spinner for stock data */
.ProductList-wrapper-product-img-stock .fa-spinner {
    font-size: 14px;
    color: #FFFAF0;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ProductList-wrapper-product-img-location-stock {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 40px;
    background: #778899;
    opacity: 1;
    color: #FFFAF0;
    text-align: center;
    padding: 2px;
}

.ProductList-wrapper-product-img-location-stock:hover {
    background: #afbdcc;
}

.ProductList-wrapper-product-desc {
    width: 100%;
    max-width: 146px;
    height: 70px;
    overflow: hidden;
    background: white;
    opacity: 1;
    text-align: center;
    padding: 5px;
    border-top: 1px solid #b6b6b6;
}

.ProductList-wrapper-separator {
    display: block;
    width: 100%;
}

.ProductList-wrapper-separator h3 {
    font-weight: lighter;
    margin-top: 15px;
    margin-bottom: 5px;
}

.ProductList-wrapper-separator hr {
    border-top: 1px solid #696969;
    margin-top: 0px;
}

.ProductEnquiry {
    max-height: 500px;
    overflow-y: auto;
}

.ProductEnquiry-searchLine {
    padding: 15px 0px;
    border-bottom: 1px dashed #FFFAF0;
    font-size: 0.9em;
    cursor: pointer;
}

.ProductEnquiry-searchLine-picture {
    float: left;
    position: relative;
    width: 75px;
    margin-right: 10px;
    border: 1px solid #FFFAF0;
    height: 56px;
    background-repeat: no-repeat;
    background-size: cover;
}

.ProductEnquiry-searchLine-name {
    float: left;
    max-width: 275px;
    margin-right: 10px;
    font-size: 1.3em;
}

.ProductEnquiry-searchLine-price {
    float: right;
    font-size: 1.4em;
}

.ProductEnquiry-searchLine::after {
    content: " ";
    display: table;
    clear: both;
}

.Sale {
    width: 350px;
    min-width: 350px;
    background: #e9e9e9;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    height: calc(100vh - 100px);

}

.Sale-wrapper {
    padding: 10px 10px 60px 10px;
    position: relative;
    min-height: 100%;
}

.Sale-customer {
    padding: 10px;
    border: 1px solid #FFFAF0;
    font-size: 1.2em;
    font-weight: 300;
    background: #696969;
    color: #FFFFFF;
}

.Sale-customer-name {
    margin-top: 5px;
    float: left;
}

.Sale-customer-delete {
    float: right;
}

.Sale-customer::after {
    content: " ";
    display: table;
    clear: both;
}

.Sale-orderItem {
    padding: 10px;
    margin-top: 10px;
    height: 250px;
    border: 1px outset #e9e9e9;
    overflow-y: auto;
}

.Sale-orderItem-empty {
    font-size: 1.2em;
    font-weight: 300;
    color: #b6b6b6;
}

.Sale-orderItem-line {
    padding: 15px 0px;
    border-bottom: 1px dashed #FFFAF0;
    font-size: 0.9em;
}

.Sale-orderItem-line-picture {
    float: left;
    position: relative;
    width: 75px;
    margin-right: 10px;
    border: 1px solid #FFFAF0;
    height: 56px;
    background-repeat: no-repeat;
    background-size: cover;
}

.Sale-orderItem-line-picture-quantity {
    position: absolute;
    right: -8px;
    top: -8px;
    border-radius: 50%;
    background: #696969;
    color: #FFFFFF;
    opacity: 0.8;
    text-align: center;
    width: 24px;
    height: 24px;
    line-height: 24px;
}

.Sale-orderItem-line-name {
    float: left;
    max-width: 85px;
    margin-right: 10px;
}

.Sale-orderItem-line-price {
    float: right;
    font-size: 1em;
}

.Sale-orderItem-line-assoc {
    display: block;
    clear: both;
    padding: 10px 0px;
    color: #696969;
    font-size: 90%;
}

.Sale-orderItem-line-assoc p {
    margin-bottom: 2px;
}

.Sale-orderItem-line::after {
    content: " ";
    display: table;
    clear: both;
}

.Sale-total {
    padding: 10px;
    border-bottom: 1px solid #FFFAF0;
}

.Sale-total-desc {
    float: left;
}

.Sale-total-amount {
    float: right;
    font-weight: 600;
}

.Sale-total::after {
    content: " ";
    display: table;
    clear: both;
}

.Sale-payment {
    position: absolute;
    bottom: 10px;
    padding: 0px 10px;
    left: 0;
    right: 0;
}

.SaleTender {
    width: 375px;
    min-width: 375px;
    background: #e9e9e9;
    padding: 10px;
    overflow-y: auto;
    height: calc(100vh - 100px);
}

.SaleTender-total {
    padding: 10px;
    border-bottom: 1px solid #FFFAF0;
}

.SaleTender-total-desc {
    float: left;
}

.SaleTender-total-amount {
    float: right;
    font-weight: 600;
}

.SaleTender-total::after {
    content: " ";
    display: table;
    clear: both;
}

.SaleTender-payment {
    font-size: 1.2em;
    font-weight: 600;
    border: 1px solid #696969;
    margin-top: 15px;
}

.SaleTender-payments {
    margin-top: 15px;
}

.SaleTenderPayment {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    min-width: 450px;
    background: tint(#696969, 40%);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
    overflow-y: auto;
    height: calc(100vh - 100px);
}

.SaleTenderPayment h1, .SaleTenderPayment h2, .SaleTenderPayment h3, .SaleTenderPayment p {
    font-weight: 300;
}

.SaleTenderPayment-amount {
    border: 3px solid black;
    background-color: #9c9c9c;
    color: #FFFAF0;
    padding: 10px;
    font-size: 3.0em;
    font-weight: 500;
    width: 300px;
    text-align: center;
}

.SaleTenderPayment-staff {
    width: 300px;
    margin: 10px auto;
    font-size: 1.5em;
    display: block;
}

.SaleTenderPayment-button button {
    padding: 10px 45px;
    border: 3px solid #FFFAF0;
}

.SaleTenderPayment-button button:first-child {
    margin-right: 25px;
}

.Customer {
    max-height: 500px;
    overflow-y: auto;
}

.Customer-loading {
    padding: 10px;
}

.Customer .table tbody tr {
    cursor: pointer;
}

.Customer-filter {
    background: #e9e9e9;
}

.SaleRecall {
    max-height: 500px;
    min-height: 500px;
    overflow-y: auto;
}

.SaleRecall-loading {
    padding: 10px;
}

.SaleRecall .table tbody tr {
    cursor: pointer;
}

.SaleRecall-filter {
    background: #e9e9e9;
}

.Discount-loading,
.Giftcard-loading {
    color: #696969;
    padding: 10px;
}

.Discount-searchBox,
.Giftcard-searchBox {
    margin-bottom: 15px;
}

.Discount-searchBox-prefix,
.Giftcard-searchBox-prefix {
    width: 50px !important;
}

.Discount-searchBox-code,
.Giftcard-searchBox-code {
    width: 200px !important;
}

.Discount-searchBox-button,
.Giftcard-searchBox-button {
    width: auto;
}

.Discount-detail .row,
.Giftcard-detail .row {
    border-bottom: 1px dashed #cfcfcf;
    padding: 10px 0px;
}

.customanim.ng-move,
.customanim.ng-enter {
    -webkit-transition: all linear 0.5s;
    transition: all linear 0.5s;
}

.customanim.ng-move,
.customanim.ng-enter {
    opacity: 0;
}

.customanim.ng-move.ng-move-active,
.customanim.ng-enter.ng-enter-active {
    opacity: 1;
}

@-webkit-keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.ticker-wrap {
    overflow: hidden;
    height: 4rem;
    padding-left: 100%;
    box-sizing: content-box;
}

.ticker-wrap .ticker {
    display: inline-block;
    height: 4rem;
    line-height: 4rem;
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: ticker;
    animation-name: ticker;
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
}

.ticker-wrap .ticker:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

.ticker-wrap .ticker__item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 2rem;
    cursor: pointer;
}

.ticker-wrap .ticker__item:hover {
    color: blue;
}

/*# sourceMappingURL=style.css.map */

.nav-tabs {
    display: flex;
    list-style: none;
    padding: 0;
}
.nav-item {
    margin-right: 10px;
}
.nav-link {
    padding: 10px;
    cursor: pointer;
    border: 2px solid #ddd;
}
.nav-link:hover {
    background-color: #f9f9f9;
}
.nav-link.active {
    background-color: #eee;
    border-bottom: 2px solid blue;
}

#backToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 50%; /* Adjust this to center the button in the middle div */
    transform: translateX(50%); /* Offset the right positioning */
    z-index: 99;
    font-size: 18px;
    border: none;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    display: none; /* Controlled by AngularJS */
}

#backToTopBtn:hover {
    opacity: 1; /* Fully opaque on hover */
}

.checkbox-large {
    transform: scale(1.5); /* Adjust scaling factor as needed */
    margin: 10px; /* Optional: add some margin for better spacing */
}


/* Default button styling with lighter background */
.btn-primary-mw {
    background-color: #cce5ff; /* Light blue, adjust as necessary */
    color: #004085; /* Text color for light blue background */
    border-color: #b8daff; /* Slightly darker border for the button */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for background and text color */
}

/* Styling for selected button with darker background */
.btn-primary-mw.selected {
    background-color: #007bff; /* Darker blue, typical Bootstrap primary button color */
    color: #ffffff; /* White text color for contrast */
    border-color: #0056b3; /* Darker border to match */
}


/* region Tailwind */
.justify-start {
    justify-content: flex-start;
}
.justify-center {
    justify-content: center;
}
.justify-end {
    justify-content: flex-end;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}

.items-start {
    align-items: flex-start;
}
.items-center {
    align-items: center;
}
.items-end {
    align-items: flex-end;
}
.flex-row {
    flex-direction: row;
}
.flex-col {
    flex-direction: column;
}
.flex {
    display: flex;
}
.flex-1 {
    flex: 1;
}
.flex-grow {
    flex-grow: 1;
}
.flex-wrap {
    flex-wrap: wrap;

}

/* Gap classes, where each step is 4px */
.gap-1 {
    gap: 4px; /* 4px */
}

.gap-2 {
    gap: 8px; /* 8px = 4px * 2 */
}

.gap-3 {
    gap: 12px; /* 12px = 4px * 3 */
}

.gap-4 {
    gap: 16px; /* 16px = 4px * 4 */
}

.gap-5 {
    gap: 20px; /* 20px = 4px * 5 */
}

.gap-6 {
    gap: 24px; /* 24px = 4px * 6 */
}

.gap-7 {
    gap: 28px; /* 28px = 4px * 7 */
}

.gap-8 {
    gap: 32px; /* 32px = 4px * 8 */
}

/* General margins */
.m-0 { margin: 0; }
.m-1 { margin: 4px; }
.m-2 { margin: 8px; }
.m-3 { margin: 12px; }
.m-4 { margin: 16px; }
.m-5 { margin: 20px; }
.m-6 { margin: 24px; }

/* Top margins */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mt-6 { margin-top: 24px; }

/* Right margins */
.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 4px; }
.mr-2 { margin-right: 8px; }
.mr-3 { margin-right: 12px; }
.mr-4 { margin-right: 16px; }
.mr-5 { margin-right: 20px; }
.mr-6 { margin-right: 24px; }

/* Bottom margins */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 20px; }
.mb-6 { margin-bottom: 24px; }

/* Left margins */
.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 4px; }
.ml-2 { margin-left: 8px; }
.ml-3 { margin-left: 12px; }
.ml-4 { margin-left: 16px; }
.ml-5 { margin-left: 20px; }
.ml-6 { margin-left: 24px; }

/* Vertical margins */
.my-0 { margin-top: 0; margin-bottom: 0; }
.my-1 { margin-top: 4px; margin-bottom: 4px; }
.my-2 { margin-top: 8px; margin-bottom: 8px; }
.my-3 { margin-top: 12px; margin-bottom: 12px; }
.my-4 { margin-top: 16px; margin-bottom: 16px; }
.my-5 { margin-top: 20px; margin-bottom: 20px; }
.my-6 { margin-top: 24px; margin-bottom: 24px; }

/* Horizontal margins */
.mx-0 { margin-left: 0; margin-right: 0; }
.mx-1 { margin-left: 4px; margin-right: 4px; }
.mx-2 { margin-left: 8px; margin-right: 8px; }
.mx-3 { margin-left: 12px; margin-right: 12px; }
.mx-4 { margin-left: 16px; margin-right: 16px; }
.mx-5 { margin-left: 20px; margin-right: 20px; }
.mx-6 { margin-left: 24px; margin-right: 24px; }

/* General padding */
.p-0 { padding: 0; }
.p-1 { padding: 4px; }
.p-2 { padding: 8px; }
.p-3 { padding: 12px; }
.p-4 { padding: 16px; }
.p-5 { padding: 20px; }
.p-6 { padding: 24px; }

/* Top padding */
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 4px; }
.pt-2 { padding-top: 8px; }
.pt-3 { padding-top: 12px; }
.pt-4 { padding-top: 16px; }
.pt-5 { padding-top: 20px; }
.pt-6 { padding-top: 24px; }

/* Right padding */
.pr-0 { padding-right: 0; }
.pr-1 { padding-right: 4px; }
.pr-2 { padding-right: 8px; }
.pr-3 { padding-right: 12px; }
.pr-4 { padding-right: 16px; }
.pr-5 { padding-right: 20px; }
.pr-6 { padding-right: 24px; }

/* Bottom padding */
.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 4px; }
.pb-2 { padding-bottom: 8px; }
.pb-3 { padding-bottom: 12px; }
.pb-4 { padding-bottom: 16px; }
.pb-5 { padding-bottom: 20px; }
.pb-6 { padding-bottom: 24px; }

/* Left padding */
.pl-0 { padding-left: 0; }
.pl-1 { padding-left: 4px; }
.pl-2 { padding-left: 8px; }
.pl-3 { padding-left: 12px; }
.pl-4 { padding-left: 16px; }
.pl-5 { padding-left: 20px; }
.pl-6 { padding-left: 24px; }

/* Vertical padding */
.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 4px; padding-bottom: 4px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-5 { padding-top: 20px; padding-bottom: 20px; }
.py-6 { padding-top: 24px; padding-bottom: 24px; }

/* Horizontal padding */
.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 4px; padding-right: 4px; }
.px-2 { padding-left: 8px; padding-right: 8px; }
.px-3 { padding-left: 12px; padding-right: 12px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.px-5 { padding-left: 20px; padding-right: 20px; }
.px-6 { padding-left: 24px; padding-right: 24px; }

/* Widths */
.w-1 { width: 0.25rem; } /* 4px */
.w-2 { width: 0.5rem; }  /* 8px */
.w-3 { width: 0.75rem; } /* 12px */
.w-4 { width: 1rem; }    /* 16px */
.w-5 { width: 1.25rem; } /* 20px */
.w-6 { width: 1.5rem; }  /* 24px */
.w-8 { width: 2rem; }    /* 32px */
.w-10 { width: 2.5rem; } /* 40px */
.w-12 { width: 3rem; }   /* 48px */
.w-16 { width: 4rem; }   /* 64px */
.w-20 { width: 5rem; }   /* 80px */
.w-24 { width: 6rem; }   /* 96px */
.w-32 { width: 8rem; }   /* 128px */
.w-40 { width: 10rem; }  /* 160px */
.w-48 { width: 12rem; }  /* 192px */
.w-56 { width: 14rem; }  /* 224px */
.w-64 { width: 16rem; }  /* 256px */
.w-auto { width: auto; }
.w-full { width: 100%; }
.w-screen { width: 100vw; }

/* Heights */
.h-1 { height: 0.25rem; } /* 4px */
.h-2 { height: 0.5rem; }  /* 8px */
.h-3 { height: 0.75rem; } /* 12px */
.h-4 { height: 1rem; }    /* 16px */
.h-5 { height: 1.25rem; } /* 20px */
.h-6 { height: 1.5rem; }  /* 24px */
.h-8 { height: 2rem; }    /* 32px */
.h-10 { height: 2.5rem; } /* 40px */
.h-12 { height: 3rem; }   /* 48px */
.h-16 { height: 4rem; }   /* 64px */
.h-20 { height: 5rem; }   /* 80px */
.h-24 { height: 6rem; }   /* 96px */
.h-32 { height: 8rem; }   /* 128px */
.h-40 { height: 10rem; }  /* 160px */
.h-48 { height: 12rem; }  /* 192px */
.h-56 { height: 14rem; }  /* 224px */
.h-64 { height: 16rem; }  /* 256px */
.h-auto { height: auto; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }


/* endregion */