html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #F4F4F3
}

footer {
    min-height: 60px;
    margin-top: auto;
}

.max-content-width {
    width: max-content;
}

.dropdown {
    --bs-nav-link-padding-x: 0;
}

.hidden {
    display: none;
}

@media (max-width: 1024px) {
    .navbar-collapse + .navbar-nav {
        display: none;
    }

    .navbar-collapse.show + .navbar-nav {
        display: block;
    }
}

.product-image-edit {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #bbb9b9;
}

.home img.banner {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.cut-text-2 {
    height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.cut-text-3 {
    height: 73px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
}

body #toast-container > div {
    opacity: 1;
}

button.btn-right {
    float: right;
}

td > div.no-overflow {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.container-max {
    width: 1800px;
}

#deleteOrderPopUp {
    text-align: center;
    background-color: #fff;
    border-radius: 15px;
    color: #000;
    display: none;
    padding: 20px;
    width: 400px;
    min-height: 180px;
}

.categories-dropdown {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-color: white;
    --bs-nav-link-hover-color: white;
    background-color: #2c3e50;
    border-radius: 0.375rem;
}