/* Reservado para estilos propios del sistema. El layout consume los assets originales de Cork. */

.auth-split-body {
    background: #fff;
}

.auth-split-page {
    align-items: stretch;
    display: flex;
    justify-content: stretch;
    min-height: 100vh;
    padding: 0;
}

.auth-split-shell {
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 100vh;
    overflow: hidden;
    width: 100%;
}

.auth-visual-panel {
    background-image: url("../template/cork/src/assets/img/pages/auth/bg-auth3.jpg");
    background-position: center;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: clamp(30px, 5vw, 64px);
    position: relative;
}

.auth-visual-panel::before {
    background: linear-gradient(135deg, rgba(22, 28, 45, 0.72), rgba(67, 97, 238, 0.4));
    content: "";
    inset: 0;
    position: absolute;
}

.auth-visual-logo,
.auth-visual-content,
.auth-visual-footer {
    position: relative;
}

.auth-visual-logo {
    align-items: center;
    color: #fff;
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    gap: 8px;
    line-height: 1;
    text-decoration: none;
    width: fit-content;
}

.auth-visual-logo:hover {
    color: #fff;
}

.auth-visual-logo img {
    height: 28px;
    width: 28px;
}

.auth-visual-content {
    margin: auto 0;
    text-align: center;
}

.auth-visual-badge {
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    display: inline-flex;
    height: 170px;
    justify-content: center;
    margin-bottom: 28px;
    padding: 18px;
    width: 170px;
}

.auth-visual-icon {
    display: block;
    max-height: 118px;
    max-width: 118px;
    object-fit: contain;
}

.auth-visual-content h1 {
    color: #fff;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.auth-visual-content p,
.auth-visual-footer {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    margin: 0;
}

.auth-visual-footer {
    font-size: 12px;
    text-align: center;
}

.auth-form-panel {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: clamp(30px, 6vw, 88px);
}

.auth-form-card {
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    width: min(460px, 100%);
}

.auth-form-card-register {
    padding-bottom: 30px;
    padding-top: 30px;
}

.auth-form-card h2 {
    color: #1f2a44;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.auth-form-card p {
    color: #7d879c;
    font-size: 13px;
}

.auth-form-card .form-label {
    color: #3d4865;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.auth-form-card .form-control,
.auth-form-card .form-select {
    border-color: #dfe5f1;
    border-radius: 4px;
    color: #1f2a44;
    min-height: 42px;
}

.auth-form-card .form-control:focus,
.auth-form-card .form-select:focus {
    border-color: #4361ee;
    box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.12);
}

.auth-password-group .form-control {
    border-right: 0;
}

.auth-password-toggle {
    border-color: #dfe5f1;
    border-left: 0;
    color: #7d879c;
    min-width: 44px;
}

.auth-password-toggle:hover,
.auth-password-toggle:focus {
    background: #f7f8fb;
    border-color: #dfe5f1;
    color: #4361ee;
}

.auth-form-card .btn-primary {
    background: #4361ee;
    border-color: #4361ee;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.22);
    font-weight: 700;
    min-height: 42px;
}

.auth-form-card .btn-primary:hover,
.auth-form-card .btn-primary:focus {
    background: #3651d4;
    border-color: #3651d4;
}

.auth-inline-link,
.auth-small-link a {
    color: #4361ee;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.auth-inline-link:hover,
.auth-small-link a:hover {
    color: #2942be;
}

.auth-form-card .form-check-input {
    border-color: #dfe5f1;
}

.auth-form-card .form-check-label {
    color: #4b556f;
    font-size: 12px;
}

@media (max-width: 991.98px) {
    .auth-split-page {
        padding: 0;
    }

    .auth-split-shell {
        grid-template-columns: 1fr;
        min-height: 100vh;
    }

    .auth-visual-panel {
        min-height: 320px;
        padding: 28px;
    }

    .auth-visual-badge {
        height: 120px;
        margin-bottom: 18px;
        width: 120px;
    }

    .auth-visual-icon {
        max-height: 94px;
        max-width: 94px;
    }

    .auth-form-panel {
        min-height: auto;
        padding: 28px;
    }
}

@media (max-width: 575.98px) {
    .auth-split-page {
        padding: 0;
    }

    .auth-split-shell {
        border: 0;
        border-radius: 0;
        min-height: 100vh;
    }

    .auth-visual-panel {
        min-height: 280px;
        padding: 22px;
    }

    .auth-visual-content h1 {
        font-size: 22px;
    }

    .auth-form-panel {
        padding: 22px 16px 30px;
    }

    .auth-form-card {
        border: 0;
        box-shadow: none;
        padding: 0;
    }
}

.branch-switch-dropdown .dropdown-menu {
    min-width: 250px;
}

.branch-switch-toggle {
    align-items: center;
    background: #f6f8ff;
    border: 1px solid #e0e6f7;
    border-radius: 999px;
    display: inline-flex;
    gap: 8px;
    min-height: 38px;
    padding: 5px 12px 5px 6px;
}

.branch-switch-logo {
    background: #fff;
    border: 1px solid #e5eaf7;
    border-radius: 50%;
    flex: 0 0 30px;
    height: 30px !important;
    max-height: 30px !important;
    max-width: 30px !important;
    object-fit: cover;
    padding: 3px;
    width: 30px !important;
}

.branch-switch-name {
    color: #26315f;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.branch-switch-current {
    align-items: center;
    display: flex;
    gap: 10px;
}

.branch-switch-current img {
    border: 1px solid #e5eaf7;
    border-radius: 10px;
    flex: 0 0 38px;
    height: 38px !important;
    max-height: 38px !important;
    max-width: 38px !important;
    object-fit: cover;
    padding: 4px;
    width: 38px !important;
}

#accordionExample .menu > a.dropdown-toggle {
    overflow: visible;
}

#accordionExample .menu > a.dropdown-toggle > div:first-child {
    align-items: center;
    display: flex;
    min-width: 0;
}

#accordionExample .menu > a.dropdown-toggle svg {
    flex: 0 0 22px;
    height: 22px !important;
    overflow: visible;
    width: 22px !important;
}

.main-container.sidebar-closed .sidebar-wrapper:not(:hover) #accordionExample.menu-categories {
    align-items: center;
    overflow-x: visible !important;
}

.main-container.sidebar-closed .sidebar-wrapper:not(:hover) #accordionExample .menu {
    width: 100%;
}

.main-container.sidebar-closed .sidebar-wrapper:not(:hover) #accordionExample .menu > a.dropdown-toggle {
    align-items: center;
    display: flex;
    height: 46px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 52px;
}

.main-container.sidebar-closed .sidebar-wrapper:not(:hover) #accordionExample .menu > a.dropdown-toggle > div:first-child {
    justify-content: center;
}

.main-container.sidebar-closed .sidebar-wrapper:not(:hover) #accordionExample .menu > a.dropdown-toggle span,
.main-container.sidebar-closed .sidebar-wrapper:not(:hover) #accordionExample .menu > a.dropdown-toggle > div:last-child {
    display: none !important;
}

.main-container.sidebar-closed .sidebar-wrapper:not(:hover) #accordionExample .menu > a.dropdown-toggle svg {
    margin: 0 !important;
}

#sidebar {
    display: flex;
    flex-direction: column;
}

#accordionExample.menu-categories {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

#accordionExample .menu-logout {
    margin-top: auto;
}

#accordionExample .menu-logout > a {
    color: #e7515a;
}

.theme-brand .sidebarCollapse svg {
    color: #515365;
}

@media (min-width: 992px) {
    body:not(.alt-menu) .main-container.sidebar-closed .sidebar-wrapper {
        left: 0 !important;
        width: 84px !important;
    }

    body:not(.alt-menu) .main-container.sidebar-closed #content {
        margin-left: 84px !important;
        width: calc(100% - 84px) !important;
    }

    body:not(.alt-menu) .main-container.sidebar-closed .theme-brand {
        width: 84px !important;
    }
}

@media (max-width: 575.98px) {
    .branch-switch-name {
        max-width: 110px;
    }
}

.required-marker {
    color: #e7515a;
    font-weight: 700;
}

.print-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    margin-bottom: 18px;
}

.ks-print-ticket,
.ks-print-a4 {
    background: #fff;
    color: #111827;
    margin: 0 auto;
}

.ks-print-ticket {
    border: 1px dashed #cbd5e1;
    font-family: "Consolas", "Courier New", monospace;
    max-width: 360px;
    padding: 14px;
}

.ks-print-a4 {
    border: 1px solid #e5e7eb;
    max-width: 900px;
    padding: 26px;
}

.ks-print-logo {
    height: 48px;
    max-width: 96px;
    object-fit: contain;
}

.ks-print-ticket .ks-print-logo {
    height: 44px;
    margin-bottom: 8px;
    max-width: 88px;
}

.ks-print-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.ks-print-muted {
    color: #64748b;
    font-size: 12px;
}

.ks-print-separator {
    border-top: 1px dashed #94a3b8;
    margin: 10px 0;
}

.ks-print-ticket table,
.ks-print-a4 table {
    margin-bottom: 0;
    width: 100%;
}

.ks-print-ticket th,
.ks-print-ticket td {
    font-size: 12px;
    padding: 3px 0;
    vertical-align: top;
}

.ks-print-a4 th,
.ks-print-a4 td {
    font-size: 13px;
    padding: 6px 8px;
    vertical-align: top;
}

.ks-print-block {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 12px;
}

@media print {
    body {
        background: #fff !important;
    }

    .header-container,
    .sidebar-wrapper,
    .footer-wrapper,
    .theme-customizer-trigger,
    .theme-customizor-container,
    .print-toolbar {
        display: none !important;
    }

    .main-container,
    #content,
    .main-content,
    .layout-px-spacing,
    .middle-content {
        margin: 0 !important;
        max-width: none !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .ks-print-ticket,
    .ks-print-a4 {
        border: 0;
        box-shadow: none;
        margin: 0 auto;
    }

    .ks-print-ticket {
        max-width: 80mm;
        padding: 0;
        width: 80mm;
    }

    .ks-print-a4 {
        max-width: 100%;
        padding: 0;
    }
}

.ks-tabs-with-badges .nav-link {
    align-items: center;
    display: inline-flex;
}

.ks-tabs-with-badges .nav-link.active .badge {
    background: #4361ee;
    color: #fff;
}

.ks-product-thumb {
    background: #f7f8fb;
    height: 56px;
    object-fit: cover;
    width: 56px;
}

.branch-select-page {
    background: #fbfbfd;
    color: #1f2a44;
    min-height: 100vh;
    padding: 26px 30px 22px;
}

.branch-select-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.branch-select-brand,
.branch-select-user {
    align-items: center;
    display: inline-flex;
}

.branch-select-brand {
    color: #1f2a44;
    font-size: 22px;
    font-weight: 800;
    gap: 12px;
    text-decoration: none;
}

.branch-select-brand:hover {
    color: #1f2a44;
}

.branch-select-brand img {
    height: 34px;
    width: 34px;
}

.branch-select-user {
    color: #7d879c;
    gap: 10px;
}

.branch-select-user img {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(31, 42, 68, 0.08);
    height: 42px;
    object-fit: cover;
    width: 42px;
}

.branch-select-user strong {
    color: #4361ee;
}

.branch-select-user a {
    color: #7d879c;
}

.branch-select-nav {
    align-items: center;
    background: #2f4770;
    border-radius: 6px;
    color: #ffb000;
    display: flex;
    font-size: 13px;
    font-weight: 800;
    gap: 8px;
    margin-bottom: 22px;
    min-height: 50px;
    padding: 0 18px;
}

.branch-select-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(290px, 0.9fr) minmax(0, 1.9fr);
}

.branch-profile-card,
.branch-list-card {
    background: #fff;
    border: 1px solid #e6e9f0;
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(94, 92, 154, 0.07);
    min-height: 520px;
    padding: 30px;
}

.branch-card-title h2 {
    color: #1f2a44;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 3px;
}

.branch-card-title span {
    background: #4361ee;
    display: block;
    height: 2px;
    margin-bottom: 36px;
    width: 40px;
}

.branch-profile-card {
    text-align: center;
}

.branch-profile-card .branch-card-title {
    text-align: left;
}

.branch-profile-image {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(31, 42, 68, 0.18);
    display: block;
    height: 184px;
    margin: 0 auto 26px;
    object-fit: cover;
    width: 184px;
}

.branch-profile-card h3 {
    color: #4361ee;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.branch-profile-list {
    display: grid;
    gap: 17px;
    list-style: none;
    margin: 0 auto;
    max-width: 270px;
    padding: 0;
    text-align: left;
}

.branch-profile-list li {
    align-items: center;
    color: #7d879c;
    display: grid;
    gap: 12px;
    grid-template-columns: 24px minmax(0, 1fr);
}

.branch-profile-list svg {
    color: #8c96b3;
}

.branch-select-table {
    border: 1px solid #e6e9f0;
    margin-bottom: 0;
}

.branch-select-table thead th {
    border-color: #e6e9f0;
    color: #4361ee;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 17px 14px;
    text-transform: uppercase;
}

.branch-select-table tbody td {
    border-color: #e6e9f0;
    color: #3d4865;
    font-size: 13px;
    height: 126px;
    padding: 16px 14px;
}

.branch-table-logo {
    background: #f7f8fb;
    border-radius: 6px;
    height: 54px;
    object-fit: contain;
    width: 80px;
}

.branch-select-table .btn-icon.btn-outline-success {
    background: #fff;
    border-color: #00ab55 !important;
    color: #00ab55 !important;
}

.branch-select-table .btn-icon.btn-outline-success svg {
    color: inherit;
    stroke: currentColor;
}

.branch-select-table .btn-icon.btn-outline-success:hover,
.branch-select-table .btn-icon.btn-outline-success:focus {
    background: #00ab55 !important;
    border-color: #00ab55 !important;
    color: #fff !important;
}

.btn-icon-only {
    align-items: center;
    display: inline-flex;
    height: 32px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    width: 32px;
}

.btn-icon-only svg {
    flex: 0 0 auto;
    height: 18px;
    margin: 0 !important;
    width: 18px;
}

.branch-select-footer {
    color: #8c96b3;
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    padding: 58px 18px 0;
}

.calendar-label-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.calendar-label-dot {
    border-radius: 50%;
    display: inline-block;
    height: 10px;
    margin-right: 5px;
    width: 10px;
}

.calendar-label-dot.fc-bg-primary {
    background: #4361ee;
}

.calendar-label-dot.fc-bg-success {
    background: #1abc9c;
}

.calendar-label-dot.fc-bg-warning {
    background: #e2a03f;
}

.calendar-label-dot.fc-bg-danger {
    background: #e7515a;
}

.notification-dropdown .h-link {
    position: relative;
}

.notification-dropdown.has-alerts .icon-tabler-bell {
    animation: ks-bell-pulse 1.2s ease-in-out infinite;
    color: #e7515a;
}

.ks-notification-badge {
    align-items: center;
    background: #e7515a;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 10px;
    font-weight: 700;
    height: 18px;
    justify-content: center;
    min-width: 18px;
    padding: 0 5px;
    position: absolute;
    right: -7px;
    top: -7px;
}

@keyframes ks-bell-pulse {
    0%, 100% {
        opacity: 1;
        transform: rotate(0);
    }

    35% {
        transform: rotate(-12deg);
    }

    70% {
        opacity: .65;
        transform: rotate(12deg);
    }
}

@media (max-width: 991.98px) {
    .branch-select-grid {
        grid-template-columns: 1fr;
    }

    .branch-profile-card,
    .branch-list-card {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .branch-select-page {
        padding: 18px 14px;
    }

    .branch-select-header,
    .branch-select-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .branch-profile-card,
    .branch-list-card {
        padding: 22px 16px;
    }

}

.sales-workspace {
    --ks-sales-border: #e0e6ed;
    --ks-sales-soft: #f1f2f3;
    --ks-sales-muted: #888ea8;
}

.sales-left-panel {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 145px);
}

.sales-filter-card .form-label,
.sales-client-box .form-label,
.sales-checkout-footer .form-label {
    color: #3b3f5c;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.sales-product-surface {
    flex: 1 1 auto;
    max-height: calc(100vh - 270px);
    min-height: 520px;
    overflow: auto;
}

.sales-product-grid {
    display: grid;
    gap: 14px;
}

.sales-product-grid-pos {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sales-product-card {
    background: #fff;
    border: 1px solid var(--ks-sales-border);
    border-radius: 8px;
    color: #0e1726;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 238px;
    padding: 8px;
    text-align: left;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
    width: 100%;
}

.sales-product-card:hover,
.sales-product-card:focus {
    border-color: #4361ee;
    box-shadow: 0 10px 24px rgba(31, 45, 61, .08);
    outline: 0;
    transform: translateY(-1px);
}

.sales-product-card-badges,
.sales-product-price-row,
.sales-checkout-header,
.sales-action-row {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.sales-product-card-badges .badge {
    max-width: 48%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sales-product-image-wrap {
    align-items: center;
    background: #f7f9fc;
    border: 1px solid #edf2f7;
    border-radius: 6px;
    display: flex;
    height: 118px;
    justify-content: center;
    margin: 8px 0;
    overflow: hidden;
}

.sales-product-image-wrap img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.sales-product-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.sales-product-card-body h6 {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 4px;
    min-height: 32px;
}

.sales-product-card-body p {
    color: var(--ks-sales-muted);
    font-size: 11px;
    line-height: 1.25;
    margin: 0 0 8px;
}

.sales-product-price-row {
    margin-top: auto;
}

.sales-product-price-row strong {
    color: #0e1726;
    font-size: 13px;
}

.sales-shortcuts-bar {
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--ks-sales-border);
    border-radius: 8px;
    bottom: 0;
    box-shadow: 0 -8px 18px rgba(31, 45, 61, .04);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding: 10px;
    position: sticky;
    z-index: 5;
}

.sales-shortcuts-bar .btn {
    flex: 1 1 110px;
    min-height: 38px;
    padding-left: 10px;
    padding-right: 10px;
}

.sales-checkout {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 125px);
    min-height: calc(100vh - 145px);
    overflow: hidden;
    position: sticky;
    top: 88px;
}

.sales-checkout-header {
    flex: 0 0 auto;
}

.sales-client-box {
    flex: 0 0 auto;
}

.sales-cart-scroll {
    flex: 1 1 auto;
    min-height: 190px;
    overflow: auto;
    padding-right: 2px;
}

.sales-cart-table thead th,
.sales-list-table thead th {
    background: #f1f2f3;
    color: #515365;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.sales-cart-table td {
    vertical-align: middle;
}

.sales-checkout-footer {
    background: #fff;
    border-top: 1px solid var(--ks-sales-border);
    bottom: 0;
    flex: 0 0 auto;
    padding-top: 12px;
    position: sticky;
    z-index: 4;
}

.sales-total-card {
    background: #dce9ff;
    border: 1px solid #c8ddff;
    border-radius: 8px;
    color: #3b3f5c;
    padding: 12px;
}

.sales-total-card h2 {
    color: #4361ee;
    font-weight: 800;
}

.sales-change-box {
    align-items: center;
    background: #eaf9ff;
    border: 1px solid #d6f1fb;
    border-radius: 6px;
    color: #3b3f5c;
    display: flex;
    height: 100%;
    justify-content: center;
    min-height: 43px;
    padding: 8px;
}

.sales-action-row {
    gap: 10px;
}

.sales-action-row .btn {
    flex: 1 1 0;
    font-weight: 800;
    text-transform: uppercase;
}

.sales-product-list-wrap {
    min-height: 100%;
}

.sales-list-table tbody tr {
    cursor: pointer;
}

.sales-list-table tbody tr:hover {
    background: #f8faff;
}

.sales-empty-products {
    align-items: center;
    display: flex;
    min-height: 420px;
    justify-content: center;
}

@media (max-width: 1499.98px) {
    .sales-product-grid-pos {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    .sales-product-grid-pos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sales-checkout {
        max-height: none;
        position: static;
    }
}

@media (max-width: 767.98px) {
    .sales-product-grid-pos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sales-product-surface {
        max-height: none;
        min-height: 360px;
    }
}

@media (max-width: 479.98px) {
    .sales-product-grid-pos {
        grid-template-columns: 1fr;
    }
}
