﻿/*//////////// LS24 VARIABLES ////////////// */

/*LATEST MMP*/

:root {
    --regular-gap: 16px;
    --primary-color: #1a1a1a;
    --accent-color-hot-pink: #c530c5;
    --base-font: 'Inter', sans-serif;
}

/*//////////// DROP CARDS //////////////////// */

.lsk-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.lsk-card {
    flex: 1 1 0;
    background-color: #ffffff;
    width: 100%;
    border-radius: 12px;
    box-shadow: inset 1px 0px 0px 0 rgba(0, 0, 0, 0.13), inset -1px 0px 0px 0 rgba(0, 0, 0, 0.13), inset 0px -1px 0px 0 rgba(0, 0, 0, 0.17), inset 0px 1px 0px 0 rgba(204, 204, 204, 0.5), 0px 1px 0px 0 rgba(26, 26, 26, 0.07);
    overflow: hidden;
}

details.lsk-card {
    padding: 0
}

.lsk-card > summary.lsk-card__header {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
}

.lsk-card__header::-webkit-details-marker {
    display: none
}

.lsk-card__header::marker {
    content: ""
}

.lsk-card__title-wrapper {
    display: flex;
    align-items: start;
    gap: 8px
}

.lsk-card__left-icon {
    width: 20px;
    height: 20px;
    color: #475569;
    display: grid;
    place-items: center
}

.lsk-card__title {
    font-size: 16px
}

.lsk-card__sub {
    font-size: 13px;
    color: #475569;
    display: block;
    margin-top: 2px;
    font-weight: 400
}

.lsk-card__icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 30%;
    transition: .25s;
    flex: 0 0 auto;
}

    .lsk-card__icon svg {
        width: 16px;
        height: 16px;
        transition: transform .25s
    }

details.lsk-card[open] > summary .lsk-card__icon svg {
    transform: rotate(180deg)
}

/* CSS-only slide */
.lsk-card__content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    border-top: 1px solid #e5e7eb;
    transition: max-height .40s ease, opacity .30s ease, visibility 0s linear .40s;
    visibility: hidden;
}

details.lsk-card[open] .lsk-card__content {
    max-height: 1200px;
    opacity: 1;
    visibility: visible;
    transition: max-height .40s ease, opacity .30s ease;
}

.lsk-card__body {
    padding: 16px;
    color: #303030;
}

/* Simple content styling */
.lsk-card__section {
    margin: 0 0 12px;
}

    .lsk-card__section h4 {
        margin: 0 0 6px;
        font-size: 14px;
        color: #0f172a
    }

.lsk-card__list {
    margin: 0;
    padding-left: 18px
}

/* Focus ring */
.lsk-card > summary.lsk-card__header:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 3px;
    border-radius: 12px;
}

/* Responsive */
@media (max-width:1024px) {
    .lsk-card {
        flex: 1 1 calc(50% - 16px)
    }
}

@media (max-width:640px) {
    .lsk-card {
        flex: 1 1 100%
    }
}

/*/////////// END DROP CARDS //////////////////*/




/*/////////// AIDASHBOAR D//////////////*/

.ls24-info-icon {
    fill: #333;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/*reports dashboard*/
.ls24-reports-border-bottom {
    border-bottom: 1px solid #E3E3E3;
}

.ls24-reports-layout {
    display: flex;
    width: 100%;
    gap: 16px;
    margin-top: 16px;
}

.ls24-reports-layout__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ls24-reports-layout__right {
    max-width: 350px;
    width: 100%;
}

.ls24-toggle-button {
    font-family: var(--base-font);
    font-weight: 550;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #303030;
    background-color: #ffffff;
    padding: 0 5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: inset 0px -1px 0px 0 rgba(181, 181, 181, 1), inset -1px 0px 0px 0 rgba(227, 227, 227, 1), inset 1px 0px 0px 0 rgba(227, 227, 227, 1), inset 0px 1px 0px 0px rgba(227, 227, 227, 1);
    position: relative;
    min-height: 28px;
    max-height: 28px;
    width: fit-content;
}

    .ls24-toggle-button:hover {
        background-color: #fafafa;
        box-shadow: inset 0px -1px 0px 0 rgba(204, 204, 204, 1), inset 1px 0px 0px 0 rgba(235, 235, 235, 1), inset -1px 0px 0px 0 rgba(235, 235, 235, 1), inset 0px 1px 0px 0px rgba(235, 235, 235, 1);
        text-decoration: none;
    }

    .ls24-toggle-button:active {
        background-color: #1a1a1a;
        color: #303030;
        background-color: #f7f7f7;
        box-shadow: inset -1px 0px 1px 0 rgba(26, 26, 26, 0.14), inset 1px 0px 1px 0 rgba(26, 26, 26, 0.12), inset 0px 2px 1px 0 rgba(26, 26, 26, 0.2);
    }

    .ls24-toggle-button:active svg {
        margin-top: 2px;
    }

    .ls24-toggle-button svg {
        fill: #303030;
        width: 20px;
    }
    
    .ls24-double-btn--left {
        height: 32px;
        font-family: var(--base-font);
        font-weight: 550;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #303030;
        background-color: #ffffff;
        padding: 0 12px;
        cursor: pointer;
        height: 32px;
        border-radius: 8px 0px 0px 8px;
        border: 1px solid #e3e3e3;
    }
    
    .ls24-double-btn--right {
        height: 32px;
        font-family: var(--base-font);
        font-weight: 550;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #303030;
        background-color: #ffffff;
        padding: 0 12px;
        cursor: pointer;
        height: 32px;
        border-radius: 0px 8px 8px 0px;
        border: 1px solid #e3e3e3;
        border-left: none;
}

.ls24-double-btn--left:hover {
    background-color: #e3e3e3;
}

.ls24-double-btn--right:hover {
    background-color: #e3e3e3;
}

.ls24-double-btn--left svg {
    width: 20px;
    margin-right: 4px;
}

.ls24-double-btn--right svg {
    width: 20px;
}

.ls24-side-card__header {
    padding: 16px;
    background-color: #F7F7F7;
    border-radius: 8px 8px 0 0;
    border: 1px solid #F0F0F0;
    padding: 16px;
    font-family: var(--base-font);
    font-size: 13px;
    font-weight: 650;
    text-decoration-line: underline;
    text-decoration: underline dashed #D2D2D2;
    color: #5B5B5B;
}

.ls24-side-card__row {
    font-family: var(--base-font);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: #636363 !important;
}

.ls24-side-card__row:not(:last-child) {
    border-bottom: 1px solid #EDEDED;
}

.ls24-side-card__active-row {
    font-weight: 550 !important;
}

.ls24-side-card__checked {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls24-side-card__checked svg {
    fill: #1a1a1a;
    width: 25px;
}

.ls24-side-card__header-t2 {
    display: flex;
    font-family: var(--base-font);
    align-items: center;
    font-size: 12px;
    font-weight: 550;
    color: #202223;
}

    .ls24-side-card__header-t2 a {
        font-size: 12px;
        color: #007aff;
        text-decoration: none;
        color: #000000;
        font-weight: 550;
    }

    .ls24-side-card__header-t2 a:hover {
        text-decoration: underline;
    }

    .ls24-reports-search-group {
        width: 100%;
        padding: 16px;
        border-bottom: 1px solid #E3E3E3
    }

.ls24-reports-button-group {
    display: flex;
    gap: 8px;
}

.ls24-checkbox-container {
    width: 100%;
    padding: 16px;
}

.ls24-checkbox-container:not(:last-child) {
    border-bottom: 1px solid #D9D9D9;
}


/*ADMIN DASHBOARD PAGE*/

.ls24-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    align-items: stretch;
}

.ls24-admin-dashboard-info-card {
    min-height: 150px;
    min-width: 220px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.ls24-admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 16px;
    margin-bottom: 16px;
}

.ls24-admin-dashboard-info-card__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ls24-admin-dashboard-info-card__title {
    color: #303030 !important;
    font-family: var(--base-font) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
}

.ls24-admin-dashboard-info-card__subtitle {
    color: #6f798b;
    font-family: var(--base-font);
    font-size: 12px;
    font-weight: 550;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    .ls24-grid-cols-3-2 {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto;
    }

    .ls24-tips-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .ls24-grid-cols-2 {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto;
    }
}

@media (max-width: 600px) {
    .ls24-tips-grid {
        grid-template-columns: 1fr !important;
    }

    .ls24-2col-grid-equal {
        grid-template-columns: 1fr !important;
    }
}

/*REFUND GRID ON ORDERACTIONS PAGE*/

.ls24-refund-grid-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
    font-family: var(--base-font);
    font-size: 13px;
    font-weight: 600;
}

.ls24-html-background-color {
    background-color: #f1f1f1;
}

.ls24-refund-grid-t1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 12px;
    font-family: var(--base-font);
    font-size: 13px;
    font-weight: 400;
}

.ls24-refund-grid-t2 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 12px;
    font-family: var(--base-font);
    font-size: 13px;
    font-weight: 400;
}

.ls24-refund-grid-t3 {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
    font-family: var(--base-font);
    font-size: 13px;
    font-weight: 400;
}

.ls24-refund-grid-t1-cell {
    display: flex;
    width: 100%;
    justify-self: stretch;
    align-items: center;
}

.ls24-refund-grid-t1-cell--text-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ls24-refund-grid-footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
    font-family: var(--base-font);
    font-size: 13px;
    font-weight: 600;
}

.ls24-main-load {
    position: absolute;
    display: flex;
    width: 100vw;
    height: 100vh;
    background: #f1f1f1;
    color: white;
    z-index: 10000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ls24-main-overlay {
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    position: fixed;
    background-color: rgba(0,0,0,0.6);
    z-index: 10000;
}

.ls24-setup {
    text-align: center;
    margin-top: 20px;
    color: #303030;
    font-family: var(--base-font);
    font-weight: 600;
}

.ls24-main-spinner {
    border-top-color: white;
    width: 38px;
    height: 38px
}

.ls24-main-seller-select {
    border-radius: 8px !important;
    border: none !important;
    background-color: #303030 !important;
    color: white !important;
    height: 32px !important;
}

.ls24-main-frame-footer {
    position: fixed;
    bottom: 7px;
    left: 10px;
    font-size: 11px;
    color: #707070;
    font-weight: bolder;
}

/*Calendar input field on order detail page - sidebar/*/

.ls24-calendar-input-field {
    font-family: var(--base-font);
    color: #303030;
    font-weight: 450;
    font-size: 13px;
    border: solid 0.77px rgb(138, 138, 138);
    background-color: rgb(253, 253, 253);
    border-radius: 8px !important;
    min-height: 32px;
    padding: 4px;
    width: 100%;
}

    .ls24-calendar-input-field:hover {
        border: solid 0.77px rgb(97, 97, 97);
        background-color: rgb(250, 250, 250);
    }
    
    .ls24-calendar-input-field:focus {
        border: solid 1px rgb(97, 97, 97);
        background-color: rgb(250, 250, 250);
        outline: 2px solid #005bd3;
        outline-offset: 1px;
}

/*//////////// LS24 UNIVERSAL SELECTORS ////////////// */


*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #b5b5b5 #f1f1f1;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--base-font) !important;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #f6f6f7;
}

/*CRITICAL BUTTON*/

.ls24-critical-link {
    font-family: var(--base-font);
    color: #8e0b21;
    font-weight: 450;
    text-decoration: none;
    font-size: 13px;
    background-color: transparent;
}

    .ls24-critical-link:hover {
        color: #5f0716;
        text-decoration: underline;
    }

    .ls24-critical-link:active {
        color: #2f040b;
        text-decoration: underline;
    }


/*SELECT BUTTON*/

.ls24-select__native {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 12.82"><path fill="%238a8a8a" fill-rule="evenodd" d="M.24,8.02c.3-.28.78-.26,1.06.04l2.7,2.91 2.7-2.91c.28-.3.76-.32,1.06-.04.3.28.32.76.04,1.06l-3.25,3.5c-.28.3-.76.32-1.06.04L.2,9.08c-.28-.3-.26-.78.04-1.06ZM.24,4.8c.3.28.78.26,1.06-.04l2.7-2.91 2.7,2.91c.28.3.76.32,1.06.04.3-.28.32-.76.04-1.06L4.55.24c-.28-.3-.76-.32-1.06-.04L.2,3.74c-.28.3-.26.78.04,1.06Z"/></svg>') no-repeat right 1rem center;
    background-size: 7px 11px;
    padding: 8px 15px;
    font-family: var(--base-font);
    color: #303030;
    font-weight: 450;
    font-size: 13px;
    border: solid 0.77px rgb(138, 138, 138);
    background-color: rgb(253, 253, 253);
    border-radius: 8px !important;
    min-height: 32px;
    cursor: pointer;
    width: 100%;
}


    .ls24-select__native:hover {
        border: solid 0.77px rgb(97, 97, 97);
        background-color: rgb(250, 250, 250);
    }
    
    .ls24-select__native:active {
    border: solid 1px rgb(26, 26, 26);
    background-color: rgb(247, 247, 247);
    }
    
    .ls24-select__native:focus {
    border: solid 1px rgb(97, 97, 97);
    background-color: rgb(250, 250, 250);
    outline: 2px solid #005bd3;
    outline-offset: 1px;
    }
    
/*IMAGE UPLOAD ON ORDER ACTION PAGE /*/

.ls24-image-upload__wrapper {
    width: 100%;
    height: 300px;
    border: 1px dashed #8a8a8a;
    border-radius: 8px;
    background-color: #fdfdfd;
    transition: background-color 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls24-image-upload__wrapper:hover {
    background-color: #f7f7f7;
}


.ls24-media-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: stretch;
    flex-direction: row;
}

.ls24-media-grid__main {
    flex: 0 0 180px;
    aspect-ratio: 1 / 1;
    border: 1px solid #ccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ls24-media-grid__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    grid-auto-rows: 86px;
    gap: 8px;
    flex: 1;
    align-content: start;
}

.ls24-media-grid__thumb {
    border: 1px solid #ccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s;
}

.ls24-media-grid__checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ls24-media-grid__overlay-label {
    position: absolute;
    inset: 0;
    z-index: 3;
    cursor: pointer;
    display: block;
    height: 100%;
}

.ls24-media-grid__checkbox-box {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 18px;
    height: 18px;
    background-color: #fdfdfd;
    border: 0.66px solid #8a8a8a;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    pointer-events: none;
    z-index: 4;
}

.ls24-media-grid__overlay {
    position: absolute;
    inset: 0;
    border-radius: 7px;
    background-color: #00000087;
    opacity: 0;
    transition: opacity 0.2s;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.ls24-media-grid__thumb:hover .ls24-media-grid__overlay,
.ls24-media-grid__thumb .ls24-media-grid__checkbox:checked ~ .ls24-media-grid__overlay-label .ls24-media-grid__overlay {
    opacity: 1;
}

.ls24-media-grid__main:hover .ls24-media-grid__overlay,
.ls24-media-grid__main .ls24-media-grid__checkbox:checked ~ .ls24-media-grid__overlay-label .ls24-media-grid__overlay {
    opacity: 1;
}

.ls24-media-grid__thumb:hover .ls24-media-grid__checkbox-box,
.ls24-media-grid__checkbox:checked + .ls24-media-grid__overlay-label .ls24-media-grid__checkbox-box {
    opacity: 1;
    pointer-events: auto;
}

.ls24-media-grid__main:hover .ls24-media-grid__checkbox-box,
#ls24-media-grid__main-check:checked + .ls24-media-grid__overlay-label .ls24-media-grid__checkbox-box {
    opacity: 1;
    pointer-events: auto;
}

.ls24-media-grid__checkbox-box:hover {
    border-color: var(--primary-color);
}

.ls24-media-grid__checkbox:checked + .ls24-media-grid__overlay-label .ls24-media-grid__checkbox-box {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.ls24-media-grid__checkbox-box::after {
    content: '';
    display: block;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.ls24-media-grid__checkbox:checked + .ls24-media-grid__overlay-label .ls24-media-grid__checkbox-box::after {
    animation: fadeInCheck 0.2s forwards ease;
}

.ls24-media-grid__checkbox:focus-visible + .ls24-media-grid__overlay-label .ls24-media-grid__checkbox-box {
    box-shadow: inset 0 0 0 2px var(--primary-color);
    outline: none;
}

@keyframes fadeInCheck {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Add new button */
.ls24-media-grid__add {
    color: #555;
    cursor: pointer;
    background-color: #f7f7f7;
    border: 1px dashed #ccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .ls24-media-grid__add:hover {
        background-color: #f1f1f1;
    }

    .ls24-media-grid__add:active {
        background-color: #f7f7f7;
    }

    .ls24-media-grid__add svg {
        width: 20px;
        height: 20px;
        fill: #303030;
    }

    .ls24-media-grid__add.disabled {
        color: red;
        pointer-events: none;
        cursor: not-allowed;
        opacity: 0.5;
        background-color: #f7f7f7;
        border: 1px dashed #ccc;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .ls24-media-grid__add.disabled svg path {
            fill: #ccc;
        }


.ls24-media-grid__checkbox-box {
    opacity: 0;
    pointer-events: none;
}



/*////////ATTACH//////////////*/

.ls24-attach-link {
    font-family: var(--base-font) !important;
    font-size: 13px;
    font-weight: 600;
    color: #4b4b4b !important;
}

    .ls24-attach-link:hover {
        text-decoration: none !important;
    }
.ls24-attach-file-section {
    border: solid 1px #ececec;
    border-radius: 4px;
}

.ls24-attach-file-section__image {
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 49px;
    margin-right: 8px;
    border-radius: 2px 0px 0px 2px;
    border-right: 1px solid #ececec;
}

    .ls24-attach-file-section__image svg {
        width: 20px;
        fill: var(--primary-color);
    }

.ls24-paper-clip-btn {
    background-color: #e2e2e2;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

    .ls24-paper-clip-btn:hover {
        background-color: #d6d6d6;
    }

    .ls24-paper-clip-btn:active {
        background-color: #eeeeee;
    }

.ls24-paper-clip-btn svg {
    width: 20px;
}


.ls24-attach-file-name {
    font-family: var(--base-font) !important;
    font-size: 13px;
}

.ls24-attach-delete-button {
    font-family: var(--base-font);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 4px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: inset 0px -1px 0px 0 rgba(181, 181, 181, 1), inset -1px 0px 0px 0 rgba(227, 227, 227, 1), inset 1px 0px 0px 0 rgba(227, 227, 227, 1), inset 0px 1px 0px 0px rgba(227, 227, 227, 1);
    word-wrap: normal;
    white-space: nowrap;
}

    .ls24-attach-delete-button:hover {
        background-color: #fafafa;
        box-shadow: inset 0px -1px 0px 0 rgba(204, 204, 204, 1), inset 1px 0px 0px 0 rgba(235, 235, 235, 1), inset -1px 0px 0px 0 rgba(235, 235, 235, 1), inset 0px 1px 0px 0px rgba(235, 235, 235, 1);
        text-decoration: none;
    }

    .ls24-attach-delete-button:active {
        background-color: #1a1a1a;
        color: #303030;
        background-color: #f7f7f7;
        box-shadow: inset -1px 0px 1px 0 rgba(26, 26, 26, 0.14), inset 1px 0px 1px 0 rgba(26, 26, 26, 0.12), inset 0px 2px 1px 0 rgba(26, 26, 26, 0.2);
    }




.ls24-attach-delete-button svg {
    width: 17px;
    height: 17px;
}

/*//////////// LS24 LAYOUT CLASSES ////////////// */

.ls24-fullpage-width {
    padding: 0 24px 24px 24px;
}

.ls24-narrowpage-width {
    max-width: 1000px;
    padding: 0 24px;
    margin: 0 auto 24px auto;
}

.ls24-layout--three-quarter-split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.ls24-layout--three-quarter-split__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: flex-start;
}

/*//////////// LS24 UTILITY CLASSES ////////////// */

.pointer {
    cursor: pointer;
}

.text-area-resize-v {
    resize: vertical;
}

.border-top {
    border-top: 1px solid #e4e5e7;
}

.border-none {
    border: none;
}

.uppercase {
    text-transform: uppercase;
}

.decorate-none {
    text-decoration: none !important;
}

/*// ALIGNMENT //*/

.align-item-left {
    align-items: flex-start;
}

.align-item-center {
    align-items: center;
}

.align-item-start {
    align-items: flex-start;
}

.flex-row-end {
    justify-content: flex-end !important;
}

.text-align-right {
    text-align: right !important;
}

.text-align-center {
    text-align: center;
}


/*// WIDTHS //*/

.width-100 {
    width: 100% !important;
}

.w-fit-content {
    width: fit-content !important;
}

/*// POSITIONS //*/

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

/*// GAPS //*/
.gap-4 {
    gap: 4px;
}

.gap-8 {
    gap: 8px !important;
}

.gap-16 {
    gap: 16px;
}

/*// MARGIN //*/

.mt-0 {
    margin-top: 0px !important;
}

.mt-4 {
    margin-top: 4px !important;
}

.mt-8 {
    margin-top: 8px;
}

.mt-12 {
    margin-top: 12px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 16px;
}

.mt-50 {
    margin-top: 50px;
}

.ml-4 {
    margin-left: 4px;
}

.ml-8 {
    margin-left: 8px;
}

.ml-12 {
    margin-left: 12px;
}

.ml-16 {
    margin-left: 16px;
}

.ml-24 {
    margin-left: 24px;
}

.mr-auto {
    margin-right: auto;
}

.mr-0 {
    margin-right: 0px !important;
}

.mr-4 {
    margin-right: 4px !important;
}

.mr-8 {
    margin-right: 8px;
}

.mr-12 {
    margin-right: 12px;
}

.mr-16 {
    margin-right: 16px;
}

.mtb-24 {
    margin: 24px 0;
}

.mtb-12 {
    margin: 12px 0;
}

.ptb-24 {
    padding: 24px 0;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mb-4 {
    margin-bottom: 4px !important;
}

.mb-8 {
    margin-bottom: 8px !important;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-18 {
    margin-bottom: 18px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-28 {
    margin-bottom: 28px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-36 {
    margin-bottom: 36px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.pb-24 {
    padding-bottom: 24px;
}

.mh-32 {
    min-height: 32px !important;
}

/*// COLORS //*/

.col-purple {
    color: #7126ff;
}

.col-black {
    color: #000;
}

/*// MAXIMUM WIDTH //*/

.mx-width-800 {
    max-width: 800px;
}

.mx-width-400 {
    max-width: 400px;
}

/*// MINIMUM HEIGHT //*/

.mn-height-380 {
    min-height: 380px;
}

.mn-height-32 {
    min-height: 32px !important;
}

}

.mx-width-400 {
    max-width: 400px;
}

/*// MAXIMUM HEIGHT //*/

.mx-height-32 {
    line-height: 1 !important;
}


/*// LINE HEIGHT //*/

.lh-1 {
    max-height: 32px !important;
}

/*// PADDING //*/

.p-0 {
    padding: 0px !important;
}

.p-16 {
    padding: 16px;
}

.p-23 {
    padding-right: 23px !important;
}

.margin-sides-16 {
    margin: 0 16px;
}

.full-margin-16 {
    margin: 16px;
}

/*// FONT WEIGHT //*/

.weight-600 {
    font-weight: 600;
}



/*//////////// COMPONENT CLASSES ////////////// */

/*// BUTTONS //*/

/* lINKS */

.ls24-link {
    font-family: var(--base-font);
    color: #005BD3;
    font-weight: 450;
    text-decoration: underline;
    font-size: 13px;
}

    .ls24-link:hover {
        color: #004299;
    }

    .ls24-link:active {
        color: #002E6A;
    }

.ls24-link--no-underline {
    text-decoration: none !important;
}

/* Select button - with icon */

.ls24-default-select-icon-button {
    font-family: var(--base-font);
    font-size: 12px;
    font-weight: 550;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #303030;
    background-color: #ffffff;
    padding: 4px 4px 4px 6px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: inset 0px -1px 0px 0 rgba(181, 181, 181, 1), inset -1px 0px 0px 0 rgba(227, 227, 227, 1), inset 1px 0px 0px 0 rgba(227, 227, 227, 1), inset 0px 1px 0px 0px rgba(227, 227, 227, 1);
    position: relative;
    min-height: 28px;
}

    .ls24-default-select-icon-button svg {
        fill: #4A4A4A;
        width: 20px;
        height: 20px;
        margin-right: 2px;
    }

    .ls24-default-select-icon-button:hover {
        background-color: #fafafa;
        box-shadow: inset 0px -1px 0px 0 rgba(204, 204, 204, 1), inset 1px 0px 0px 0 rgba(235, 235, 235, 1), inset -1px 0px 0px 0 rgba(235, 235, 235, 1), inset 0px 1px 0px 0px rgba(235, 235, 235, 1);
    }

    .ls24-default-select-icon-button:active {
        background-color: #1a1a1a;
        color: #303030;
        background-color: #f7f7f7;
        box-shadow: inset -1px 0px 1px 0 rgba(26, 26, 26, 0.14), inset 1px 0px 1px 0 rgba(26, 26, 26, 0.12), inset 0px 2px 1px 0 rgba(26, 26, 26, 0.2);
    }

        .ls24-default-select-icon-button:active svg {
            margin-top: 2px;
        }

        .ls24-default-select-icon-button:active span {
            margin-top: 2px;
        }

/* Default button */

.ls24-default-button {
    font-family: var(--base-font);
    font-weight: 550;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #303030;
    background-color: #ffffff;
    padding: 0 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: inset 0px -1px 0px 0 rgba(181, 181, 181, 1), inset -1px 0px 0px 0 rgba(227, 227, 227, 1), inset 1px 0px 0px 0 rgba(227, 227, 227, 1), inset 0px 1px 0px 0px rgba(227, 227, 227, 1);
    position: relative;
    min-height: 28px;
    max-height: 28px;
    width:fit-content;
}

    .ls24-default-button:hover {
        background-color: #fafafa;
        box-shadow: inset 0px -1px 0px 0 rgba(204, 204, 204, 1), inset 1px 0px 0px 0 rgba(235, 235, 235, 1), inset -1px 0px 0px 0 rgba(235, 235, 235, 1), inset 0px 1px 0px 0px rgba(235, 235, 235, 1);
        text-decoration: none;
    }

    .ls24-default-button:active {
        background-color: #1a1a1a;
        color: #303030;
        background-color: #f7f7f7;
        box-shadow: inset -1px 0px 1px 0 rgba(26, 26, 26, 0.14), inset 1px 0px 1px 0 rgba(26, 26, 26, 0.12), inset 0px 2px 1px 0 rgba(26, 26, 26, 0.2);
    }

        .ls24-default-button:active span {
            margin-top: 2px;
        }

/* Default button - with icon */

.ls24-default-icon-button {
    font-family: var(--base-font);
    font-weight: 550;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #303030;
    background-color: #ffffff;
    padding: 0 6px 0 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: inset 0px -1px 0px 0 rgba(181, 181, 181, 1), inset -1px 0px 0px 0 rgba(227, 227, 227, 1), inset 1px 0px 0px 0 rgba(227, 227, 227, 1), inset 0px 1px 0px 0px rgba(227, 227, 227, 1);
    position: relative;
    min-height: 28px;
    max-height: 28px;
    word-wrap: normal;
    white-space: nowrap;
}

    .ls24-default-icon-button:hover {
        background-color: #fafafa;
        box-shadow: inset 0px -1px 0px 0 rgba(204, 204, 204, 1), inset 1px 0px 0px 0 rgba(235, 235, 235, 1), inset -1px 0px 0px 0 rgba(235, 235, 235, 1), inset 0px 1px 0px 0px rgba(235, 235, 235, 1);
        text-decoration: none;
    }

    .ls24-default-icon-button:active {
        background-color: #1a1a1a;
        color: #303030;
        background-color: #f7f7f7;
        box-shadow: inset -1px 0px 1px 0 rgba(26, 26, 26, 0.14), inset 1px 0px 1px 0 rgba(26, 26, 26, 0.12), inset 0px 2px 1px 0 rgba(26, 26, 26, 0.2);
    }

        .ls24-default-icon-button:active span {
            margin-top: 2px;
        }

        .ls24-default-icon-button:active svg {
            margin-top: 2px;
        }

    .ls24-default-icon-button.active {
        background-color: #1a1a1a;
        color: #303030;
        background-color: #f7f7f7;
        box-shadow: inset -1px 0px 1px 0 rgba(26, 26, 26, 0.14), inset 1px 0px 1px 0 rgba(26, 26, 26, 0.12), inset 0px 2px 1px 0 rgba(26, 26, 26, 0.2);
    }

    .ls24-default-icon-button svg {
        width: 20px;
        height: 20px;
    }

/* Primary button */

.ls24-primary-button {
    font-family: var(--base-font);
    font-size: 12px;
    font-weight: 550;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: #303030;
    padding: 0 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: inset 0px 2px 0px 0 rgba(255, 255, 255, 0.2), inset 2px 0px 0px 0 rgba(255, 255, 255, 0.2), inset -2px 0px 0px 0 rgba(255, 255, 255, 0.2), inset 0px -1px 0px 1px rgba(0, 0, 0, 1), inset 0px 1px 0px 0 rgba(0, 0, 0, 1);
    position: relative;
    min-height: 28px;
    max-height: 28px;
    word-wrap: normal;
    white-space: nowrap;
}

    .ls24-primary-button:hover {
        background-color: #1a1a1a;
        text-decoration: none;
        color: #e3e3e3;
    }

    .ls24-primary-button:active {
        background-color: #1a1a1a;
        color: #cccccc;
        background-image: linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
        box-shadow: inset 0px 3px 0px 0 rgba(0, 0, 0, 1);
    }

        .ls24-primary-button:active span {
            margin-top: 2px;
        }


    .ls24-primary-button.disabled {
        font-family: var(--base-font);
        font-size: 12px;
        font-weight: 550;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #B5B5B5;
        background-color: #e3e3e3;
        padding: 0 12px;
        border: none;
        border-radius: 8px;
        cursor: default;
        position: relative;
        min-height: 28px;
        max-height: 28px;
        box-shadow: none;
    }

.ls24-primary-button--disabled {
    font-family: var(--base-font);
    font-size: 12px;
    font-weight: 550;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B5B5B5;
    background-color: #e3e3e3;
    padding: 0 12px;
    border: none;
    border-radius: 8px;
    cursor: default;
    position: relative;
    min-height: 28px;
    max-height: 28px;
    box-shadow: none;
}

.ls24-action-button {
    font-family: var(--base-font);
    font-size: 13px;
    font-weight: 450;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #303030;
    background-color: transparent;
    padding: 4px 6px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    min-height: 28px;
    max-height: 28px;
}

    .ls24-action-button:hover {
        background-color: #f1f1f1;
        color: #303030;
        text-decoration: none;
    }

    .ls24-action-button:active {
        background-color: #ebebeb;
        color: #303030;
    }

        .ls24-action-button:active span {
            margin-top: 2px;
        }

.ls24-action-critical-button {
    font-family: var(--base-font);
    font-size: 13px;
    font-weight: 450;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #8e1f0b;
    background-color: transparent;
    padding: 4px 6px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    min-height: 28px;
    max-height: 28px;
}

    .ls24-action-critical-button:hover {
        background-color: #fee2e1;
        color: #8e1f0b;
        text-decoration: none;
    }

    .ls24-action-critical-button:active {
        background-color: #fedad9;
        color: #8e1f0b;
    }

        .ls24-action-critical-button:active span {
            margin-top: 2px;
        }

.ls24-sort-button {
    font-family: var(--base-font);
    font-size: 12px;
    font-weight: 550;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #303030;
    background-color: #e3e3e3;
    padding: 4px 6px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    min-height: 28px;
    max-height: 28px;
}

    .ls24-sort-button:hover {
        background-color: #d4d4d4;
        text-decoration: none;
        color: #303030;
    }

    .ls24-sort-button:active {
        background-color: #cccccc;
        text-decoration: none;
        color: #303030;
        box-shadow: 0rem .125rem .0625rem 0rem rgba(26, 26, 26, .2) inset, .0625rem 0rem .0625rem 0rem rgba(26, 26, 26, .12) inset, -.0625rem 0rem .0625rem 0rem rgba(26, 26, 26, .12) inset;
    }

.ls24-disabled-button {
    font-family: var(--base-font);
    font-size: 12px;
    font-weight: 550;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aeaeae !important;
    background-color: #e3e3e3 !important;
    padding: 0 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: none !important;
    position: relative;
    min-height: 28px;
    max-height: 28px;
    cursor: default !important;
}

    .ls24-disabled-button:hover {
        color: #aeaeae !important;
        cursor: default !important;
        background-color: #e3e3e3 !important;
    }

    .ls24-disabled-button:active {
        color: #aeaeae !important;
        cursor: default !important;
        background-color: #e3e3e3 !important;
        box-shadow: none !important;
    }

        .ls24-disabled-button:active span {
            cursor: default !important;
            margin-top: 0px !important;
        }

.ls24-secondary-button {
    font-family: var(--base-font);
    font-size: 12px;
    font-weight: 550;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #303030;
    background-color: #e3e3e3;
    padding: 0 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    min-height: 28px;
    max-height: 28px;
    word-wrap: normal;
    white-space: nowrap;
}


    .ls24-secondary-button:hover {
        background-color: #d4d4d4;
        text-decoration: none;
        color: #303030;
    }

    .ls24-secondary-button:active {
        background-color: #cccccc;
        text-decoration: none;
        color: #303030;
        box-shadow: 0rem .125rem .0625rem 0rem rgba(26, 26, 26, .2) inset, .0625rem 0rem .0625rem 0rem rgba(26, 26, 26, .12) inset, -.0625rem 0rem .0625rem 0rem rgba(26, 26, 26, .12) inset;
    }

        .ls24-secondary-button:active span {
            margin-top: 2px;
        }

    .ls24-secondary-button.dashboard-active {
        background-color: #333;
        color: #fff;
    }

.ls24-critical-button {
    font-family: var(--base-font);
    font-size: 12px;
    font-weight: 550;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: #e51c00;
    padding: 0 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0rem -0.0625rem 0rem 0.0625rem rgba(142,31,11,.8) inset, 0rem 0rem 0rem 0.0625rem rgba(181,38,11,.8) inset, 0rem 0.03125rem 0rem 0.09375rem hsla(0,0%,100%,.349) inset;
    position: relative;
    min-height: 28px;
    max-height: 28px;
}


    .ls24-critical-button:hover {
        background-color: #b5260b;
        text-decoration: none;
        color: #fff;
        box-shadow: 0rem -0.0625rem 0rem 0.0625rem rgba(142,31,11,.8) inset, 0rem 0rem 0rem 0.0625rem rgba(181,38,11,.8) inset, 0rem 0.03125rem 0rem 0.09375rem hsla(0,0%,100%,.349) inset
    }

    .ls24-critical-button:active {
        background-color: #8e1f0b;
        color: #fff;
        box-shadow: -0.0625rem 0rem 0.0625rem 0rem rgba(0,0,0,.2) inset, 0.0625rem 0rem 0.0625rem 0rem rgba(0,0,0,.2) inset, 0rem 0.125rem 0rem 0rem rgba(0,0,0,.6) inset;
    }

        .ls24-critical-button:active span {
            margin-top: 2px;
        }

.ls24-fullscreen-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 8px;
    background-color: #e3e3e3;
    min-height: 28px;
    min-width: 28px;
}

    .ls24-fullscreen-button:hover {
        background-color: #d4d4d4;
    }

    .ls24-fullscreen-button:active {
        background-color: #cccccc;
        box-shadow: 0rem .125rem .0625rem 0rem rgba(26, 26, 26, .2) inset, .0625rem 0rem .0625rem 0rem rgba(26, 26, 26, .12) inset, -.0625rem 0rem .0625rem 0rem rgba(26, 26, 26, .12) inset;
    }

        .ls24-fullscreen-button:active svg {
            margin-top: 2px;
        }

    .ls24-fullscreen-button svg {
        width: 16px;
        height: 16px;
    }

.ls24-icon-only-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 8px;
    background-color: #e3e3e3;
    min-height: 28px;
    min-width: 28px;
}

    .ls24-icon-only-button:hover {
        background-color: #d4d4d4;
    }

    .ls24-icon-only-button:active {
        background-color: #cccccc;
        box-shadow: 0rem .125rem .0625rem 0rem rgba(26, 26, 26, .2) inset, .0625rem 0rem .0625rem 0rem rgba(26, 26, 26, .12) inset, -.0625rem 0rem .0625rem 0rem rgba(26, 26, 26, .12) inset;
    }

        .ls24-icon-only-button:active svg {
            margin-top: 2px;
        }

    .ls24-icon-only-button svg {
        width: 16px;
        height: 16px;
    }

.ls24-number-btn__container {
    width: 24px;
}

.ls24-number-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 11px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #e3e3e3;
}

.ls24-number-btn--top {
    border-radius: 4px 4px 0px 0px;
}

.ls24-number-btn:hover {
    background-color: #d4d4d4;
}

.ls24-number-btn--bottom {
    border-radius: 0px 0px 4px 4px;
}

/*// FORMS //*/

/* Labels */

.ls24-field-label {
    font-family: var(--base-font);
    color: #303030;
    font-weight: 450;
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 4px;
    text-align: left;
}

.ls24-field-label--strong {
    font-weight: 600;
}

/* Fields */

.ls24-text-field {
    font-family: var(--base-font);
    color: #303030;
    font-weight: 450;
    font-size: 13px;
    border: solid 0.77px rgb(138, 138, 138);
    background-color: rgb(253, 253, 253);
    border-radius: 8px !important;
    min-height: 32px;
    padding: 6px 12px;
    width: 100%;
}

    .ls24-text-field:hover {
        border: solid 0.77px rgb(97, 97, 97);
        background-color: rgb(250, 250, 250);
    }

    .ls24-text-field:active {
        border: solid 1px rgb(26, 26, 26);
        background-color: rgb(247, 247, 247);
    }

    .ls24-text-field:focus {
        border: solid 1px rgb(97, 97, 97);
        background-color: rgb(250, 250, 250);
        outline: 2px solid #005bd3;
        outline-offset: 1px;
    }

    .ls24-text-field--text-right {
        text-align: right !important;
    }

    .ls24-field-error {
        font-family: var(--base-font);
        color: #303030;
        font-weight: 450;
        font-size: 13px;
        border: solid 0.77px rgb(142, 31, 11);
        background-color: rgb(254, 233, 232);
        border-radius: 8px;
        min-height: 32px;
        padding: 6px 12px;
        width: 100%;
    }



.ls24-number-field {
    font-family: var(--base-font);
    color: #303030;
    font-weight: 450;
    font-size: 13px;
    border: solid 0.77px rgb(138, 138, 138);
    background-color: rgb(253, 253, 253);
    border-radius: 8px !important;
    min-height: 32px;
    padding: 4px 4px 4px 12px;
    width: 100%;
}

    .ls24-number-field:hover {
        border: solid 0.77px rgb(97, 97, 97);
        background-color: rgb(250, 250, 250);
    }

    .ls24-number-field:focus {
        border: solid 1px rgb(97, 97, 97);
        background-color: rgb(250, 250, 250);
        outline: 2px solid #005bd3;
        outline-offset: 1px;
    }

.ls24-disabled-field {
    font-family: var(--base-font);
    color: #303030;
    font-weight: 450;
    font-size: 13px;
    border: solid 0.77px rgb(138, 138, 138);
    background-color: rgb(138 138 138 / 15%);
    border-radius: 8px;
    min-height: 32px;
    padding: 6px 12px;
    width: 100%;
}


/*//////////// LS24 DASHBOARD PAGES CLASSES ////////////// */

/*//////////// LS24 ORDER DETAIL PAGES CLASSES ////////////// */

.ls24-box-speck-container {
    display: grid;
    grid-template-columns: 170px auto auto auto auto;
    gap:8px;
}

.ls24-box-speck-container:not(:last-child) {
    padding-bottom: 16px;
    border-bottom: 1px solid #e4e5e7;
    margin-bottom: 14px;
}

.ls24-order-post-btn {
    font-family: var(--base-font);
    font-size: 12px;
    font-weight: 550;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: #303030;
    padding: 0 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: inset 0px 2px 0px 0 rgba(255, 255, 255, 0.2), inset 2px 0px 0px 0 rgba(255, 255, 255, 0.2), inset -2px 0px 0px 0 rgba(255, 255, 255, 0.2), inset 0px -1px 0px 1px rgba(0, 0, 0, 1), inset 0px 1px 0px 0 rgba(0, 0, 0, 1);
    position: relative;
    word-wrap: normal;
    white-space: nowrap;
}

.ls24-order-post-btn:hover {
    background-color: #1a1a1a;
    text-decoration: none;
    color: #e3e3e3;
}

.ls24-order-post-btn:active {
    background-color: #1a1a1a;
    color: #cccccc;
    background-image: linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: inset 0px 3px 0px 0 rgba(0, 0, 0, 1);
}

.ls24-order-post-btn:active span {
    margin-top: 2px;
}

/*///COLLPASE NAVIGATION STYING////////*/

.toggleCollapsed {
    left: -240px !important;
}

.toggleExpanded {
    left: 0px !important;
}

.mainCollapsed {
    left: 0px !important;
}

.mainExpanded {
    left: 240px !important;
}


.ls24-collapse-nav {
    width: 15px;
    height: auto;
    margin-right: 4px;
}

.ls24-left-cornice-collapse {
    width: 13px;
    height: 13px;
    position: absolute;
    top: 56px;
    left: 0px;
    background: url('../img/left-cornice.svg') no-repeat center / cover;
    z-index: 1;
}

.ls24-navigation-cornice__inner--header {
    width: 24px;
    height: 24px;
    border-top-left-radius: 12px;
    background-color: #f1f1f1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.ls24-navigation-cornice__inner--header-background {
    width: 24px;
    height: 24px;
    background-color: #1a1a1a;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/*//EDIT ICON /////*/

.ls24-edit-icon {
    width: 20px;
    height: 20px;
    fill: #000;
}


/*//PLUS ICON ////*/

.ls24-plus-icon {
    width: 20px;
    height: 20px;
    fill: #000;
}

.ls24-close-icon {
    width: 15px;
    height: 15px;
    fill: #fff;
}

/*//////////// ACTION BAR ////////////// */

.ls24-action-bar {
    display: flex;
    overflow-x: auto;
    width: 100%;
    max-width: 100vw;
    overflow-y: hidden;
    gap: 0;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.13) 1px 0px 0px 0px inset, rgba(0, 0, 0, 0.13) -1px 0px 0px 0px inset, rgba(0, 0, 0, 0.17) 0px -1px 0px 0px inset, rgba(204, 204, 204, 0.5) 0px 1px 0px 0px inset, rgba(26, 26, 26, 0.07) 0px 1px 0px 0px;
    border-radius: 12px;
}

    .ls24-action-bar::-webkit-scrollbar {
        height: 6px;
    }

    .ls24-action-bar::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 4px;
    }

        .ls24-action-bar::-webkit-scrollbar-thumb:hover {
            background-color: #555;
        }

.ls24-action-bar-breather {
    width: 100%;
    display: none;
}

    .ls24-action-bar-breather > div {
        height: 6px;
        background-color: #e3e3e3;
        border-radius: 20px;
        animation: breathe 3s ease-in-out infinite;
    }

        .ls24-action-bar-breather > div:nth-of-type(1) {
            width: 50%;
            margin-bottom: 4px;
        }

        .ls24-action-bar-breather > div:nth-of-type(2) {
            width: 20%
        }

@keyframes breathe {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}


/* Each column */
.ls24-action-bar__panel-t1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    flex: 1;
    padding: 10px;
    transition: background-color 0.3s, transform 0.2s;
    background-color: #fff;
    text-align: left;
}

    .ls24-action-bar__panel-t1:not(:first-child) {
        border-left: 1px solid #ddd;
    }

    .ls24-action-bar__panel-t1.clickable {
        cursor: pointer;
    }

.ls24-action-bar__header {
    font-size: 13px;
    font-weight: 450;
    margin-bottom: 5px;
    display: block;
}

.ls24-action-bar__fig {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    letter-spacing: -1px;
}

.ls24-action-bar__fig-alert {
    font-size: 12px;
    font-weight: 600;
    color: #ef4d2f;
    letter-spacing: -1px;
    margin-left: 4px;
    text-decoration: none;
}

    .ls24-action-bar__fig-alert:hover {
        text-decoration: none;
        color: #ef4d2f;
    }

.ls24-action-bar__panel-t1:nth-child(1):hover {
    background-color: #FFF4BF;
}

.ls24-action-bar__panel-t1:nth-child(1):active {
    background-color: #FFEB78;
}

.ls24-action-bar__panel-t1:nth-child(2):hover {
    background-color: #E0F0FF;
}

.ls24-action-bar__panel-t1:nth-child(2):active {
    background-color: #CAE6FF;
}

.ls24-action-bar__panel-t1:nth-child(3):hover {
    background-color: #E4DEFF;
}

.ls24-action-bar__panel-t1:nth-child(3):active {
    background-color: #DFD9FF;
}

.ls24-action-bar__panel-t1:nth-child(4):hover {
    background-color: #FFEBD5;
}

.ls24-action-bar__panel-t1:nth-child(4):active {
    background-color: #FFD6A4;
}

.ls24-action-bar__panel-t1:nth-child(5):hover {
    background-color: #C3F7F2;
}

.ls24-action-bar__panel-t1:nth-child(5):active {
    background-color: #AAF6EF;
}

.ls24-action-bar__panel-t1:nth-child(6):hover {
    background-color: #FBD7FB;
}

.ls24-action-bar__panel-t1:nth-child(6):active {
    background-color: #FBCFFB;
}

.ls24-action-bar__panel-t1:nth-child(7):hover {
    background-color: #FFD9E3;
}

.ls24-action-bar__panel-t1:nth-child(7):active {
    background-color: #FED1DD;
}

/*//////SKELETON BREATHER FOR TEAMS /////////////*/

.skeleton {
    margin-top: 24px;
}

.skeleton-bar {
    background-color: #e3e3e3;
    border-radius: 4px;
    height: 27px;
    animation: breathe 3s infinite ease-in-out;
}

.skeleton-block {
    background-color: #e3e3e3;
    border-radius: 8px;
    height: 50px;
    width: 100%;
    animation: breathe 3s infinite ease-in-out;
}

.d-flex {
    display: flex;
}

.d-flex-no-margin {
    display: flex;
}

.mr-auto {
    margin-right: auto;
}

/*////// TEXT COLOR HOVER AND ACTIVE STATES ///////*/

.ls24-action-bar__panel-t1:nth-child(1):hover .ls24-action-bar__header,
.ls24-action-bar__panel-t1:nth-child(1):active .ls24-action-bar__header {
    color: #4F4700;
}

.ls24-action-bar__panel-t1:nth-child(2):hover .ls24-action-bar__header,
.ls24-action-bar__panel-t1:nth-child(2):active .ls24-action-bar__header {
    color: #003A5A;
}

.ls24-action-bar__panel-t1:nth-child(3):hover .ls24-action-bar__header,
.ls24-action-bar__panel-t1:nth-child(3):active .ls24-action-bar__header {
    color: #3B0093;
}

.ls24-action-bar__panel-t1:nth-child(4):hover .ls24-action-bar__header,
.ls24-action-bar__panel-t1:nth-child(4):active .ls24-action-bar__header {
    color: #5E4200;
}

.ls24-action-bar__panel-t1:nth-child(5):hover .ls24-action-bar__header,
.ls24-action-bar__panel-t1:nth-child(5):active .ls24-action-bar__header {
    color: #033C39;
}

.ls24-action-bar__panel-t1:nth-child(6):hover .ls24-action-bar__header,
.ls24-action-bar__panel-t1:nth-child(6):active .ls24-action-bar__header {
    color: #561056;
}

.ls24-action-bar__panel-t1:nth-child(7):hover .ls24-action-bar__header,
.ls24-action-bar__panel-t1:nth-child(7):active .ls24-action-bar__header {
    color: #640231;
}

/*////// ACTIVE CLASS BACKGROUND COLOR STATES ///////*/

.ls24-action-bar__panel-t1:nth-child(1).active {
    background-color: #FFEB78;
}

.ls24-action-bar__panel-t1:nth-child(2).active {
    background-color: #CAE6FF;
}

.ls24-action-bar__panel-t1:nth-child(3).active {
    background-color: #DFD9FF;
}

.ls24-action-bar__panel-t1:nth-child(4).active {
    background-color: #FFD6A4;
}

.ls24-action-bar__panel-t1:nth-child(5).active {
    background-color: #AAF6EF;
}

.ls24-action-bar__panel-t1:nth-child(6).active {
    background-color: #FBCFFB;
}

.ls24-action-bar__panel-t1:nth-child(7).active {
    background-color: #FED1DD;
}

/*////// ACTIVE CLASS TEXT COLOR STATES ///////*/

.ls24-action-bar__panel-t1:nth-child(1).active .ls24-action-bar__header {
    color: #4F4700;
}

.ls24-action-bar__panel-t1:nth-child(2).active .ls24-action-bar__header {
    color: #003A5A;
}

.ls24-action-bar__panel-t1:nth-child(3).active .ls24-action-bar__header {
    color: #3B0093;
}

.ls24-action-bar__panel-t1:nth-child(4).active .ls24-action-bar__header {
    color: #5E4200;
}

.ls24-action-bar__panel-t1:nth-child(5).active .ls24-action-bar__header {
    color: #033C39;
}

.ls24-action-bar__panel-t1:nth-child(6).active .ls24-action-bar__header {
    color: #561056;
}

.ls24-action-bar__panel-t1:nth-child(7).active .ls24-action-bar__header {
    color: #640231;
}

.ls24-action-bar-column-content-wrapper {
    width: 100%
}

.ls24-spinner {
    width: 30px;
    height: 30px;
    border: 2.5px solid #1a1a1a;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation .5s linear infinite;
    display:none;
}

.ls24-footer-help {
    font-family: var(--base-font);
    font-size: 12px;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*/////ACTION BAR - TYPE 2////////*/

.ls24-action-bar__panel-t2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    flex: 1;
    padding: 10px;
    transition: background-color 0.3s, transform 0.2s;
    background-color: #fff;
    text-align: left;
}

    .ls24-action-bar__panel-t2:not(:first-child) {
        border-left: 1px solid #ddd;
    }

    .ls24-action-bar__panel-t2.clickable {
        cursor: pointer;
    }

    .ls24-action-bar__panel-t2:nth-child(1):hover {
        background-color: #FFF4BF;
    }

    .ls24-action-bar__panel-t2:nth-child(1):active {
        background-color: #FFEB78;
    }

    .ls24-action-bar__panel-t2:nth-child(2):hover {
        background-color: #C3F7F2;
    }

    .ls24-action-bar__panel-t2:nth-child(2):active {
        background-color: #AAF6EF;
    }

    .ls24-action-bar__panel-t2:nth-child(3):hover {
        background-color: #E4DEFF;
    }

    .ls24-action-bar__panel-t2:nth-child(3):active {
        background-color: #DFD9FF;
    }

    .ls24-action-bar__panel-t2:nth-child(4):hover {
        background-color: #FFEBD5;
    }

    .ls24-action-bar__panel-t2:nth-child(4):active {
        background-color: #FFD6A4;
    }

    .ls24-action-bar__panel-t2:nth-child(5):hover {
        background-color: #E0F0FF;
    }

    .ls24-action-bar__panel-t2:nth-child(5):active {
        background-color: #CAE6FF;
    }

    /*////// TEXT COLOR HOVER AND ACTIVE STATES ///////*/

    .ls24-action-bar__panel-t2:nth-child(1):hover .ls24-action-bar__header,
    .ls24-action-bar__panel-t2:nth-child(1):active .ls24-action-bar__header {
        color: #4F4700;
    }

    .ls24-action-bar__panel-t2:nth-child(2):hover .ls24-action-bar__header,
    .ls24-action-bar__panel-t2:nth-child(2):active .ls24-action-bar__header {
        color: #033C39;
    }

    .ls24-action-bar__panel-t2:nth-child(3):hover .ls24-action-bar__header,
    .ls24-action-bar__panel-t2:nth-child(3):active .ls24-action-bar__header {
        color: #3B0093;
    }

    .ls24-action-bar__panel-t2:nth-child(4):hover .ls24-action-bar__header,
    .ls24-action-bar__panel-t2:nth-child(4):active .ls24-action-bar__header {
        color: #5E4200;
    }

    .ls24-action-bar__panel-t2:nth-child(5):hover .ls24-action-bar__header,
    .ls24-action-bar__panel-t2:nth-child(5):active .ls24-action-bar__header {
        color: #003A5A;
    }

    /*////// ACTIVE CLASS BACKGROUND COLOR STATES ///////*/


    .ls24-action-bar__panel-t2:nth-child(1).active {
        background-color: #FFEB78;
    }

    .ls24-action-bar__panel-t2:nth-child(2).active {
        background-color: #AAF6EF;
    }

    .ls24-action-bar__panel-t2:nth-child(3).active {
        background-color: #DFD9FF;
    }

    .ls24-action-bar__panel-t2:nth-child(4).active {
        background-color: #FFD6A4;
    }

    .ls24-action-bar__panel-t2:nth-child(5).active {
        background-color: #CAE6FF;
    }

    /*////// ACTIVE CLASS TEXT COLOR STATES ///////*/

    /* For example, for the first child */
    .ls24-action-bar__panel-t2:nth-child(1).active .ls24-action-bar__header {
        color: #4F4700;
    }

    /* For the second child */
    .ls24-action-bar__panel-t2:nth-child(2).active .ls24-action-bar__header {
        color: #033C39;
    }

    /* For the third child */
    .ls24-action-bar__panel-t2:nth-child(3).active .ls24-action-bar__header {
        color: #3B0093;
    }

    /* For the fourth child */
    .ls24-action-bar__panel-t2:nth-child(4).active .ls24-action-bar__header {
        color: #5E4200;
    }

    /* For the fifth child */
    .ls24-action-bar__panel-t2:nth-child(5).active .ls24-action-bar__header {
        color: #003A5A;
    }


    /*////// T3 SETTINGS ////*/

.ls24-action-bar__panel-t3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    flex: 1;
    padding: 10px;
    transition: background-color 0.3s, transform 0.2s;
    background-color: #fff;
    text-align: left;
}

    .ls24-action-bar__panel-t3:not(:first-child) {
        border-left: 1px solid #ddd;
    }

    .ls24-action-bar__panel-t3.clickable {
        cursor: pointer;
    }

    .ls24-action-bar__panel-t3:nth-child(1):hover {
        background-color: #FFEBD5;
    }

    .ls24-action-bar__panel-t3:nth-child(1):active {
        background-color: #FFD6A4;
    }

    .ls24-action-bar__panel-t3:nth-child(2):hover {
        background-color: #C3F7F2;
    }

    .ls24-action-bar__panel-t3:nth-child(2):active {
        background-color: #AAF6EF;
    }

    .ls24-action-bar__panel-t3:nth-child(3):hover {
        background-color: #E4DEFF;
    }

    .ls24-action-bar__panel-t3:nth-child(3):active {
        background-color: #DFD9FF;
    }

    .ls24-action-bar__panel-t3:nth-child(4):hover {
        background-color: #FFF4BF;
    }

    .ls24-action-bar__panel-t3:nth-child(4):active {
        background-color: #FFEB78;
    }

    .ls24-action-bar__panel-t3:nth-child(5):hover {
        background-color: #E0F0FF;
    }

    .ls24-action-bar__panel-t3:nth-child(5):active {
        background-color: #CAE6FF;
    }

    .ls24-action-bar__panel-t3:nth-child(6):hover {
        background-color: #E0F0FF;
    }

    .ls24-action-bar__panel-t3:nth-child(6):active {
        background-color: #CAE6FF;
    }


    /*////// TEXT COLOR HOVER AND ACTIVE STATES ///////*/

    .ls24-action-bar__panel-t3:nth-child(1):hover .ls24-action-bar__header,
    .ls24-action-bar__panel-t3:nth-child(1):active .ls24-action-bar__header {
        color: #5E4200;
    }

    .ls24-action-bar__panel-t3:nth-child(2):hover .ls24-action-bar__header,
    .ls24-action-bar__panel-t3:nth-child(2):active .ls24-action-bar__header {
        color: #033C39;
    }

    .ls24-action-bar__panel-t3:nth-child(3):hover .ls24-action-bar__header,
    .ls24-action-bar__panel-t3:nth-child(3):active .ls24-action-bar__header {
        color: #3B0093;
    }

    .ls24-action-bar__panel-t3:nth-child(4):hover .ls24-action-bar__header,
    .ls24-action-bar__panel-t3:nth-child(4):active .ls24-action-bar__header {
        color: #4F4700;
    }

    .ls24-action-bar__panel-t3:nth-child(5):hover .ls24-action-bar__header,
    .ls24-action-bar__panel-t3:nth-child(5):active .ls24-action-bar__header {
        color: #003A5A;
    }

    .ls24-action-bar__panel-t3:nth-child(6):hover .ls24-action-bar__header,
    .ls24-action-bar__panel-t3:nth-child(6):active .ls24-action-bar__header {
        color: #003A5A;
    }

    /*////// ACTIVE CLASS BACKGROUND COLOR STATES ///////*/


    .ls24-action-bar__panel-t3:nth-child(1).active {
        background-color: #FFD6A4;
    }

    .ls24-action-bar__panel-t3:nth-child(2).active {
        background-color: #AAF6EF;
    }

    .ls24-action-bar__panel-t3:nth-child(3).active {
        background-color: #DFD9FF;
    }

    .ls24-action-bar__panel-t3:nth-child(4).active {
        background-color: #FFEB78;
    }

    .ls24-action-bar__panel-t3:nth-child(5).active {
        background-color: #CAE6FF;
    }

    .ls24-action-bar__panel-t3:nth-child(6).active {
        background-color: #CAE6FF;
    }

    /*////// ACTIVE CLASS TEXT COLOR STATES ///////*/

    .ls24-action-bar__panel-t3:nth-child(1).active .ls24-action-bar__header {
        color: #5E4200;
    }

    .ls24-action-bar__panel-t3:nth-child(2).active .ls24-action-bar__header {
        color: #033C39;
    }

    .ls24-action-bar__panel-t3:nth-child(3).active .ls24-action-bar__header {
        color: #3B0093;
    }

    .ls24-action-bar__panel-t3:nth-child(4).active .ls24-action-bar__header {
        color: #4F4700;
    }

    .ls24-action-bar__panel-t3:nth-child(5).active .ls24-action-bar__header {
        color: #003A5A;
    }

    .ls24-action-bar__panel-t3:nth-child(6).active .ls24-action-bar__header {
        color: #003A5A;
    }


/*//////////// CLEAR MAIN SEARCH BAR ////////////// */


.ls24-clear-search {
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZGVmcz4KICAgIDxzdHlsZT4KICAgICAgLmNscy0xLC5jbHMtMiB7CiAgICAgICAgZmlsbDogI2I1YjViNTsKICAgICAgICBzdHJva2Utd2lkdGg6IDBweDsKICAgICAgfQogICAgICAuY2xzLTIgewogICAgICAgIGZpbGwtcnVsZTogZXZlbm9kZDsKICAgICAgfQogICAgPC9zdHlsZT4KICA8L2RlZnM+CiAgPGc+CiAgICA8ZyBpZD0iTGF5ZXJfMSI+CiAgICAgIDxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLDdjLjMuMy4zLjgsMCwxLjFsLTIsMiwyLDJjLjMuMy4zLjgsMCwxLjFzLS44LjMtMS4xLDBjMCwwLDAsMCwwLDBsLTItMi0yLDJjLS4zLjMtLjguMy0xLjEsMC0uMy0uMy0uMy0uNywwLTFsMi0yLTItMmMtLjMtLjMtLjMtLjgsMC0xLjEuMy0uMy43LS4zLDEsMGwyLDIsMi0yYy4zLS4zLjgtLjMsMS4xLDBaIi8+CiAgICAgIDxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEwLDE3YzMuOSwwLDctMy4xLDctN3MtMy4xLTctNy03LTcsMy4xLTcsNywzLjEsNyw3LDdNMTAsMTUuNWMzLDAsNS41LTIuNSw1LjUtNS41cy0yLjUtNS41LTUuNS01LjUtNS41LDIuNS01LjUsNS41LDIuNSw1LjUsNS41LDUuNVoiLz4KICAgIDwvZz4KICA8L2c+Cjwvc3ZnPgo=") no-repeat right -20px center;
    transition: background 0.4s;
    background-size: 20px 20px;
}

    .ls24-clear-search.x {
        background-position: right 5px center;
    }
    .ls24-clear-search.onX {
        cursor: pointer;
    }
    .ls24-clear-search::-ms-clear {
        display: none;
        width: 0;
        height: 0;
    }

/*///////// LS24 GRID SYSTEM /////////*/

.ls24-grid {
    display: grid;
}

.ls24-regular-gap {
    gap: var(--regular-gap);
}

.ls24-grid-top {
    align-items: flex-start;
}

/*/ COLUMNS /*/

.ls24-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.ls24-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.ls24-grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.ls24-grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.ls24-grid-cols-6 {
    grid-template-columns: repeat(6, 1fr);
}

.ls24-grid-cols-7 {
    grid-template-columns: repeat(7, 1fr);
}

.ls24-grid-cols-8 {
    grid-template-columns: repeat(8, 1fr);
}

.ls24-grid-cols-3-2 {
    grid-template-columns: 3fr 2fr;
}

/*/ ROWS /*/

.ls24-grid-rows-2 {
    grid-template-rows: repeat(2, auto);
}

.ls24-grid-rows-3 {
    grid-template-rows: repeat(3, auto);
}

.ls24-grid-rows-4 {
    grid-template-rows: repeat(4, auto);
}

.ls24-grid-rows-5 {
    grid-template-rows: repeat(5, auto);
}

.ls24-grid-rows-6 {
    grid-template-rows: repeat(6, auto);
}

.ls24-grid-rows-7 {
    grid-template-rows: repeat(7, auto);
}

.ls24-grid-rows-8 {
    grid-template-rows: repeat(8, auto);
}

/*/////PARAGRAPH TEXT/////////////*/

.ls24-p {
    font-family: var(--base-font);
    font-size: 13px
}

.ls24-p--strong {
    font-weight: 600;
}
/*//////// FULL VIEW CLASSES //////////*/

.ls24-full-view .ls24-main-header {
    display: none !important;
}

.ls24-full-view .ls24-main-navigation {
    top: 0 !important;
    height: 100vh !important;
}

.ls24-full-view .ls24-main-navigation {
    top: 0 !important;
    height: 100vh !important;
}

.ls24-full-view .ls24-main-body {
    top: 0 !important;
}

.ls24-full-view .ls24-sidekick {
    display: none;
}

.ls24-add-product-action-bar {
    white-space: nowrap;
    position: fixed;
    background-color: #ffffff;
    margin: 0px;
    padding: 10px;
    left: 240px;
    top: 56px;
    z-index: 500;
    border-radius: 0px 12px 0px 0px;
    transition: left 0.3s ease;
}

.ls24-add-product-action-bar__open {
    width: calc(100% - 640px);
}

.ls24-add-product-action-bar__closed {
    width: calc(100% - 240px);
}

/*////////////// HEADER ////////////////*/

.ls24-main-header {
    height: 56px;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.ls24-header__right-cornice {
    position: absolute;
    top: 56px;
    right: 0px;
    width: 12px;
    z-index: 30;
}

.ls24-header__right-cornice img {
    position:absolute;
}

.ls24-header__left-cornice {
    display: none;
}

    .ls24-header__left-cornice img {
        position: absolute;
    }

.ls24-main-header__content {
    display: grid;
    grid-template-columns: auto 216px 1fr auto auto auto auto auto auto;
    width: 100%;
    align-items: center;
}

.ls24-main-header__hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

    .ls24-main-header__hamburger-menu .ls24-main-header__hamburger-menu-bar {
        width: 18px;
        height: 2px;
        background-color: white;
        margin: 2px 0;
        transition: 0.3s;
    }

.ls24-main-header__logo-box {
    margin-left: 16px;
}

.ls24-main-header__logo-box-img {
    max-height: 24px;
}

.ls24-main-header__search-field-wrapper {
    position: relative;
    width: 100%;
}

.ls24-main-header__search-field {
    padding-left: 35px;
    border: 0.66px solid #616161;
    background-color: #303030;
    border-radius: 8px;
    height: 32px;
    transition: ease-in-out, width 0.5s linear;
    color: #f9fafb;
    width: 100%;
}

    .ls24-main-header__search-field:focus {
        color: #202223;
        background-color: #fff;
    }

        .ls24-main-header__search-field ~ svg:first-of-type {
            width: 20px;
            height: 20px;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 10px;
            fill: #e3e3e3;
        }

    .ls24-main-header__search-field:focus ~ svg:first-of-type {
        fill: #1a1a1a;
    }

    .ls24-main-header__search-field ~ svg:nth-of-type(2) {
        width: 20px;
        height: 20px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
        fill: #929292;
        cursor: pointer;
        display: none;
    }

    .ls24-main-header__search-field:not(:placeholder-shown) ~ svg:nth-of-type(2) {
        display: block;
    }

.ls24-main-header__search-field-wrapper .ls24-main-header__search-field:focus svg {
    fill: #007bff;
}

.ls24-main-header__mobile-drawer {
    display: none;
}

.custom-select {
    position: relative;
    display: inline-block;
}

.ls24-main-header__select {
    position: relative;
    display: inline-block;
}

.ls24-main-header__select-button {
    background-color: #303030;
    color: #e3e3e3;
    font-size: 12px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    height: 32px;
    padding: 0 8px 0 12px;
    display: flex;
    align-items: center;
}

    .ls24-main-header__select-button:hover {
        background-color: #4a4a4a;
    }

    .ls24-main-header__select-button:active {
        background-color: #616161;
    }

.ls24-main-header__select-icon {
    margin-left: 8px;
    display: flex;
    align-items: center;
}

    .ls24-main-header__select-icon svg {
        width: 20px;
        height: 20px;
        fill: #e3e3e3;
    }

.ls24-main-header__profile-dropdown {
    position: absolute;
    background-color: #f9f9f9;
    min-width: 180px;
    z-index: 100;
    border-radius: 12px;
    padding: 8px;
    box-shadow: inset 1px 0px 0 0 rgba(0, 0, 0, 0.13), inset -1px 0px 0 0 rgba(0, 0, 0, 0.13), inset 0px -1px 0 0 rgba(0, 0, 0, 0.17), inset 0px 1px 0 0 rgba(204, 204, 204, 0.5), 0px 4px 6px -2px rgba(26, 26, 26, 0.25);
    right: 23px;
    top: 38px;
    display: none;
}

.ls24-main-header__profile-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
}

.ls24-main-header__notification-dropdown-body-empty-state {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfcfcf;
}

.ls24-main-header__notification-dropdown {
    position: absolute;
    background-color: #f9f9f9;
    z-index: 1;
    border-radius: 12px;
    box-shadow: inset 1px 0px 0 0 rgba(0, 0, 0, 0.13), inset -1px 0px 0 0 rgba(0, 0, 0, 0.13), inset 0px -1px 0 0 rgba(0, 0, 0, 0.17), inset 0px 1px 0 0 rgba(204, 204, 204, 0.5), 0px 4px 6px -2px rgba(26, 26, 26, 0.25);
    right: 0px;
    top: 38px;
    display: none;
    width: 350px;
}

.ls24-main-header__notification-dropdown-header {
    display: flex;
    padding: 16px;
    border-bottom: 1px solid #EBEBEB;
    height: 24px;
}

.ls24-main-header__notification-dropdown-body {
    height: 218px;
    overflow-y: auto;
}

.ls24-main-header__notification-item {
    display: flex;
    gap: 12px;
    padding: 12px 12px 12px 0;
    border-bottom: 1px solid #EBEBEB;
}

.ls24-main-header__notification-item-details-header-close-btn {
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background-color: rgb(239 239 239);
    padding: 0;
    height: 20px;
}

    .ls24-main-header__notification-item-details-header-close-btn:hover {
        background-color: #ddd;
    }

    .ls24-main-header__notification-item-details-header-close-btn:active {
        background-color: #ddddddab;
    }


    .ls24-main-header__notification-item-details-header-close-btn svg {
        width: 20px;
        fill: #1a1a1a;
    }

.ls24-main-header__notification-item-details {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.ls24-main-header__notification-item-border {
    width: 3px;
    background-color: #1a1a1a;
}

.ls24-main-header__notification-dropdown-header-dismiss-btn {
    font-family: var(--base-font);
    font-weight: 550;
    border-radius: 4px;
    background-color: rgb(239 239 239);
    cursor: pointer;
    font-size: 12px;
    padding: 4px 8px;
}

    .ls24-main-header__notification-dropdown-header-dismiss-btn:hover {
        background-color: #ddd;
    }

    .ls24-main-header__notification-dropdown-header-dismiss-btn:active {
        background-color: #ddddddab;
    }

.ls24-main-header__notification-dropdown-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #EBEBEB;
    padding: 20px 16px;
    height: 24px;
    cursor: pointer;
    font-family: var(--base-font);
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    width: 100%;
    border: none;
    border-radius: 0 0 14px 14px;
    background-color: rgb(26 26 26);
}

.ls24-main-header__notification-item-details-body {
    display: flex;
    margin-right: auto;
}

.ls24-main-header__notification-item-details-body-download-btn {
    font-family: var(--base-font);
    cursor: pointer !important;
    border: none !important;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 10px;
    font-weight: 550;
    border-radius: 4px;
    padding: 0px 8px;
}

#nButtonText {
    line-height: 1;
}

#nMessage {
    margin-bottom: 8px;
}

.ls24-main-header__notification-item-progress-bar {
    width: 100%;
    height: 3px;
    background-color: #e6e6e6;
    margin-top: 8px;
    position: relative;
}

.ls24-main-header__notification-item-progress-bar-value {
    position: absolute;
    right: 0;
    top: -16px;
    color: #1a1a1a;
    font-size: 11px;
}

.ls24-main-header__notification-item-progress-bar-fill {
    position: absolute;
    height: 3px;
    top: 0;
    left: 0;
    width: 50%;
    background-color: #1a1a1a;
}

.ls24-main-header__notification-item-details-header {
    font-family: var(--base-font);
    font-size: 12px;
    font-weight: 500;
    color: #1a1a1a;
    display: flex;
}

.ls24-main-header__notification-item-details-header-title {
    margin-right: auto;
}

.ls24-main-header__notification-dropdown-header-title {
    font-family: var(--base-font);
    font-size: 13px;
    font-weight: 550;
    color: #1a1a1a;
    margin-right: auto;
}

.ls24-main-header__select-dropdown {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    z-index: 1;
    border-radius: 12px;
    padding: 8px;
    box-shadow: inset 1px 0px 0 0 rgba(0, 0, 0, 0.13), inset -1px 0px 0 0 rgba(0, 0, 0, 0.13), inset 0px -1px 0 0 rgba(0, 0, 0, 0.17), inset 0px 1px 0 0 rgba(204, 204, 204, 0.5), 0px 4px 6px -2px rgba(26, 26, 26, 0.25);
    left: -10px;
    top: 38px;
}

.ls24-main-header__select-item {
    background-color: #f9f9f9;
    color: black;
    padding: 8px;
    border: none;
    text-align: left;
    width: 100%;
    cursor: pointer;
    border-radius: 8px;
    display: block;
    cursor: pointer;
}

    .ls24-main-header__select-item:hover {
        background-color: #ddd;
    }

    .ls24-main-header__select-item:active {
        background-color: #ddddddab;
    }

.ls24-main-header__merchant-button:hover {
    background-color: #4a4a4a;
}

.ls24-main-header__merchant-button:active {
    background-color: #616161;
}

.ls24-main-header__merchant-button svg {
    width: 20px;
    height: 20px;
    fill: #e3e3e3;
}

.ls24-main-header__seller-button {
    height: 32px;
    display: none;
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
    padding: 0 8px;
    background-color: #303030;
    margin-left: 8px;
    position: relative;
}

    .ls24-main-header__seller-button:hover {
        background-color: #4a4a4a;
    }

    .ls24-main-header__seller-button:active {
        background-color: #616161;
    }

    .ls24-main-header__seller-button svg {
        width: 20px;
        height: 20px;
        fill: #e3e3e3;
    }

.ls24-main-header__icon-button {
    height: 32px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
    padding: 0 8px;
    background-color: #303030;
    position: relative;
}

    .ls24-main-header__icon-button:hover {
        background-color: #4a4a4a;
    }

    .ls24-main-header__icon-button:active {
        background-color: #616161;
    }

    .ls24-main-header__icon-button svg {
        width: 20px;
        height: 20px;
        fill: #e3e3e3;
    }

.ls24-main-header__icon-button-counter {
    font-family: var(--base-font) !important;
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 9px;
    color: #fff;
    background-color: red;
    border-radius: 100px;
    line-height: 1;
    font-weight: 600;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls24-main-header__profile-button {
    margin-right: 24px;
    display: flex;
    align-items: center;
    padding: 0 0 0 12px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    color: #e3e3e3;
    background-color: #303030;
    text-decoration: none !important;
}

    .ls24-main-header__profile-button:hover {
        background-color: #4a4a4a;
        text-decoration: none !important;
        color: #e3e3e3 !important;
    }

    .ls24-main-header__profile-button:active {
        background-color: #616161;
        text-decoration: none !important;
    }

.ls24-main-header__profile-button-username {
    font-family: var(--base-font) !important;
    font-weight: 600;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none !important;
}

.ls24-main-header__profile-button-user-init {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c530c5;
    padding: 8px;
    margin-left: 8px;
    margin-right: 1px;
    border-radius: 7px;
    color: #fff;
    font-size: 10px;
    font-weight: 550;
    height: 30px;
    width:33px;
}

/*////////////// SIDE NAVIGATION ////////////////*/

.ls24-main-navigation {
    height: calc(100vh - 56px);
    width: 240px;
    position: fixed;
    top: 56px;
    left: 0;
    background-color: #ebebeb;
    color: white;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: left 0.3s ease;
    z-index: 0;
    padding-top: 12px;
}

.ls24-navigation-cornice {
    width: 11px;
    height: 11px;
    background-color: var(--primary-color);
}

.ls24-navigation-cornice__inner {
    width: 30px;
    height: 30px;
    border-top-left-radius: 12px;
    background-color: #ebebeb;
}

.ls24-main-navigation__dropdown {
    position: relative;
}

.ls24-main-navigation__menu-item {
    font-family: var(--base-font) !important;
    display: flex;
    align-items: center;
    color: #303030;
    font-weight: 600 !important;
    font-size: 13px;
    padding: 5px 8px;
    text-decoration: none !important;
    border-radius: 8px;
    margin: 0 12px;
    cursor: pointer;
}

    .ls24-main-navigation__menu-item svg {
        width: 20px;
        margin-right: 8px;
        fill: #4a4a4a;
    }

    .ls24-main-navigation__menu-item:hover {
        background-color: #f1f1f1;
        color: #303030;
    }

    .ls24-main-navigation__menu-item:active {
        color: #303030;
    }

    .ls24-main-navigation__menu-item:focus {
        color: #303030;
    }

.ls24-main-navigation__dropdown-content {
    display: none;
    background-color: #ebebeb;
    padding: 0;
    margin: 0 0 8px 0;
}

.ls24-main-navigation__menu-item.active {
    background-color: #fafafa;
}

.ls24-main-navigation__dropdown-content .ls24-main-navigation__dropdown-item {
    font-family: var(--base-font) !important;
    font-weight: 500;
    color: #616161;
    padding: 7px 20px 7px 36px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    border-radius: 8px;
    margin: 0 12px;
    cursor: pointer;
    line-height: 1.2;
}

    .ls24-main-navigation__dropdown-content .ls24-main-navigation__dropdown-item:hover {
        background-color: #f1f1f1;
    }

    .ls24-main-navigation__dropdown-content .ls24-main-navigation__dropdown-item.active {
        background-color: #fafafa;
        font-weight: 700;
    }

.ls24-main-navigation__dropdown.active .ls24-main-navigation__dropdown-content {
    display: block;
}

.ls24-main-navigation__dropdown.active .ls24-main-navigation__dropdown-toggle {
    background-color: #57575700;
}

.ls24-main-navigation__bottom-buttons {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: 16px;
}

.ls24-main-navigation__popup-overlay {
    background-color: #00000074;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    z-index: 10;
}

.ls24-main-navigation__overlay {
    background-color: #00000074;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    z-index: 1;
}

.ls24-main-body {
    display: flex;
    position: absolute;
    top: 56px;
    left: 240px;
    right: 0px;
    bottom: 0px;
    transition: left 0.3s ease;
    background-color: #f1f1f1;
}

.ls24-main-page {
    background-color: #f1f1f1;
    border-radius: 0px 12px 0px 0px;
    position:relative;
}

.ls24-main-page--sk-open {
    width: calc(100% - 400px);
}

.ls24-main-page--sk-closed {
    width: 100%;
}

    .ls24-cornice-right {
        position: absolute;
        top: 0;
        right: 0;
        background-color: #1a1a1a;
        width: 11px;
        height: 11px;
    }

.ls24-cornice-right__inner {
    width: 30px;
    height: 30px;
    border-top-right-radius: 12px;
    background-color: #f1f1f1;
    position: absolute;
    top: 0;
    right: 0;
}

.ls24-cornice-left {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #1a1a1a;
    width: 11px;
    height: 11px;
    display: none;
}

.ls24-cornice-left__inner {
    width: 30px;
    height: 30px;
    border-top-left-radius: 12px;
    background-color: #f1f1f1;
    position: absolute;
    top: 0;
    left: 0;
}

.ls24-main-header__mobile-select-popup {
    width: 95%;
    border-radius: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0rem 1.25rem 1.25rem -0.5rem rgba(26, 26, 26, 0.28);
}

.ls24-main-header__mobile-select-popuclose-btn {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 4px;
    border: none;
    cursor: pointer;
}

    .ls24-main-header__mobile-select-popuclose-btn:hover {
        background-color: #0000000d;
    }

    .ls24-main-header__mobile-select-popuclose-btn:active {
        background-color: #00000014;
    }

    .ls24-main-header__mobile-select-popuclose-btn span {
        width: 20px;
        height: 20px;
    }

.ls24-main-header__mobile-select-popuclose-btn-icon {
    fill: #8a8a8a;
}

.ls24-main-header__mobile-select-popuclose-btn:hover .ls24-main-header__mobile-select-popuclose-btn-icon {
    fill: #616161;
}

.ls24-main-header__mobile-select-popuclose-btn:active .ls24-main-header__mobile-select-popuclose-btn-icon {
    fill: #616161;
}

.ls24-main-header__popup-modal-header {
    display: flex;
    align-items: center;
    background-color: #f3f3f3;
    padding: 16px;
    border-radius: 12px 12px 0 0;
}

.ls24-main-header__popup-modal-title {
    font-family: var(--base-font);
    font-weight: 650;
    font-size: 14px;
    margin-right: auto;
}

.ls24-main-header__popup-modal-body {
    padding: 16px;
}

.ls24-main-header__profile-dropdown-btn {
    font-family: var(--base-font);
    font-weight: 550;
    font-size: 13px;
    border-radius: 8px;
    min-height: 32px;
    display: flex;
    align-items: center;
    background-color: transparent;
    width: 100%;
    color: #000;
    cursor: pointer;
    border: none;
    padding: 8px;
    text-decoration: none !important;
    line-height: 1;
}

    .ls24-main-header__profile-dropdown-btn:hover {
        background-color: #ddd;
        text-decoration: none !important;
        color: #000 !important;
    }

    .ls24-main-header__profile-dropdown-btn:focus {
        background-color: #ddddddab;
        text-decoration: none;
        color: #000 !important;
    }

    .ls24-main-header__profile-dropdown-btn:active {
        background-color: #ddddddab;
        text-decoration: none;
        color: #000 !important;
    }

.ls24-main-header__collapse-btn {
    font-family: var(--base-font);
    font-weight: 550;
    font-size: 13px;
    border-radius: 8px;
    min-height: 32px;
    display: flex;
    align-items: center;
    background-color: transparent;
    width: 100%;
    color: #000;
    cursor: pointer;
    border: none;
    padding: 8px;
    text-decoration: none !important;
    line-height: 1;
}

    .ls24-main-header__collapse-btn:hover {
        background-color: #ddd;
        text-decoration: none !important;
        color: #000 !important;
    }

    .ls24-main-header__collapse-btn:focus {
        background-color: #ddddddab;
        text-decoration: none;
        color: #000 !important;
    }

    .ls24-main-header__collapse-btn:active {
        background-color: #ddddddab;
        text-decoration: none;
        color: #000 !important;
    }

.ls24-main-header__collapse-btn svg {
    width: 20px;
    height: 20px;
    fill: red;
}

.test-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/*////////////// SIDEKICK ////////////////*/

.ls24-sidekick {
    height: calc(100vh - 56px);
    background-color: #1a1a1a;
    width: 100%;
    max-width: 400px;
    flex-direction: column;
    position: fixed;
    right: 0;
    padding-left:4px;
}

.ls24-sidekick__left-cornice {
    position: absolute;
    top: 0;
    left: -12px;
    width: 12px;
    z-index: 30;
}

    .ls24-sidekick__left-cornice img {
        position:absolute ;
    }

.ls24-sidekick__header {
    border-radius: 12px 12px 0px 0px;
    display: flex;
    padding: 12px;
    font-family: var(--base-font);
    color: #303030;
    background-color: #fff;
}

.ls24-sidekick__header-title {
    font-family: var(--base-font);
    font-size: 13px;
    font-weight: 600;
    color: #303030;
}

.ls24-sidekick__header-button {
    display: flex;
    padding: 8px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background-color: transparent;
}

    .ls24-sidekick__header-button:hover {
        background-color: #f1f1f1;
    }

    .ls24-sidekick__header-button:active {
        background-color: #ebebeb;
    }

    .ls24-sidekick__header-button svg {
        width: 16px;
        fill: #4a4a4a;
    }

.ls24-sidekick__header-btn-group {
    display: flex;
    gap: 8px;
}

.ls24-sidekick__body {
    flex-grow: 1;
    background-color: #fff;
    width: 100%
}

.ls24-sidekick__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0px 30px;
}

.ls24-sidekick__mascot-img img {
    width: 65px;
}

.ls24-sidekick__footer {
    background-color: #ffffff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 20px;
}

.ls24-sidekick__legal {
    font-family: var(--base-font);
    font-weight: 300;
    font-size: 12px;
    color: #616161;
    text-align: center;
}

.ls24-sidekick__intro-help-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ls24-sidekick__welcome-msg {
    font-family: var(--base-font);
    font-weight: 600;
    font-size: 20px;
}

.ls24-sidekick__intro-help-group-btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    max-width: 289px;
    word-wrap: break-word;
    white-space: normal;
    text-align: left;
    border: none;
    border-radius: 8px;
    padding: 12px;
    background-color: #f7f7f7;
    font-size: 12px;
    ;
}

    .ls24-sidekick__intro-help-group-btn svg {
        min-width: 20px;
        height: 20px;
        fill: #7126ff;
        margin-right: 8px;
    }

    .ls24-sidekick__intro-help-group-btn:hover {
        background-color: #f1f1f1;
    }

    .ls24-sidekick__intro-help-group-btn:active {
        background-color: #ebebeb;
    }

.dynamic-textarea {
    font-family: var(--base-font);
    width: 85%;
    min-height: 40px;
    max-height: 50px;
    overflow-y: auto;
    resize: none;
    margin-bottom: 8px;
    border-radius: 8px;
    padding: 8px;
    border: none;
    background-color: #f1f1f1;
}

    .dynamic-textarea:focus {
        border: 3px #7126ff;
    }

.ls24-sidekick__question {
    overflow-y: auto;
}

.ls24-sidekick__question-grid {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
    height: 100%;
    padding: 0px 20px;
}

.ls24-sidekick__question-item {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

    .ls24-sidekick__question-item:last-child {
        margin-bottom: 20px;
    }

    .ls24-sidekick__question-item img {
        width: 25px;
    }

.ls24-sidekick__question-item-content {
    font-family: var(--base-font);
    font-size: 12px;
    padding-top: 16px;
    color: #303030;
}

#sideKickComponent {
    display: none;
}

.ls24-return-merchandise-grid {
    display:flex;
    gap:8px;
}
/*////////////// CHECK BOX TYPE 2 CLASSES ////////////////*/
.ls24-checkbox-col-spacer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ls24-checkbox-t2 {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.ls24-checkbox-t2__input {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background-color: #fdfdfd;
    border: 0.66px solid #8a8a8a;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 8px 0px 0px !important;
    padding: 0px !important;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    outline: none;
    box-shadow: none;
}

    .ls24-checkbox-t2__input:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        margin: 0px;
    }

        .ls24-checkbox-t2__input:checked::after {
            content: '';
            display: block;
            width: 4px;
            height: 8px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg) translateY(-1px);
            opacity: 0;
            animation: fadeInCheck 0.2s forwards ease;
        }

    .ls24-checkbox-t2__input:active {
        box-shadow: inset 0 0 0 2px var(--primary-color);
    }


.ls24-checkbox-t2__input:hover {
    border-color: var(--primary-color);
}

    .ls24-checkbox-t2__input:focus {
        outline: none !important;
    }

/* Label text */

.ls24-checkbox-t2__label {
    font-family: var(--base-font);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
    user-select: none;
}

@keyframes fadeInCheck {
    to {
        opacity: 1;
    }
}

.ls24-drag-title {
    font-family: var(--base-font);
    font-weight: 450;
    font-size: 13px;
    color: #303030;
}

.ls24-tag__close {
    cursor: pointer;
    padding-left: 12px;
}

.cat {
    border-radius: 8px;
    background-color: #e3e3e3;
    padding: 4px 8px;
    display:flex;
    width: fit-content;
    margin-bottom: 4px;
}

.cat:not(:last-child) {
    margin-right: 4px;
}

.ls24-promo-category-container {
    padding: 16px 16px 12px 16px;
    border: .66px solid #8a8a8a;
    border-radius: 12px;
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
}

.ls24-pre-promo__title {
    font-family: var(--base-font);
    font-weight: 550;
    font-size: 14px;
}

.ls24-pre-promo__header {
    font-family: var(--base-font);
    font-weight: 550;
    font-size: 14px;
    padding: 16px;
    background-color: #e8e8e8;
    border-radius: 12px 12px 0px 0px;
}

.ls24-pre-promo__divider {
    margin: 0px 8px;
}

.ls24-tri-button {
    font-family: var(--base-font);
    font-weight: 550;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #303030;
    background-color: #ffffff;
    padding: 0 12px;
    cursor: pointer;
    height: 32px;
}

    .ls24-tri-button svg {
        height: 20px;
        margin-right: 4px;
    }

    .ls24-tri-button--left {
        border-radius: 8px 0px 0px 8px;
        border: 1px solid #e3e3e3;
    }

    .ls24-tri-button--left:hover {
        background-color: #e3e3e3;
    }

.ls24-tri-button--center {
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
}

    .ls24-tri-button--center:hover {
        background-color: #e3e3e3;
    }

.ls24-tri-button--right {
    border-radius: 0px 8px 8px 0px;
    border: 1px solid #e3e3e3 !important;
}

    .ls24-tri-button--right:hover {
        background-color: #e3e3e3;
    }

.ls24-card-promo-title {
    font-family: var(--base-font);
    font-size: 14px;
    font-weight: 550;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ls24-promo-card-body {
    font-family: var(--base-font);
    font-size: 12px;
    font-weight: 450;
    line-height: 20px;
    color: #303030;
    margin: 0px !important;
    padding: 0px !important;
    list-style: none;
}

.ls24-promo-strng-title {
    font-weight: 600;
}

.ls24-promo-counter {
    font-family: var(--base-font);
    font-size: 24px;
    font-weight: 650;
    line-height: 20px;
    color: #303030;
}


.ls24-card__promo-header-row {
    display: flex;
    width: 100%;
}

.ls24-card__promo-header-row td:nth-child(2) {
    margin: 0 8px;
}

.ls24-card__promo-header-row td:nth-child(3) {
    margin-right: auto;
}

.ls24-promotion-title {
    font-family: var(--base-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #303030;
    margin-bottom: 12px;
}

/*//////// NOTES HEADING /////////*/

.ls24-notes-heading {
    font-family: var(--base-font);
    color: #202223;
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
}


.ls24-data-options-container {
    display: flex;
}

.ls24-search-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
}

.ls24-search-customer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.ls24-import-file-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: start;
}

.ls24-form-field-spacer {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
}

.ls24-card-spacer {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
}

.ls24-promotion-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    align-items: start;
}



.ls24-empty-state__header {
    font-family: var(--base-font);
    font-size: 14px;
    font-weight: 650;
    line-height: 20px;
    color: #303030;
    margin-bottom: 8px;
}

.ls24-empty-state__body {
    font-family: var(--base-font);
    font-size: 12px;
    font-weight: 450;
    color: #303030;
    margin-bottom: 4px;
    margin-bottom: 16px;
}

    .ls24-empty-state__wrapper {
        height: calc(100vh - 56px);
        display: flex;
        align-items: center;
        justify-content: center;
    }

.ls24-container {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 16px; 
}

.ls24-bulk-editor-spacer {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 8px;
}


.ls24-bi-step-counter-li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.ls24-bulk-import-step-counter {
    list-style: none;
    display: flex;
    margin: 0px;
    padding: 0px;
}

.ls24-bulk-import-step-counter li:not(:last-child) {
    margin-right: 28px;
}

.ls24-bi-step {
    margin-right: 4px !important;
    padding: 0px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.ls24-sort-by-header {
    background-color: #f3f3f3;
    border-radius: 8px 8px 0px 0px;
}

/*ACTION LIST/*/

.ls24-action-btn-type-2 {
    position: relative;
    display: inline-block;
}

.ls24-action-btn-type-2__toggle {
    font-weight: 550;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #303030;
    background-color: #ffffff;
    padding: 0 6px 0 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: inset 0px -1px 0px 0 rgba(181, 181, 181, 1), inset -1px 0px 0px 0 rgba(227, 227, 227, 1), inset 1px 0px 0px 0 rgba(227, 227, 227, 1), inset 0px 1px 0px 0px rgba(227, 227, 227, 1);
    min-width: 150px;
    min-height: 28px;
    max-height: 28px;
    white-space: nowrap;
}

.ls24-action-btn-type-2__label {
    margin-right: auto;
}

.ls24-action-btn-type-2__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.ls24-action-btn-type-2.open .ls24-action-btn-type-2__icon {
    transform: rotate(180deg);
}

.ls24-action-btn-type-2__icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.ls24-action-btn-type-2__toggle:hover {
    background-color: #f1f2f3;
}

.ls24-action-btn-type-2__toggle.active {
    background-color: #f7f7f7;
    box-shadow: -0.0625rem 0rem 0.0625rem 0rem rgba(26,26,26,.122) inset, 0.0625rem 0rem 0.0625rem 0rem rgba(26,26,26,.122) inset, 0rem 0.125rem 0.0625rem 0rem rgba(26,26,26,.2) inset;
}

.ls24-action-btn-type-2__menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background-color: #ffffff;
    border: 1px solid #dcdfe1;
    border-radius: 12px;
    min-width: 180px;
    box-shadow: 0rem 0.25rem 0.375rem -0.125rem rgba(26,26,26,.2);
    padding: 4px;
    z-index: 100;
    visibility: hidden;
}

.ls24-action-btn-type-2.open .ls24-action-btn-type-2__menu {
    display: flex;
    visibility: visible;
}

.ls24-action-btn-type-2__item {
    background: none;
    border: none;
    text-align: left;
    padding: 8px 10px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 6px;
    color: #303030;
    width: 100%;
    font-weight: 550;
}

    .ls24-action-btn-type-2__item:hover {
        background-color: #f1f1f1;
    }

    .ls24-action-btn-type-2__item.active {
        background-color: #ebebeb;
    }

.ls24-action-btn-type-2__toggle.active .ls24-action-btn-type-2__label {
    transform: translateY(2px);
}


    /*END OF ACTION LIST*/

.ls24-action-list-btn-group {
    display: grid;
    gap: 4px;
    margin: 6px;
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.bootbox .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: inset 1px 0px 0px 0px rgba(0, 0, 0, 0.13), inset -1px 0px 0px 0px rgba(0, 0, 0, 0.17), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.17), inset 0px 1px 0px 0px rgba(204, 204, 204, 0.5), 0px 20px 20px -8px rgba(26, 26, 26, 0.28);
}

div.bootbox[style*="padding-right: 15px;"] {
    padding-right: 0;
}

div.bootbox[style*="display: block;"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.bootbox .modal-dialog {
    margin: 0;
}

.bootbox .modal-bodt {
    padding: 16px;
}

.bootbox .modal-footer {
    padding: 16px;
}

    .bootbox .modal-footer .btn-primary {
        font-family: var(--base-font);
        font-size: 12px;
        font-weight: 550;
        display: inline-block;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        background-color: #303030;
        padding: 0 12px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        box-shadow: inset 0px 2px 0px 0 rgba(255, 255, 255, 0.2), inset 2px 0px 0px 0 rgba(255, 255, 255, 0.2), inset -2px 0px 0px 0 rgba(255, 255, 255, 0.2), inset 0px -1px 0px 1px rgba(0, 0, 0, 1), inset 0px 1px 0px 0 rgba(0, 0, 0, 1) !important;
        position: relative;
        min-height: 28px;
        max-height: 28px;
    }

    .bootbox .modal-footer .btn-primary:hover {
        background-color: #1a1a1a;
        text-decoration: none;
        color: #e3e3e3
    }

    .bootbox .modal-footer .btn-primary:active {
        background-color: #1a1a1a;
        color: #cccccc;
        background-image: linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
        box-shadow: inset 0px 3px 0px 0 rgba(0, 0, 0, 1) !important;
        line-height: 30px;
    }

    .bootbox .modal-footer .btn-default {
        font-family: var(--base-font);
        font-weight: 550;
        font-size: 12px;
        display: inline-block;
        align-items: center;
        justify-content: center;
        color: #303030;
        background-color: #ffffff;
        padding: 0 12px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        box-shadow: inset 0px -1px 0px 0 rgba(181, 181, 181, 1), inset -1px 0px 0px 0 rgba(227, 227, 227, 1), inset 1px 0px 0px 0 rgba(227, 227, 227, 1), inset 0px 1px 0px 0px rgba(227, 227, 227, 1) !important;
        position: relative;
        min-height: 28px;
        max-height: 28px;
    }

    .bootbox .modal-footer .btn-default:hover {
        background-color: #fafafa;
        box-shadow: inset 0px -1px 0px 0 rgba(204, 204, 204, 1), inset 1px 0px 0px 0 rgba(235, 235, 235, 1), inset -1px 0px 0px 0 rgba(235, 235, 235, 1), inset 0px 1px 0px 0px rgba(235, 235, 235, 1) !important;
        text-decoration: none;
    }

    .bootbox .modal-footer .btn-default:active {
        background-color: #1a1a1a;
        color: #303030;
        background-color: #f7f7f7;
        box-shadow: inset -1px 0px 1px 0 rgba(26, 26, 26, 0.14), inset 1px 0px 1px 0 rgba(26, 26, 26, 0.12), inset 0px 2px 1px 0 rgba(26, 26, 26, 0.2) !important;
    }

.ls24-sort-icon {
    width:18px;
    height:18px;
}

.brd-right {
    border-right: .66px solid #E3E3E3;
}

.brdr-radius-12 {
    border-radius: 12px !important;
}

.brd-btm-cccccc {
    border-bottom: .66px solid #E3E3E3;
}

.brd-btm-e3e3e3 {
    border-bottom: .66px solid #E3E3E3;
}

.d-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 4px;
}

.w-100 {
    width: 100%;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-center-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.align-top {
    align-items: flex-start;
}

.d-none {
    display: none !important;
}

.fit-content-height {
    height: fit-content;
}

.d-full-screen {
    position: fixed;
    top: 56px;
    right: 0;
    left: 0;
    bottom:0;
    z-index: 200000;
    height: calc(100vh - 56px);
    border-radius: 0px !important;
}

.fd-column {
    flex-direction: column;
}

.ls24-field-error-message {
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.ls24-field-error-message__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

    .ls24-field-error-message__icon-wrapper svg {
        width: 14px;
        height: 14px;
        fill: #8e1f0b;
    }

.ls24-field-error-message__text {
    font-family: var(--base-font);
    color: #8e1f0b;
    font-weight: 450;
    font-size: 13px;
}

/*//////MODAL POPUP//////*/

.ls24-popup-backdrop {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background-color: #00000080;
    animation: fade-in 200ms 1 forwards;
    opacity: 1;
    backface-visibility: hidden;
    will-change: opacity;
}

.ls24-popup-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 620px;
}

.ls24-modal__header {
    display:flex;
    align-items: center;
    width: 100%;
    background-color: #f3f3f3;
    padding: 16px;
    border-radius: 12px 12px 0 0;
    min-height: 50px;
}

.ls24-modal__header-title {
    font-family: var(--base-font);
    font-weight: 650;
    font-size: 14px;
    margin-right: auto;
}

.ls24-button-group {
    display:flex;
    align-items: center;
    justify-content:flex-start;
}

.ls24-banner-button-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.ls24-action-button-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap:8px;
}

.ls24-button-group > *:not(:last-child) {
    margin-right: 8px;
}

/*///////////////MANAGE PRODUCTS OVERVIEW/////////////////*/

.ls24-manage-products-overview-bar {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-bottom: 24px;
}

    .ls24-manage-products-overview-bar li {
        flex-grow: 1;
        padding: 16px;
        font-family: var(--base-font);
        font-weight: 500;
        cursor: pointer;
    }

    /*//////TOOL TIP//////*/

    .ls24-tooltip {
        position: relative;
    }

    .ls24-tooltip:hover .tooltip {
        visibility: visible;
        opacity: 1;
    }

.tooltip {
    font-family: var(--base-font);
    line-height: 1.4;
    width: 140px;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 105%;
    left: 50%;
    margin-left: -70px;
    opacity: 0;
    transition: opacity 0.3s;
}

    .tooltip::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #1a1a1a transparent transparent transparent;
    }


/* Input field */

.ls24-input-search-field {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('/images/select-icon.svg') no-repeat;
    padding: 8px 8px 8px 32px !important;
    background-size: 8px;
    background-position: calc(100% - 16px) center;
    font-family: var(--base-font);
    color: #303030;
    font-weight: 450;
    font-size: 13px;
    border: solid 0.77px rgb(138, 138, 138);
    background-color: rgb(253, 253, 253) !important;
    border-radius: 8px;
    min-height: 32px;
    max-height: 32px;
    width: 100%;
}

    .ls24-input-search-field:hover {
        border: solid 0.77px rgb(97, 97, 97);
        background-color: rgb(250, 250, 250);
    }

    .ls24-input-search-field:active {
        border: solid 1px rgb(26, 26, 26);
        background-color: rgb(247, 247, 247);
    }

    .ls24-input-search-field:focus {
        border: solid 1px rgb(97, 97, 97);
        background-color: rgb(250, 250, 250);
        outline: 2px solid #005bd3;
        outline-offset: 1px;
    }

    /* Number Field */

.ls24-input-number-field {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('/images/select-icon.svg') no-repeat;
    padding: 8px 8px 8px 8px !important;
    background-size: 8px;
    background-position: calc(100% - 16px) center;
    font-family: var(--base-font);
    color: #303030;
    font-weight: 450;
    font-size: 13px;
    border: solid 0.77px rgb(138, 138, 138);
    background-color: rgb(253, 253, 253) !important;
    border-radius: 8px;
    min-height: 32px;
    max-height: 32px;
    width: 100%;
}

    .ls24-input-number-field:hover {
        border: solid 0.77px rgb(97, 97, 97);
        background-color: rgb(250, 250, 250);
    }

    .ls24-input-number-field:active {
        border: solid 1px rgb(26, 26, 26);
        background-color: rgb(247, 247, 247);
    }

    .ls24-input-number-field:focus {
        border: solid 1px rgb(97, 97, 97);
        background-color: rgb(250, 250, 250);
        outline: 2px solid #005bd3;
        outline-offset: 1px;
    }

.ls24-input-search-field-icon {
    position: absolute;
    top: 16px;
    left: 8px;
    transform: translateY(-50%);
    width:20px;
    height:20px;
}

.ls24-dashboard-grid-x4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    align-items: stretch;
}

.ls24-dashboard-grid-x5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.ls24-dashboard-update-feature {
    display: flex;
    color: #606060;
    font-family: var(--base-font) !important;
    font-size: 12px;
    font-weight: 400;
    align-items: center;
}

.ls24-dashboard-update-feature-icon {
    margin-left: 8px;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    cursor: pointer;
    padding: 4px;
    background-color: #e3e3e3;
}


    .ls24-dashboard-update-feature-icon:hover {
        background-color: #d4d4d4;
    }

    .ls24-dashboard-update-feature-icon:active {
        background-color: #cccccc;
        box-shadow: 0rem .125rem .0625rem 0rem rgba(26, 26, 26, .2) inset, .0625rem 0rem .0625rem 0rem rgba(26, 26, 26, .12) inset, -.0625rem 0rem .0625rem 0rem rgba(26, 26, 26, .12) inset;
    }

.ls24-2col-grid-lft-main {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 16px;
}

.ls24-2col-search-bar-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    min-height: 40px;
}


.ls24-2col-grid-equal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ls24-3col-grid-equal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ls24-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ls24-dashboard-info-card {
    min-height: 150px;
    min-width: 220px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.ls24-dashboard-info-card__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ls24-dashboard-info-card__container img {
    margin-bottom: 8px;
    width:38px
}

    .ls24-dashboard-info-card__container span:first-of-type {
        color: #303030 !important;
        font-family: var(--base-font) !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        margin-bottom: 4px !important;
    }

    .ls24-dashboard-info-card__container span:last-of-type {
        color: #6f798b;
        font-family: var(--base-font);
        font-size: 12px;
        font-weight: 550;
        text-transform: uppercase;
    }

.ls24-teal-highlight {
    border-bottom: 15px solid #47C1BF;
}

.ls24-green-highlight {
    border-bottom: 15px solid #50B83C;
}

.ls24-purple-highlight {
    border-bottom: 15px solid #5C6AC4;
}

.ls24-orange-highlight {
    border-bottom: 15px solid #F49342;
}

.ls24-red-highlight {
    border-bottom: 15px solid #DE3618;
}

.ls24-bc-pending {
    background-color: #FFB800;
    color: #000000;
}

.ls24-bc-critical {
    background-color: #E51C00;
    color: #fff;
}

.ls24-notification-banner-light {
    font-weight: 650 !important;
    color: #fff !important;
}

.ls24-notification-banner-dark {
    font-weight: 650 !important;
    color: #000 !important;
}

.ls24-bc-approved {
    background-color: #29845A;
    color: #fff;
}

.ls24-card_notification-header {
    padding: 8px 12px 8px 12px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
}

ls24-card__notification-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25rem;
    color: #303030;
    display: block;
}

.ls24-card__notification-icon {
    width: 25px;
    height: 25px;
    margin-right: 4px;
}

.ls24-card__notification-title {
    font-family: var(--base-font);
    font-size: 14px;
    font-weight: 550;
    line-height: 1.25rem;
}

.ls24-large-text {
    font-family: var(--base-font);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.25rem;
    color: #000000;
}

.ls24-small-text {
    font-family: var(--base-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25rem;
    color: #000000;
}

.fit-content {
    width: -moz-fit-content !important;
    width: -webkit-fit-content !important;
    width: fit-content !important;
}

.notification-dsktp-max-50 {
    max-width:50%;
}
.ls24-cs-header-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 16px;
}

.ls24-page-title {
    font-family: var(--base-font);
    font-size: 20px;
    font-weight: 700;
}

.ls24-page-settings-title {
    font-family: var(--base-font);
    font-size: 20px;
    font-weight: 700;
    display: block;
}

/* action list */

.ls24-action-list {
    background-color: #ffffff !important;
    position: absolute !important;
    list-style: none !important;
    z-index: 5 !important;
    border-radius: 12px !important;
    box-shadow: inset 1px 0px 0px 0px rgba(0, 0, 0, 0.13), inset -1px 0px 0px 0px rgba(0, 0, 0, 0.13), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.17), inset 0px 1px 0px 0px rgba(204, 204, 204, 0.5), 0px 4px 6px -2px rgba(26, 26, 26, 0.2) !important;
    min-width: 118px;
    margin: 0px !important;
}

/* card classes  */

.ls24-drop-card {
    background-color: #ffffff;
    min-width: 100%;
    position: absolute;
    top: 34px;
    left: 0;
    padding: 6px;
    margin: 0px;
    list-style: none;
    z-index: 1;
    border-radius: 12px;
    box-shadow: inset 1px 0px 0px 0px rgba(0, 0, 0, 0.13), inset -1px 0px 0px 0px rgba(0, 0, 0, 0.13), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.17), inset 0px 1px 0px 0px rgba(204, 204, 204, 0.5), 0px 4px 6px -2px rgba(26, 26, 26, 0.2);
}
    .ls24-drop-card li a {
        font-family: var(--base-font);
        font-size: 13px;
        font-weight: 450;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        color: #303030;
        background-color: transparent;
        padding: 4px 6px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        position: relative;
        min-height: 28px;
        max-height: 28px;
        text-decoration: none;
    }
    
    .ls24-drop-card li a:hover {
        background-color: #f1f1f1;
        color: #303030;
        text-decoration: none;
    }
    
    .ls24-drop-card li a:active {
        background-color: #ebebeb;
        color: #303030;
    }

.ls24-drop-card li:not(:last-child) {
    margin-bottom:2px;
}

.ls24-modal {
    background-color: #ffffff !important;
    width: 100% !important;
    border-radius: 12px !important;
    box-shadow: 0rem 1.25rem 1.25rem -0.5rem rgba(26,26,26,.28) !important;
}

.ls24-notes-card {
    background-color: #ffffff;
    width: 100%;
    border-radius: 12px;
    box-shadow: inset 1px 0px 0px 0 rgba(0, 0, 0, 0.13), inset -1px 0px 0px 0 rgba(0, 0, 0, 0.13), inset 0px -1px 0px 0 rgba(0, 0, 0, 0.17), inset 0px 1px 0px 0 rgba(204, 204, 204, 0.5), 0px 1px 0px 0 rgba(26, 26, 26, 0.07);
    padding: 16px;
    display: flex;
}

.ls24-card {
    background-color: #ffffff;
    width: 100%;
    border-radius: 12px;
    box-shadow: inset 1px 0px 0px 0 rgba(0, 0, 0, 0.13), inset -1px 0px 0px 0 rgba(0, 0, 0, 0.13), inset 0px -1px 0px 0 rgba(0, 0, 0, 0.17), inset 0px 1px 0px 0 rgba(204, 204, 204, 0.5), 0px 1px 0px 0 rgba(26, 26, 26, 0.07);
}

.ls24-card__promo-header {
    border-bottom: 1px solid #E3E3E3;
    border-radius: 12px 12px 0 0;
    padding: 16px;
    display: flex;
}

.ls24-card__footer {
    border-top: 1px solid #E3E3E3;
    border-radius: 0 0 12px 12px;
    padding: 16px;
    display: flex;
}

.ls24-divider-light {
    width: 100%;
    height: 1px;
    background-color:#ebebeb;
}

.ls24-card__inner {
    padding:16px;
}

.ls24-card__section {
    padding: 16px;
    width: 100%;
}

.ls24-card__section-6 {
    padding: 6px;
}

.ls24-card__section-8 {
    padding: 8px;
}

.ls24-card__section-12 {
    padding: 12px;
}

.ls24-card__section-16 {
    padding: 16px;
}

.ls24-card__section-8-16 {
    padding: 8px 16px;
}

.ls24-card__header {
    display: flex;
    padding: 16px 16px 0 16px;
    flex-grow: 1;
    justify-content: flex-start;
    align-items:center;
}

.ls24-card__header-icon {
    width: 20px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls24-card__header-divider {
    width: 100%;
    height: 1px;
    background-color: #e3e3e3;
    margin-top: 16px;
}

.ls24-card__header--t2 {
    display: flex;
    padding: 16px;
    flex-grow: 1;
    justify-content: flex-start;
}

.ls24-card__header-title {
    font-family: var(--base-font);
    font-size: 13px;
    font-weight: 650;
}

.ls24-card__header-title--small {
    font-family: var(--base-font);
    font-size: 12px;
    font-weight: 650;
}

.ls24-card__divider {
    width: 100%;
    height: 1px;
    background-color: #e4e5e7;
}

.ls24-card__header-button-wrapper {
    display: flex;
}

    .ls24-card__header-button-wrapper > *:not(:last-child) {
        margin-right: 8px;
    }
.ls24-card__button-wrapper {
    display: flex;
}

    .ls24-card__button-wrapper > *:not(:last-child) {
        margin-right: 8px;
    }

/* Buttons classes  */

.ls24-manage-view-btn-wrapper a:not(:last-child) {
    margin-right: 4px;
}

.ls24-manage-view-btn {
    font-family: var(--base-font);
    color: #4a4a4a !important;
    font-size: 12px;
    font-weight: 550;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    border-radius: 8px;
    background-color: transparent;
    height: fit-content;
    padding: 4px 8px;
}

    .ls24-manage-view-btn:hover {
        text-decoration: none;
        background-color: #0000000d;
    }

    .ls24-manage-view-btn:active {
        text-decoration: none;
        background-color: #f3f3f3;
    }

.ls24-modal__more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: 28px;
    min-width: 28px;
    border-radius: 8px;
    background-color: transparent;
}

    .ls24-modal__more-btn svg {
        width: 20px;
        height: 20px;
        fill: #8a8a8a;
    }

    .ls24-modal__more-btn:hover {
        background-color: #0000000d;
    }

    .ls24-modal__more-btn:hover svg {
        fill: #616161;
    }

    .ls24-modal__more-btn:active {
        background-color: #00000014;
    }

        .ls24-modal__more-btn:active svg {
            fill: #4a4a4a;
        }


.ls24-modal__close-btn {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 4px;
    border: none;
    cursor: pointer;
}


    .ls24-modal__close-btn:hover {
        background-color: #0000000d;
    }

    .ls24-modal__close-btn:active {
        background-color: #00000014;
    }

    .ls24-modal__close-btn span {
        width: 20px;
        height: 20px;
    }

.ls24-modal__close-btn-icon {
    fill: #8a8a8a;
}

.ls24-modal__close-btn:hover .ls24-modal__close-btn-icon {
    fill: #616161;
}

.ls24-modal__close-btn:active .ls24-modal__close-btn-icon {
    fill: #616161;
}

.ls24-modal__footer {
    width: 100%;
    background-color: #fff;
    padding: 16px;
    border-radius: 0 0 12px 12px;
    border-top: 1px solid #E3E3E3;
    display: flex;
    justify-content: flex-end;
}

.ls24-header {
    height: 56px;
}

.ls24-dashboard-sales-summary-header {
    font-family: var(--base-font) !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    color: #333333 !important;
    padding: 0 0 8px 0 !important;
}

.ls24-dashboard-sales-summary tr td {
    padding: 10px 0 !important;
    cursor: pointer;
}

.ls24-manage-products-overview-bar li span:first-child {
    display: block;
    font-weight: 550;
    font-family: var(--base-font) !important;
    font-size: 13px;
    color: #303030;
    margin-bottom: 4px;
}


.ls24-manage-products-overview-bar li span:nth-child(2) {
    display: block;
    font-weight: 600;
    font-family: var(--base-font) !important;
    font-size: 20px;
    color: #303030;
}

.ls24-manage-products-overview-all-products-btn {
    transition: all .2s;
    border-radius: 12px 0 0 12px;
    border-right: .66px solid #E3E3E3;
}

    .ls24-manage-products-overview-all-products-btn:hover {
        background-color: #fffbeb;
        border-radius: 12px 0 0 12px;
        border-right: .66px solid #E3E3E3;
    }

    .ls24-manage-products-overview-all-products-btn:active {
        background-color: #fff7d9;
        border-radius: 12px 0 0 12px;
        border-right: .66px solid #E3E3E3;
    }

.ls24-manage-products-overview-live-btn {
    transition: all .2s;
    border-right: .66px solid #E3E3E3;
}

    .ls24-manage-products-overview-live-btn:hover {
        background-color: #f0feee;
        border-right: .66px solid #E3E3E3;
    }

    .ls24-manage-products-overview-live-btn:active {
        background-color: #e0ffda;
        border-right: .66px solid #E3E3E3;
    }

.ls24-manage-products-overview-active-btn {
    transition: all .2s;
    border-right: .66px solid #E3E3E3;
}

    .ls24-manage-products-overview-active-btn:hover {
        background-color: #f6f5ff;
        border-right: .66px solid #E3E3E3;
    }

    .ls24-manage-products-overview-active-btn:active {
        background-color: #edebff;
        border-right: .66px solid #E3E3E3;
    }

.ls24-manage-products-overview-approved-btn {
    transition: all .2s;
    border-right: .66px solid #E3E3E3;
}

    .ls24-manage-products-overview-approved-btn:hover {
        background-color: #fff7eb;
        border-right: .66px solid #E3E3E3;
    }

    .ls24-manage-products-overview-approved-btn:active {
        background-color: #fff1dc;
        border-right: .66px solid #E3E3E3;
    }

.ls24-manage-products-overview-pending-btn {
    transition: all .2s;
    border-right: .66px solid #E3E3E3;
    border-radius: 0 12px 12px 0;
}

    .ls24-manage-products-overview-pending-btn:hover {
        background-color: #ebf7ff;
        border-right: .66px solid #E3E3E3;
        border-radius: 0 12px 12px 0;
    }

    .ls24-manage-products-overview-pending-btn:active {
        background-color: #def2ff;
        border-right: .66px solid #E3E3E3;
        border-radius: 0 12px 12px 0;
    }

.ls24-export-products-field-label {
    font-weight: 550;
    font-family: var(--base-font) !important;
    font-size: 13px;
    color: #303030;
}

.ls24-export-products-description {
    font-weight: 450;
    font-family: var(--base-font) !important;
    font-size: 13px;
    color: #303030;
    line-height: 1.3;
    margin-left: 25px;
    color: #616161;
}

.ls24-body-text {
    font-family: var(--base-font);
    color: #303030;
    font-weight: 450;
    font-size: 13px;
}

.ls24-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.ls24-checkbox__input {
    display: none;
}

.ls24-checkbox__checkmark {
    width: 18px;
    height: 18px;
    background-color: #fdfdfd;
    border: 0.66px solid #8a8a8a;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    transition: background-color 0.2s, border-color 0.2s;
}

.ls24-checkbox__input:checked + .ls24-checkbox__checkmark {
    background-color: #303030;
    border-color: #303030;
}

.ls24-checkbox__icon {
    display: none;
    width: 16px;
    height: 16px;
}

.ls24-checkbox__input:checked + .ls24-checkbox__checkmark .ls24-checkbox__icon {
    display: block;
}

.ls24-checkbox__label {
    font-weight: 400;
    font-size: 13px;
    color: #303030;
}

.verticle-checkbox-grid {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
}

    .verticle-checkbox-grid label:first-of-type {
        margin-bottom: 8px;
    }


.ls24-form-item {
    display: flex;
    flex-direction: column;
}

.ls24-form-item-select {
    display: flex;
    flex-direction: column;
    min-width: 300px;
    overflow: visible !important;
}

#ddlMerchantCompany {
    min-width: 300px;
    max-width: 100%;
    width: 100% !important;
}

    #ddlMerchantCompany option {
        white-space: normal;
        word-wrap: break-word;
    }

.ls24-branch-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    align-items: center;
}

.ls24-product-offer__grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
}

.ls24-page-back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 8px;
    background-color: #4a4a4a00;
    min-height: 28px;
    min-width: 28px;
    cursor: pointer;
    margin-right: 4px;
    fill: #4a4a4a;
}

    .ls24-page-back-button:hover {
        background-color: #d4d4d4;
    }

    .ls24-page-back-button:active {
        background-color: #cccccc;
        box-shadow: 0rem 0.125rem 0.0625rem 0rem rgba(26, 26, 26, 0.2) inset, 0.0625rem 0rem 0.0625rem 0rem rgba(26, 26, 26, 0.12) inset, -0.0625rem 0rem 0.0625rem 0rem rgba(26, 26, 26, 0.12) inset;
    }

        .ls24-page-back-button:active svg {
            margin-top: 2px;
        }

    .ls24-page-back-button svg {
        width: 20px;
        height: 20px;
    }

.ls24-2col-product-quote-search-bar-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.ls24-quotation-product-search-grid {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 16px;
}

.ls24-product-quotation-card-grid {
    display: grid;
    grid-template-columns: 73.5% 25%;
    gap: 16px;
    align-items: flex-start;
}

.ls24-product-quote_row-end {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ls24-product-quote_row-end-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: 400px;
}

.no-underline {
    text-decoration: none !important;
}

.pointer {
    cursor: pointer;
}

.ls24-card__subtext-light {
    font-size: 13px;
    line-height: 20px;
    color: #616161;
}

.ls24-side-card-sub-section {
    padding: 8px 16px 16px 16px;
}

.ls24-side-card-sub-section-icon {
    padding: 0px 16px 16px 16px;
}

.ls24-page-title__back-btn {
    width: 20px;
    height: 20px;
}

    .ls24-page-title__back-btn .svg {
        width: 20px;
        height: 20px;
    }

.ls24-edit-button {
    font-family: var(--base-font);
    font-weight: 550;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 0 6px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    min-height: 32px;
    max-height: 32px;
    fill: #8a8a8a;
}

    .ls24-edit-button:hover {
        fill: #616161;
        background-color: #0000000d;
        text-decoration: none;
    }

    .ls24-edit-button:active {
        fill: #4a4a4a;
        background-color: #0000000d;
    }

        .ls24-edit-button:active span {
            margin-top: 2px;
            background-color: #00000014;
        }

        .ls24-edit-button:active svg {
            margin-top: 2px;
        }

    .ls24-edit-button.active {
        background-color: #1a1a1a;
        color: #303030;
        background-color: #f7f7f7;
        box-shadow: inset -1px 0px 1px 0 rgba(26, 26, 26, 0.14), inset 1px 0px 1px 0 rgba(26, 26, 26, 0.12), inset 0px 2px 1px 0 rgba(26, 26, 26, 0.2);
    }

    .ls24-edit-button svg {
        width: 20px;
        height: 20px;
    }

.ls24-add-customer__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto auto auto;
    grid-gap: 16px;
}

.ls24-add-customer__grid-item-1 {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
}

.ls24-add-customer__grid-item-1b {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}

.ls24-add-customer__grid-item-2 {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
}

.ls24-add-customer__grid-item-3 {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
}

.ls24-add-customer__grid-item-4 {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
}

.ls24-add-customer__grid-item-5 {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}

.ls24-add-customer__grid-item-6 {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}

.ls24-add-customer__grid-item-7 {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}

.ls24-modal__close-btn div {
    width: 20px;
    height: 20px;
}

.push-right {
    justify-content: flex-end;
}

.ls24-add-customer-page-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 16px;
    align-items: flex-start;
}

.ls24-add-customer-page-grid__inner-column-left {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.ls24-2col-form {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ls24-3col-form {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 130px 130px;
    gap: 16px;
}

.ls24-address-form-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto) 1fr;
    gap: 16px;
}

    .ls24-address-form-container .ls24-address-form-container__last-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

.ls24-add-contact-modal-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 16px;
    margin-bottom: 16px;
}

.ls24-add-contact-modal-grid-container__item3 {
    grid-column: span 2;
}

.ls24-add-contact-modal-grid-container__item4 {
    grid-column: span 2;
}

.grid-container {
    display: grid;
    grid-template-rows: auto auto;
    gap: 16px;
}

.ls24-add-new-customer__section-block {
    margin-bottom: 16px;
}

.ls24-add-new-customer__section-title {
    font-family: var(--base-font);
    font-weight: 600;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 16px;
}

.ls24-add-new-customer__overflow-block {
    height: 400px;
    overflow-y: scroll;
    padding: 0 16px 0 4px;
}

.h-28 {
    height: 28px;
}

.ls24-text-field--text-area-no-resize {
    resize: none;
}

.ls24-text-field--text-area-height {
    height: 160px;
}

.ls24-card__section-form {
    padding: 0 16px 16px 16px;
}

.ls24-flex-box {
    display: flex;
    flex-direction: column;
}

    .ls24-flex-box label {
        color: #616161;
        font-weight: 400;
    }

.ls24-set-reminder-input-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.ls24-product-quote-bulk-bar {
    display: flex;
    flex-direction: row;
}

.ls24-radio-button-group {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 12px;
}

.ls24-radio-button {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 450;
    white-space: nowrap;
    color: #303030;
}

.ls24-radio-button__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ls24-radio-button__custom {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 0.66px solid #8a8a8a;
    display: inline-block;
    margin-right: 4px;
    position: relative;
    background-color: #fdfdfd;
    font-family: var(--base-font);
    transition: all 0.1s;
}

.ls24-radio-button__input:checked + .ls24-radio-button__custom {
    background-color: #303030;
    border-color: #303030;
}

.ls24-radio-button__custom::after {
    content: '';
    width: 7px;
    height: 7px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.ls24-radio-button__input:checked + .ls24-radio-button__custom::after {
    display: block;
}

.ls24-add-contact-dropdown {
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    margin-top: 8px;
    padding: 4px;
    border: solid 0.77px rgb(138, 138, 138);
}

.ls24-add-contact-user-dropdown {
    width: 100%;
    height: 100%;
    max-height: 165px;
    overflow-y: scroll;
}

.ls24-add-contact-button {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 8px;
    display: flex;
    padding: 8px;
    align-items: center;
    cursor: pointer;
    outline: none;
    border: none;
    margin-bottom: 4px;
}

    .ls24-add-contact-button:hover {
        background-color: #f2f2f2c5;
    }

    .ls24-add-contact-button:active {
        background-color: #f2f2f2;
    }

.ls24-add-contact-name-button {
    background-color: rgb(255, 255, 255);
    border: solid 0.77px rgb(138, 138, 138);
    display: flex;
    flex-direction: column;
    width: 100%;
    outline: none;
    padding: 8px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
}

    .ls24-add-contact-name-button:hover {
        background-color: #f2f2f2;
        border: solid 0.77px #f2f2f2;
    }

    .ls24-add-contact-name-button:active {
        background-color: #f2f2f2a8;
        border: solid 0.77px #f2f2f2a8;
    }

    .ls24-add-contact-name-button:not(:last-child) {
        margin-bottom: 4px;
    }

.ls24-add-contact-button svg {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

.ls24-add-contact-name-button span {
    color: 303030;
}

    .ls24-add-contact-name-button span:first-of-type {
        margin-bottom: 4px;
        color: #303030;
    }

.ls24-product-quotation-search__row-overflow {
    background-color: rgb(255, 255, 255);
    overflow-y: scroll;
    height: 201px;
}

.ls24-product-quotation-search-row {
    display: grid;
    grid-template-columns: 50px 1fr 100px 100px 100px;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid #e3e3e3;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s;
}

    .ls24-product-quotation-search-row:hover {
        background-color: #f1f1f1;
    }

    .ls24-product-quotation-search-row:active {
        background-color: #f1f1f190;
    }

.ls24-product-quotation-search-row__image-container {
    background-color: #00000014;
    border-radius: 8px;
    height: 50px;
}

.ls24-product-quotation-search-row__product-title {
    font-size: 13px;
    display: flex;
    flex-direction: column;
}

    .ls24-product-quotation-search-row__product-title span:first-of-type {
        font-weight: 600;
        margin-bottom: 4px;
    }

    .ls24-product-quotation-search-row__product-title span:nth-of-type(2) {
        font-weight: 500;
        color: #848484;
    }

.ls24-product-quotation-search-unit {
    font-family: var(--base-font);
    font-size: 13px;
}

.ls24-product-quotation-search-row__header {
    display: grid;
    grid-template-columns: 50px 1fr 100px 100px 100px;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid #e3e3e3;
    padding: 8px 12px;
    margin-right: 12px;
}

.ls24-product-quotation-row {
    display: flex;
    flex-direction: column;
}

.ls24-quotation-drag-handle {
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0);
    cursor: pointer;
}

.ls24-quotation-close-handle {
    cursor: pointer;
    background-color: #00000014;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    border-radius: 4px;
}

    .ls24-quotation-close-handle svg {
        width: 20px;
        height: 20px;
    }

    .ls24-quotation-close-handle:hover {
        background-color: #0000000d;
    }

    .ls24-quotation-close-handle:active {
        background-color: #00000014;
    }

.ls24-product-quotation-row__image-container {
    background-color: #00000014;
    border-radius: 8px;
    height: 50px;
    width: 50px;
}

.ls24-product-quotation-row__image-container-2 {
    background-color: #00000014;
    border-radius: 8px;
    height: 56px;
    width: 70px;
    margin-right: 16px;
}

.ls24-product-quotation-row__product-title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    overflow: hidden;
    text-overflow: ellipsis; /* Safe fallback but not required */
    white-space: normal; /* Important to allow line breaks */
    word-break: break-word; /* Break long words if needed */
    max-height: 4.5em; /* 1.5em * 3 lines */
    line-height: 1.5em; /* Ensure consistent line spacing */
}

.ls24-product-quotation-row__product-title {
    font-size: 13px;
    display: flex;
    flex-direction: column;
}

    .ls24-product-quotation-row__product-title span:first-of-type {
        font-weight: 600;
        margin-bottom: 4px;
    }

    .ls24-product-quotation-row__product-title span:nth-of-type(2) {
        font-weight: 500;
        color: #848484;
    }

.ls24-product-quotation-unit {
    font-family: var(--base-font);
    font-size: 13px;
    text-align: right;
}

.ls24-product-quotation-unit-strong {
    font-family: var(--base-font);
    font-size: 13px;
    font-weight: 650;
    text-align: right;
}

.ls24-add-contact-dropdown-t2 {
    margin-top: 12px;
}

.ls24-add-contact-dropdown-t2-header-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
    padding: 12px;
    border-top: 0.66px solid #e3e3e3;
    border-bottom: 0.66px solid #e3e3e3;
}

.ls24-add-contact-dropdown-t2-row-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
    border-bottom: 0.66px solid #e3e3e3;
    padding: 12px 12px;
    cursor: pointer;
}

    .ls24-add-contact-dropdown-t2-row-grid:hover {
        background-color: #f1f1f1;
    }

    .ls24-add-contact-dropdown-t2-row-grid:active {
        background-color: #f1f1f190;
    }

.ls24-add-contact-dropdown-t2-row-unit {
    font-family: var(--base-font);
    font-size: 12px;
}

.ls24-add-contact-dropdown-t2-header-grid span {
    font-size: 12px;
    font-weight: 600;
}

.ls24-text-field-error-message {
    font-family: var(--base-font);
    color: #d72c0d;
    font-size: 13px;
    display: flex;
    align-items: center;
    margin-top: 4px;
}

    .ls24-text-field-error-message svg {
        width: 20px;
        fill: #d72c0d;
        margin-right: 4px;
    }

.ls24-text-field.ls24-text-field--error {
    color: #d72c0d;
    font-weight: 450;
    font-size: 13px;
    border: solid 1px #d72c0d !important;
    background-color: #d72b0d1b;
    border-radius: 8px !important;
    min-height: 32px;
    padding: 6px 12px;
    width: 100%;
}

.ls24-product-quotation-selection-row {
    display: flex;
    flex-direction: column;
}

.ls24-product-quotation-selection-row__title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 13px;
}

.ls24-product-quotation-selection-row__title-span {
    font-weight: 500;
    color: #848484;
    font-size: 12px;
}

.ls24-product-quote-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 12px;
}

.ls24-product-quotation-selection-row-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.ls24-product-quotation-selection-row-metrics {
    display: flex;
    align-items: center;
}

.ls24-field-label.ls24-field-label--disabled {
    color: #b5b5b5;
}

.ls24-text-field.ls24-text-field--disabled {
    background-color: #ebebeb;
    font-family: var(--base-font);
    color: #ebebeb;
    font-weight: 450;
    font-size: 13px;
    border: solid 0.77px #ebebeb;
    border-radius: 8px;
    min-height: 32px;
    padding: 6px 12px;
    width: 100%;
    cursor: not-allowed;
}

    .ls24-text-field.ls24-text-field--disabled.ls24-text-field--disabled-dark-text {
        color: #797979 !important ;
    }

    .ls24-text-field.ls24-text-field--disabled:focus {
        outline: none;
        border: none;
    }

.ls24-product-quotation-selection-row-metric-box {
    display: flex;
    flex-direction: column;
    font-size: 13px;
}

.ls24-add-contact-modal-grid-container-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.ls24-opportunities-grid {
    display: grid;
    grid-template-columns: auto auto auto auto 1fr auto auto;
    gap: 24px;
}

.ls24-opportunities-flex-box-item {
    display: flex;
    flex-direction: column;
}

    .ls24-opportunities-flex-box-item span {
        font-family: var(--base-font);
        color: #303030;
        font-size: 12px;
        line-height: 20px;
    }

        .ls24-opportunities-flex-box-item span:first-child {
            font-weight: 700;
        }

.push-right-column {
    align-items: flex-end;
}

.ls24-opportunity-search-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.ls24-pagination__wrapper {
    display: flex;
}

.ls24-pagination__btn {
    background-color: #ebebeb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    padding: 4px;
}

    .ls24-pagination__btn:hover {
        background-color: #d4d4d4;
    }

    .ls24-pagination__btn:active {
        background-color: #d4d4d4;
        color: #303030;
        box-shadow: inset -1px 0px 1px 0 rgba(26, 26, 26, 0.14), inset 1px 0px 1px 0 rgba(26, 26, 26, 0.12), inset 0px 2px 1px 0 rgba(26, 26, 26, 0.2);
    }

        .ls24-pagination__btn:active svg {
            margin-top: 2px;
        }

    .ls24-pagination__btn svg {
        width: 20px;
        height: 20px;
    }

.ls24-pagination--btn-left-border-radius {
    border-radius: 8px 0 0 8px;
}

.ls24-pagination--btn-disabled {
    cursor: default;
}

    .ls24-pagination--btn-disabled:hover {
        background-color: #ebebeb;
    }

    .ls24-pagination--btn-disabled svg {
        fill: #cccccc !important;
    }

.ls24-pagination--btn-right-border-radius {
    border-radius: 0 8px 8px 0;
}

.ls24-pagination--btn-margin-right {
    margin-right: 1px;
}

.ls24-default-button--full-width {
    width: 100%;
}

.ls24-manage-opportunities-table-wrapper {
    max-height: 730px;
    overflow-y: auto;
    position: relative;
}

.ls24-manage-opportunities-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-family: var(--base-font);
    font-size: 13px;
}

.ls24-manage-opportunities-table__tr {
    cursor: pointer;
}

th, td {
    padding: 4px 8px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-top: 1px solid #EBEBEB;
    border-bottom: 1px solid #EBEBEB;
    border-left: none;
    border-right: none;
}

.ls24-manage-opportunities-table__th {
    padding: 8px !important;
    background-color: #f7f7f7;
    color: #303030;
    position: sticky;
    top: 0;
    z-index: 10;
    border: 0;
    cursor: default;
}

.ls24-manage-opportunities-table__body {
    color: #303030;
}

    .ls24-manage-opportunities-table__body .ls24-manage-opportunities-table__tr:hover {
        background-color: #f7f7f7;
    }

.ls24-pagination {
    background-color: #F7F7F7;
    width: 100%;
    height: 50px;
    border-radius: 0 0 12px 12px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls24-close-btn-product-info {
    position: absolute;
    top: 16px;
    right: 16px;
}

.ls24-add-product-modal-info-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
}

.ls24-add-product-modal-info-img {
    border: 1px solid #E5E5E5;
    cursor: zoom-in;
    border-radius: 8px;
}

.ls24-add-product-modal-product-detail-title {
    font-family: var(--base-font);
    color: #303030;
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 4px;
    font-weight: 600;
}

.ls24-add-product-modal-scroll-window {
    overflow-y: scroll;
    max-height: 266px
}

.ls24-add-product-modal-scroll-window-bd-text {
    font-family: var(--base-font);
    color: #303030;
    font-size: 13px;
    padding-right: 16px;
    line-height: 20px;
}

.ls24-add-product-modal-scroll-window-brand-title {
    font-family: var(--base-font);
    color: #303030;
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
}

.ls24-invisible {
    opacity: 0;
}

.ls24-sell-this-product-btn {
    width: fit-content;
    position: absolute;
    bottom: 16px;
    right: 16px;
}

.ls24-sell-this-product-s3-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: flex-start;
}

.ls24-sort-btn {
    cursor: pointer;
    font-family: var(--base-font);
    font-weight: 450;
    font-size: 13px;
    margin: 0;
}


.ls24-manage-categories-label {
    font-family: var(--base-font) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.ls24-product-category-selector-search-grid  {
    display:grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
}

.ls24-main-header-search-results__card {
    background-color: #ffffff;
    min-width: 100%;
    position: absolute;
    top: 34px;
    left: 0;
    padding: 8px;
    margin: 0px;
    list-style: none;
    z-index: 1;
    border-radius: 12px;
    box-shadow: inset 1px 0px 0px 0px rgba(0, 0, 0, 0.13), inset -1px 0px 0px 0px rgba(0, 0, 0, 0.13), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.17), inset 0px 1px 0px 0px rgba(204, 204, 204, 0.5), 0px 4px 6px -2px rgba(26, 26, 26, 0.2);
}

.ls24-main-header-search-results__row-header {
    font-family: var(--base-font);
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.ls24-main-header-search-results__row-header-divider {
    width: 100%;
    height: 1px;
    background-color: #e3e3e3;
    margin-bottom:8px;
}

.ls24-main-header-search-results__row:not(:last-child) {
    margin-bottom: 12px;
}

.ls24-main-search-result {
    font-family: var(--base-font);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px !important;
    border-radius: 8px;
}

    .ls24-main-search-result:hover {
        background-color: #f5f5f5 !important;
    }

.ls24-main-search-result-detail {
    font-family: var(--base-font);
    font-size: 12px !important;
    color: #a2a2a2 !important;
    margin-left: auto !important;
    font-weight: 450;
}

.ls24-main-search-result-paragraph-detail {
    font-family: var(--base-font);
    font-size: 12px !important;
    color: #a2a2a2 !important;
    margin-left: auto !important;
    font-weight: 450;
}

.ls24-mp-tag {
    display: flex;
    align-items:center;
    justify-content: center;
}

.ls24-mp-header {
    border-bottom: 1px solid #e3e3e3;
    margin-bottom: 16px;
}

.ls24-mo-filter-field {
    border: solid 0.77px rgb(138, 138, 138) !important;
    border-radius: 8px !important;
}

.ls24-mo-filter-field-value {

}

.ls24-mo-filter-field-select {
    border: solid 0.77px rgb(138, 138, 138) !important;
    border-radius: 8px !important;
}

.ls24-sort-order-btn-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-content: flex-start;
    gap: 4px
}

.ls24-sort-order-btn-grid:not(:last-child) {
    margin-bottom:4px;
}

    .ls24-sort-order-btn-grid:last-child {
        margin-bottom: 8px;
    }


mark {
    background-color: #000 !important;
    color: #fff !important;
}

.ls24-no-margin {
    margin: 0px !important;
}

.ls24-mp-sort-header {
    border-bottom: 1px solid #e3e3e3;
    margin-bottom: 8px;
}

.ls24-manage-header {
    font-family: var(--base-font);
    font-weight: 600;
}

/*LS24 TAB COMPONENT*/

.ls24-tab-component {
    font-family: var(--base-font);
}

.ls24-tab-component__tabs {
    display: flex;
    border-bottom: 1px solid #ebebeb;
}

.ls24-tab-component__tab {
    background: none;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    border-bottom: 3px solid transparent;
    transition: border-bottom 0.3s ease;
    color: #4a4a4a;
}

    .ls24-tab-component__tab:hover {
        border-bottom: 2px solid #dadada;
    }

.ls24-tab-component__tab--active {
    border-bottom: 3px solid #1a1a1a;
}

    .ls24-tab-component__tab--active:hover {
        border-bottom: 3px solid #1a1a1a;
    }

.ls24-tab-component__content {
    padding: 16px;
}

.ls24-tab-component__content-item {
    display: none;
}

.ls24-tab-component__content-item--active {
    display: block;
}

.pd-lft-0 {
    padding-left: 0px !important;
}

.ls24-userprofile-descripter {
    font-family: var(--base-font);
    font-weight: 550;
    color: #1a1a1a;
    margin-right: 10px;
    line-height: 24px !important;
}

.ls24-user-initials {
    font-family: var(--base-font);
    font-weight: 500;
    font-size: 20px;
    color: #fff;
}

.ls24-settings-button {
    font-family: var(--base-font);
    font-size: 13px;
    font-weight: 550;
    cursor: pointer;
    display: flex;
    gap: 4px;
    width: 100%;
    border-radius: 8px;
    padding: 4px 4px;
    background-color: #fff;
}

    .ls24-settings-button:hover {
        background-color: #f1f1f1;
    }

    .ls24-settings-button:active {
        background-color: #ebebeb;
    }

    .ls24-settings-button svg {
        width: 20px;
        fill: #1a1a1a;
    }

    .ls24-settings-button.setting-button.active {
        background-color: #f1f1f1;
    }


.ls24-settings-profile-button {
    font-family: var(--base-font);
    font-size: 13px;
    font-weight: 550;
    cursor: pointer;
    display: flex;
    gap: 8px;
    width: 100%;
    border-radius: 8px;
    padding: 4px 8px;
    background-color: #fff;
}

    .ls24-settings-profile-button:hover {
        background-color: #f1f1f1;
    }

    .ls24-settings-profile-button:active {
        background-color: #ebebeb;
    }

.ls24-business-details__header {
    font-family: var(--base-font);
    font-size: 15px;
    font-weight: 550;
    color: #1a1a1a;
    padding-bottom: 16px;
    display: block;
    border-bottom: 1px solid #d2d2d2;
    margin-bottom: 20px;
}


.ls24-documents-row {
    cursor: pointer;
    background-color:transparent;
    border-radius: 8px;
}

    .ls24-documents-row:hover {
        background-color: #f3f3f3;
    }

.ls24-add-contact-btn svg {
    width: 20px;
    height: 20px;
    fill: #1a1a1a;
    cursor: pointer;
}


.ls24-add-contact-heading {
    font-family: var(--base-font);
    font-weight: 500;
    font-size: 13px;
}

.ls24-order-link {
    color: #1a1a1a;
    font-family: var(--base-font);
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
    vertical-align: middle;
    cursor:pointer;
}

    .ls24-order-link:hover {
        color: #1a1a1a;
        text-decoration: none;
    }
.ls24-mp-empty-state {
    height: 100%;
    display: flex;
    align-items: center;
    display: none;
}

.ls24-all-button {
    font-family: var(--base-font);
    color: #b5b5b5 !important;
    font-size: 12px;
    font-weight: 550;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    border-radius: 8px;
    background-color: #f2f2f2;
    height: fit-content;
    padding: 4px 8px;
}


    .ls24-all-button svg {
        width: 20px;
        fill: #b5b5b5 !important;
    }

.SystemManagementSettings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, auto);
    gap: 16px;
    width: 100%;
}

.SystemManagementSettings-button {
    display: flex;
    gap: 16px;
    cursor: pointer;
    border-radius: 8px;
    padding: 8px 12px;
}

    .SystemManagementSettings-button:hover {
        background-color: #f1f1f1;
    }

    .SystemManagementSettings-button:active {
        background-color: #f1f1f1c7;
    }

.SystemManagementSettings-button svg {
    width: 24px;
    fill: #1a1a1a;
}

.SystemManagementSettings-button__text-container {
    display:flex;
    flex-direction: column;
}

    .SystemManagementSettings-button__text-container span:first-of-type {
        font-family: var(--base-font);
        font-size: 14px;
        font-weight: 650;
        color: #1a1a1a;
    }

    .SystemManagementSettings-button__text-container span:last-of-type {
        font-family: var(--base-font);
        font-size: 12px;
        font-weight: 400;
        color: #717171;
    }


/* Mobile and tablet styles */

@media screen and (max-width: 1000px) {

    .ls24-layout--three-quarter-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {

    .ls24-main-header__mobile-drawer {
        display: flex;
    }

    .ls24-main-header__select {
        display: none;
    }

    .ls24-manage-opportunities-table-wrapper {
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media screen and (max-width: 1568px) {
    .ls24-product-quotation-card-grid {
        grid-template-columns: 73.5% 25%;
    }
}



@media screen and (max-width: 768px) {

    .ls24-main-header__content {
        grid-template-columns: auto 1fr auto auto auto auto;
    }

    .ls24-main-navigation {
        left: 0;
    }

        .ls24-main-navigation.hidden {
            display: none;
        }

    .ls24-box-speck-container {
        flex-direction: column;
    }

    .ls24-add-product-action-bar {
        left: 0px;
        top: 56px;
        z-index: 500;
        border-radius: 12px 12px 0px 0px;
    }

    .ls24-add-product-action-bar__open {
        width: 100%;
    }

    .ls24-add-product-action-bar__closed {
        width: 100%;
    }

    .ls24-dashboard-grid-x4 {
        grid-template-columns: 1fr;
    }

    .ls24-dashboard-grid-x5 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ls24-grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .ls24-large-text {
        line-height: 3.2rem;
    }
    .ls24-page-title {
       line-height: 2.8rem;
    }

    .ls24-sidekick {
        position: absolute;
        width: 100%;
        margin-left: 0px;
        min-width: 100%;
        max-width: 100%;
        z-index: 30;
        padding-left: 0px;
        top: 0;
        left: 0;
    }

    .ls24-main-page--sk-open {
        width: 100%;
    }
    
    .ls24-main-page {
        border-radius: 12px 12px 0px 0px;
    }

    .ls24-main-header__hamburger-menu {
        display: flex;
        margin-left: 16px;
        margin-right: 8px;
        padding: 8px;
    }

    .ls24-main-header__logo-box {
        display: none;
    }

    .ls24-main-header__profile-button {
        padding: 2px 1px 2px 2px;
    }

    .ls24-main-header__profile-button-user-init {
        margin-left: -1px;
        margin-right: 0px;
        height: 30px;
    }

    .ls24-main-header__profile-button-username {
        display: none;
    }

    .ls24-main-navigation {
        left: -240px;
    }

        .ls24-main-navigation.active {
            left: 0;
        }

    .ls24-main-body {
        left: 0px;
    }

    .ls24-cornice-left {
        display: inline-block;
    }
}

@media screen and (max-width: 756px) {
    .ls24-add-customer-page-grid {
        grid-template-columns: 1fr;
    }

    .ls24-product-quote_row-end-grid {
        max-width: 100%;
    }

    .ls24-product-quotation-card-grid {
        grid-template-columns: 73.5% 25%;
    }

    .ls24-product-quote-bulk-bar {
        flex-direction: column;
    }

    .ls24-button-group {
        margin-top: 16px;
    }
}

@media screen and (max-width: 600px) {

    .upload-container {
        flex-direction: column;
    }

    .main-image {
        flex: none;
        width: 100%;
        max-width: 100%;
        height: 200px;
    }

    .thumbs {
        width: 100%;
    }
}



/*//////////// END LS24 - NEW STYLING ////////////// */

.mmp-menu-subtitle-04 {
    font-size: 13px !important;
    font-family: var(--base-font) !important;
    font-weight: 450 !important;
    color: #616161 !important;
    line-height: 20px;
}

.lockstok-notification-dropdown {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.notification-icon-2024 {
    width: 20px;
    fill: #e3e3e3;
}

.lockstok-user-initials {
    display: flex;
    align-items: center;
    background-color: #c530c5;
    height: 100%;
    padding: 8px;
    margin-left: 10px;
    border-radius: 6px;
    color: #fff;
    font-size: 11px;
    font-family: var(--base-font);
}

.lockstok-alerts-link {
    color: #616161 !important;
    font-family: var(--base-font);
    font-weight: 650;
    font-size: 13px;
}

.lockstok-alerts-dismiss-link {
    color: #616161 !important;
    font-family: var(--base-font);
    font-weight: 500;
    font-size: 13px;
}

.tippy-tooltip-content {
    padding: 10px 0px;
}

.mmp-labeltag {
    text-align: center;
    overflow: hidden;
    padding: 3px 8px 3px 8px;
    border-radius: 14px !important;
    font-size: 12px;
    text-overflow: ellipsis;
}
.mmp-teal-block-4 {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(71,193,191,1) 29%, rgba(255,255,255,1) 29%);
    border-radius: 4px !important;
}

.mmp-teal-block-4-mmp {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(71,193,191,1) 29%, rgba(255,255,255,1) 29%);
    border-radius: 4px !important;
    min-height: 123px;
}

.mmp-teal-ico-4 {
    margin-left: 9.2%;
    padding-top: 40px;
    width: 32px;
}

.mmp-teal-ico-4-mp {
    margin-left: 5.2%;
    top: 42px;
    width: 32px;
    position: absolute;
}

.mmp-teal-description-4 {
    color: #47C1BF;
    font-weight: 500 !important;
    text-transform: uppercase;
    font-size: 0.6vw;
}

.mmp-teal-description-4-mp {
    color: #47C1BF;
    font-weight: 500 !important;
    text-transform: uppercase;
    float: right;
    font-size: 0.6vw;
}

/* Orange */

.mmp-orange-block-4 {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(244,147,66,1) 29%, rgba(255,255,255,1) 29%);
    border-radius: 4px !important;
}

.mmp-orange-block-4-mmp {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(244,147,66,1) 29%, rgba(255,255,255,1) 29%);
    border-radius: 4px !important;
    min-height: 123px;
    cursor: pointer;
}

.mmp-orange-ico-4 {
    margin-left: 9.2%;
    padding-top: 40px;
    width: 32px;
}

.mmp-orange-ico-4-mp {
    margin-left: 5.2%;
    top: 42px;
    width: 32px;
    position: absolute;
}

.mmp-orange-description-4 {
    color: #F49342;
    font-weight: 500 !important;
    text-transform: uppercase;
    text-align: right;
    font-size: 0.6vw;
}

.mmp-orange-description-4-mp {
    color: #F49342;
    font-weight: 500 !important;
    text-transform: uppercase;
    text-align: right;
    font-size: 0.6vw;
}

/* Indigo */

.mmp-indigo-block-4 {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(92,106,196,1) 29%, rgba(255,255,255,1) 29%);
    border-radius: 4px !important;
}

.mmp-indigo-ico-4 {
    margin-left: 9.2%;
    padding-top: 40px;
    width: 32px;
}

.mmp-indigo-description-4 {
    color: #5C6AC4;
    font-weight: 500 !important;
    text-transform: uppercase;
    font-size: 0.6vw;
}

/* Green */

.mmp-green-block-4 {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(80,184,60,1) 29%, rgba(255,255,255,1) 29%);
    border-radius: 4px !important;
}

.mmp-green-block-4-mmp {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(80,184,60,1) 29%, rgba(255,255,255,1) 29%);
    border-radius: 4px !important;
    min-height: 123px;
    cursor: pointer;
}

.mmp-green-ico-4 {
    margin-left: 9.5%;
    padding-top: 40px;
    width: 32px;
}

.mmp-green-ico-4-mp {
    margin-left: 5.2%;
    top: 42px;
    width: 32px;
    position: absolute;
}

.mmp-green-description-4 {
    color: #50B83C;
    font-weight: 500 !important;
    text-transform: uppercase;
    font-size: 0.6vw;
}

.mmp-green-description-4-mp {
    color: #50B83C;
    font-weight: 500 !important;
    text-transform: uppercase;
    float: right;
    font-size: 0.6vw;
}

/* Red */

.mmp-red-block-4-mmp {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(222,54,24,1) 29%, rgba(255,255,255,1) 29%);
    border-radius: 4px !important;
    min-height: 123px;
    cursor: pointer;
}

.mmp-red-description-4-mp {
    color: #DE3618;
    font-weight: 500 !important;
    text-transform: uppercase;
    text-align: right;
    font-size: 0.6vw;
}

.mmp-red-ico-4-mp {
    margin-left: 4.9%;
    top: 42px;
    width: 32px;
    position: absolute;
}

/* General */
.mmp-copy-block-4 {
    padding-right: 20px;
    text-align: right;
    margin-top: -71px;
    padding-bottom: 54px;
}

.mmp-number-4 {
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif !important;
    font-size: 1.9vw !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    margin-right: -1px !important;
    margin-top: -16px;
    font-weight: 400 !important;
    text-transform: uppercase;
    color: #637381;
}

.mmp-number-float {
   float: right !important;
}

.mmp-number-4-mp {
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif !important;
    font-size: 2.2rem !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    margin-right: -1px !important;
    margin-top: -16px;
    font-weight: 400 !important;
    text-transform: uppercase;
    color: #637381;
    text-align: right;
}

.progress-info-mmp {
    width: 68.5%;
    float: right;
}

.mDashboard {
    width: 23%;
    padding: 18px;
    float: left;
    margin-right: 2%;
    text-align: center;
    border-bottom: 15px solid green;
    padding-top: 4%;
    padding-bottom: 4%;
}

.mDashboard-value {
    font-weight: 900;
    font-size: 22px;
    margin-top: 6px;
}

.mDashboard-Text {
    font-weight: 500;
    color: #a2a2a2;
    white-space: nowrap;
    font-size: 1.2vw;
}

/**********************************************************************************************************************/
                                  /******************* 5 Column *******************/
/**********************************************************************************************************************/


/* Teal */
.mmp-teal-block-5 {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(71,193,191,1) 40%, rgba(255,255,255,1) 40%);
    cursor: pointer;
    border-radius: 4px !important;
    height: 122px;
    /*min-width: 232px;*/
}

.mmp-teal-block-5-b {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(71,193,191,1) 40%, rgba(255,255,255,1) 40%);
    border-radius: 4px !important;
    height: 85px;
}

.mmp-teal-ico-5 {
    margin-left: 13.5%;
    padding-top: 40px;
    width: 32px;
}

.mmp-teal-description-5 {
    color: #47C1BF;
    font-weight: 500 !important;
    text-transform: uppercase;
    font-size: 0.6vw;
}

/* Orange */

.mmp-orange-block-5 {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(244,147,66,1) 40%, rgba(255,255,255,1) 40%);
    cursor: pointer;
    border-radius: 4px !important;
    height: 85px;
    /*min-width: 232px;*/
}

.mmp-orange-block-5-b {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(244,147,66,1) 40%, rgba(255,255,255,1) 40%);
    border-radius: 4px !important;
    height: 85px;
}

.mmp-orange-ico-5 {
    margin-left: 11.8%;
    padding-top: 40px;
    width: 50px;
}

.mmp-orange-ico-5-b {
    margin-left: 14.5%;
    padding-top: 40px;
    width: 32px;
}

.mmp-orange-description-5 {
    color: #F49342;
    font-weight: 500 !important;
    text-transform: uppercase;
    font-size: 0.6vw;
}

/* Indigo */

.mmp-indigo-block-5 {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(92,106,196,1) 40%, rgba(255,255,255,1) 40%);
    cursor: pointer;
    border-radius: 4px !important;
    height: 85px;
    /*min-width: 232px;*/
}

.mmp-indigo-block-5-b {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(92,106,196,1) 40%, rgba(255,255,255,1) 40%);
    border-radius: 4px !important;
    height: 85px;
}

.mmp-indigo-ico-5 {
    margin-left: 13.5%;
    padding-top: 40px;
    width: 32px;
}

.mmp-indigo-description-5 {
    color: #5C6AC4;
    font-weight: 500 !important;
    text-transform: uppercase;
    font-size: 0.6vw;
}

/* Green */

.mmp-green-block-5 {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(80,184,60,1) 40%, rgba(255,255,255,1) 40%);
    cursor: pointer;
    border-radius: 4px !important;
    height: 85px;
    /*min-width: 232px;*/
}

.mmp-green-block-5-b {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(80,184,60,1) 40%, rgba(255,255,255,1) 40%);
    border-radius: 4px !important;
    height: 85px;
}

.mmp-green-ico-5 {
    margin-left: 14.8%;
    padding-top: 40px;
    width: 32px;
}

.mmp-green-ico-5-b {
    margin-left: 13.5%;
    padding-top: 40px;
    width: 32px;
}

.mmp-green-description-5 {
    color: #50B83C;
    font-weight: 500 !important;
    text-transform: uppercase;
    font-size: 0.6vw;
}

/* Gray */

.mmp-gray-block-5 {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(33,43,54,1) 40%, rgba(255,255,255,1) 40%);
    cursor: pointer;
    border-radius: 4px !important;
    height: 85px;
    /*min-width: 232px;*/
}

.mmp-gray-ico-5 {
    margin-left: 13.3%;
    padding-top: 40px;
    width: 32px;
}

.mmp-gray-description-5 {
    color: #212b36;
    font-weight: 500 !important;
    text-transform: uppercase;
    font-size: 0.6vw;
}

/* Red */

.mmp-red-block-5 {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(222,54,24,1) 40%, rgba(255,255,255,1) 40%);
    border-radius: 4px !important;
    height: 85px;
    /*min-width: 232px;*/
}

.mmp-red-ico-5 {
    margin-left: 13.3%;
    padding-top: 40px;
    width: 32px;
}

.mmp-red-description-5 {
    color: #DE3618;
    font-weight: 500 !important;
    text-transform: uppercase;
    font-size: 0.6vw;
}

/* General */

.mmp-copy-block-5 {
    padding-right: 20px;
    text-align: right;
    margin-top: -71px;
    padding-bottom: 54px;
    /*min-width: 232px;*/
}

.mmp-number-5 {
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif !important;
    font-size: 2.2rem !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    margin-right: -1px !important;
    margin-top: -16px;
    font-weight: 400 !important;
    text-transform: uppercase;
    color: #637381;
}

/**********************************************************************************************************************/
                                 /******************* 6 Column *******************/
/**********************************************************************************************************************/


/* Teal */

.mmp-teal-block-6-mmp {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(71,193,191,1) 41%, rgba(255,255,255,1) 41%);
    border-radius: 4px !important;
    min-height: 85px !important;
    cursor: pointer;
}

.mmp-teal-description-6-mp {
    color: #47C1BF;
    font-weight: 500 !important;
    text-transform: uppercase;
    float: right;
    font-size: 0.6vw;
}

.mmp-teal-ico-6-mp {
    margin-left: 5.4%;
    top: 20px;
    width: 32px;
    position: absolute;
}

/* Green */

.mmp-green-block-6-mmp {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(80,184,60,1) 41%, rgba(255,255,255,1) 41%);
    border-radius: 4px !important;
    min-height: 85px !important;
    cursor: pointer;
}

.mmp-green-description-6-mp {
    color: #50B83C;
    font-weight: 500 !important;
    text-transform: uppercase;
    float: right;
    font-size: 0.6vw;
}

.mmp-green-ico-6-mp {
    margin-left: 7.4%;
    top: 21px;
    width: 25px;
    position: absolute;
}

/* Indigo*/

.mmp-indigo-block-6-mmp {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(92,106,196,1) 41%, rgba(255,255,255,1) 41%);
    border-radius: 4px !important;
    min-height: 85px !important;
    cursor: pointer;
}

.mmp-indigo-description-6-mp {
    color: #5C6AC4;
    font-weight: 500 !important;
    text-transform: uppercase;
    float: right;
    font-size: 0.6vw;
}

.mmp-indigo-ico-6-mp {
    margin-left: 5.7%;
    top: 20px;
    width: 32px;
    position: absolute;
}

/* Orange */

.mmp-orange-block-6-mmp {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(244,147,66,1) 41%, rgba(255,255,255,1) 41%);
    border-radius: 4px !important;
    min-height: 85px !important;
    cursor: pointer;
}

.mmp-orange-description-6-mp {
    color: #F49342;
    font-weight: 500 !important;
    text-transform: uppercase;
    float: right;
    font-size: 0.6vw;
}

.mmp-orange-ico-6-mp {
    margin-left: 4.2%;
    top: 23px;
    width: 34px;
    position: absolute;
}

/* Red */

.mmp-red-block-6-mmp {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(222,54,24,1) 41%, rgba(255,255,255,1) 41%);
    border-radius: 4px !important;
    min-height: 85px !important;
    cursor: pointer;
}

.mmp-red-description-6-mp {
    color: #DE3618;
    font-weight: 500 !important;
    text-transform: uppercase;
    float: right;
    font-size: 0.6vw;
}

.mmp-red-ico-6-mp {
    margin-left: 6%;
    top: 20px;
    width: 32px;
    position: absolute;
}

/* Blue */

.mmp-blue-block-6-mmp {
    border: 1px solid #E1E4E8;
    background: linear-gradient(90deg, rgba(0,122,206,1) 41%, rgba(255,255,255,1) 41%);
    border-radius: 4px !important;
    min-height: 85px !important;
    cursor: pointer;
}

.mmp-blue-description-6-mp {
    color: #007ACE;
    font-weight: 500 !important;
    text-transform: uppercase;
    text-align: right;
    font-size: 0.6vw;
}

.mmp-blue-ico-6-mp {
    margin-left: 5.8%;
    top: 23px;
    width: 28px;
    position: absolute;
}

/* General */

.mmp-number-6-mp {
    font-family: -apple-system, BlinkMacSystemFont, "SF Text", "Segoe UI", "Roboto", "Helvetica Neue", sans-serif !important;
    font-size: 2.2rem !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    margin-right: -1px !important;
    margin-top: -5px;
    font-weight: 400 !important;
    text-transform: uppercase;
    color: #637381;
    text-align: right;
}

/* End */


.mmp-menu {
    top: 56px;
    position: fixed;
    background-color: #ebebeb;
    display: flex;
    flex-direction: column;
    width: 240px;
    height: calc(100vh - 56px);
    padding-top: 12px !important;
}

.mmp-menu-icon {
    display: block;
    width: 20px;
    height: 20px;
    max-height: 100%;
    max-width: 100%;
    margin-right: 8px;
    fill: #4a4a4a;
}
.mmp-dropdown {
    border-radius: 3px !important;
    height: 34px;
    border: none;
    background-color: #43467F;
    color: white;
}
.mmp-menu-title {
    color: #303030;
    font-weight: 550;
    font-family: var(--base-font);
    font-size: 13px;
    line-height: 20px;
}
mmp-menu-item:hover {
    background-color: rgba(92, 106, 196, 0.12) !important;
}
.mmp-submenu {
    background-color: #ebebeb !important;
    margin-bottom: 0px !important;
}
.nav-item start active {
    background-color: #5C6AC4 !important;
}

.mmp-page-container {
    background-color: #282733 !important;
}

.mmp-page-top {
    display: flex;
    align-items: center;
    background-color: #1a1a1a; /*#1C2260 !important;*/
    height: 56px;
}

.clearable {
    color: #555555;
}

.icon-logout {
    top: 13px !important;
}

.mmp-header__title {
    display: inline-block !important;
    padding: 7px 25px 7px 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Text", Roboto, Segoe UI, Helvetica Neue, sans-serif;
    font-size: 2.8rem !important;
    font-weight: 600 !important;
    vertical-align: middle;
    margin: -5px 15px 0 0;
    color: #212b36;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    line-height: 3.2rem !important;
    overflow: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
}

.caption mmp-header__title_od {
    display: inline-block !important;
    padding: 7px 25px 7px 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Text", Roboto, Segoe UI, Helvetica Neue, sans-serif;
    font-size: 2.8rem !important;
    font-weight: 500 !important;
    vertical-align: middle;
    margin: -5px 15px 0 0;
    color: #212b36;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    line-height: 3.2rem !important;
    overflow: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
}

.mmp-tools {
    padding: 0px !important;
}

.mmp-section-title {
    margin-bottom: 0px !important;
}

.mmp-dashboard-stat-red {
    background-color: #DE3618 !important;
    border-radius: 3px !important;
}

.mmp-dashboard-stat-blue {
    background-color: #007ACE !important;
    border-radius: 3px !important;
}

.mmp-dashboard-stat-green {
    background-color: #50B83C !important;
    border-radius: 3px !important;
}

.mmp-dashboard-stat-teal {
    background-color: #47C1BF !important;
    border-radius: 3px !important;
}

.mmp-dashboard-stat-orange {
    background-color: #F49342 !important;
    border-radius: 3px !important;
}

.mmp-dashboard-stat-charcoal {
    background-color: #212B36 !important;
    border-radius: 3px !important;
}

.mmp-subheading {
    text-transform: none !important;
    font-family: -apple-system, BlinkMacSystemFont, San Francisco, Roboto, Segoe UI, Helvetica Neue, sans-serif;
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    line-height: 2.4rem !important;
    border-bottom: 2px dotted rgb(196, 205, 213) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    color:#000 !important;
}

.mmp-portlet-light {
    border-radius: 3px !important;
    box-shadow: 0 0 0 1px rgba(63,63,68,.05), 0 1px 3px 0 rgba(63,63,68,.15) !important;
    background-color: #fff !important;
}

.mmp-card-subtext {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    line-height: 1.6rem !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    color: rgb(33, 43, 54) !important;
    font-family: -apple-system, BlinkMacSystemFont, "SF Text", "Segoe UI", Roboto, "Helvetica Neue", sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

.mmp-desc {
    font-family: -apple-system, BlinkMacSystemFont, "SF Text", "Segoe UI", Roboto, "Helvetica Neue", sans-serif !important;
    font-size: 1.3rem !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    margin-right: -1px !important;
    font-weight: 500 !important;
    text-transform: uppercase;
}

.mmp-btnsml-red {
    border-radius: 3px !important;
    border: .1rem solid #c4cdd5 !important;
    color: #212b36 !important;
    fill: #637381 !important;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    min-width: 3.6rem !important;
    background: linear-gradient(180deg,#fff,#f9fafb) !important;
    padding: .7rem 1.6rem !important;
    box-shadow: 0 1px 0 0 rgba(22,29,37,.05) !important;
    line-height: 1 !important;
    text-align: center !important;
    cursor: pointer !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    text-decoration: none !important;
    transition-property: background,border,box-shadow !important;
    transition-duration: .2s !important;
    transition-timing-function: cubic-bezier(.64,0,.35,1) !important;
}

.mmp-actions {
    fill: #637381 !important;
    position: relative !important;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    min-height: 3.6rem !important;
    min-width: 3.6rem !important;
    margin: 0 !important;
    padding: .7rem 1.6rem !important;
    background: linear-gradient(180deg,#fff,#f9fafb) !important;
    border: .1rem solid #c4cdd5 !important;
    box-shadow: 0 1px 0 0 rgba(22,29,37,.05) !important;
    border-radius: 3px !important;
    line-height: 1 !important;
    color: #212b36 !important;
    text-align: center !important;
    cursor: pointer !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    text-decoration: none !important;
    transition-property: background,border,box-shadow !important;
    transition-duration: .2s !important;
    transition-timing-function: cubic-bezier(.64,0,.35,1) !important;
}

.mmp-btn-grey {
    border-radius: 3px !important;
    color: #637381 !important;
    font-size: 1.4rem !important;
    background-color: #eef1f5 !important;
    font-family: -apple-system, BlinkMacSystemFont, San Francisco, Roboto, Segoe UI, Helvetica Neue, sans-serif !important;
    border: none !important;
}

.mmp-btn-grey:hover {
    border-radius: 3px !important;
    color: #212b36 !important;
    font-size: 1.4rem !important;
    background-color: #eef1f5 !important;
    font-family: -apple-system, BlinkMacSystemFont, San Francisco, Roboto, Segoe UI, Helvetica Neue, sans-serif !important;
    border: none !important;
}

.mmp-btn-grey:active {
    border-radius: 3px !important;
    color: #212b36 !important;
    font-size: 1.4rem !important;
    background-color: #dee1e5 !important;
    font-family: -apple-system, BlinkMacSystemFont, San Francisco, Roboto, Segoe UI, Helvetica Neue, sans-serif !important;
    border: none !important;
}

.mmp-btn-grey:focus {
    border-radius: 3px !important;
    color: #212b36 !important;
    font-size: 1.4rem !important;
    background-color: #dee1e5 !important;
    font-family: -apple-system, BlinkMacSystemFont, San Francisco, Roboto, Segoe UI, Helvetica Neue, sans-serif !important;
    border: none !important;
}

.mmp-stat-block {
    cursor: pointer !important;
    border-radius: 3px !important;
    margin-top: 1px !important;
    box-shadow: 0 0 0 1px rgba(63,63,68,.05), 0 1px 3px 0 rgba(63,63,68,.15) !important;
}
.mmp-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #D62929;
}

.mmp-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.mmp-prpl-btn {
    /*float: right;*/
    /*background-color: #5C6AC4;*/
    background: linear-gradient(to bottom, #606FC7, #5865C1) !important;
    border-color: #4F5DBA !important;
    padding-left: 2%;
    padding-right: 2%;
    /*-webkit-box-shadow: inset 0 1px 0 0 #43467F !important;
    box-shadow: inset 0 1px 0 0 #43467F !important;*/
    color: white !important;
    font-size: 1.2rem !important;
    border-radius: 3px !important;
    padding-top: 9px;
    /*min-height: 40px;*/
}
.mmp-default-btn {
    background: linear-gradient(to bottom, #fefefe, #f8f8f8) !important;
    border-color: #C4CDD5 !important;
    padding-left: 2%;
    padding-right: 2%;
    font-size: 1.2rem !important;
    border-radius: 3px !important;
    padding-top: 9px;
    /*min-height: 40px;*/
}
.mmp-link {
    color: #337ab7;
}
/*.mmp-prpl-btn:hover {
    float: right;
    background: -webkit-gradient(linear, left top, left bottom, from(#0060d6), to(#007bff)) !important;
    background: linear-gradient(to bottom, #0060d6, #007bff) !important;
    border-color: #005eb2 !important;
    -webkit-box-shadow: inset 0 1px 0 0 #00a7ff !important;
    box-shadow: inset 0 1px 0 0 #00a7ff !important;
    color: white !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
}*/

.mmp-grey-btn {
    float: left;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f9fafb)) !important;
    background: linear-gradient(to bottom, #fff, #f9fafb) !important;
    border-color: #c4cdd5 !important;
    -webkit-box-shadow: inset 0 1px 0 0 #00a7ff !important;
    box-shadow: inset 0 1px 0 0 #fff !important;
    color: #212b36 !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
    margin-top: 20px;
    margin-left: 15px !important;
    margin-bottom: 19px;
    width: 220px !important;
}

.mmp-grey-btn:hover {
    float: left;
    background: -webkit-gradient(linear, left top, left bottom, from(#f9fafb), to(#f4f6f8)) !important;
    background: linear-gradient(to bottom, #f9fafb, #f4f6f8) !important;
    border-color: #c4cdd5 !important;
    -webkit-box-shadow: inset 0 1px 0 0 #00a7ff !important;
    box-shadow: inset 0 1px 0 0 #fff !important;
    color: #212b36 !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
    margin-top: 20px;
    margin-left: 15px !important;
    width: 220px !important;
}

.mmp-blueadd-btn {
    background: -webkit-gradient(linear, left top, left bottom, from(#007bff), to(#0060d6)) !important;
    background: linear-gradient(to bottom, #007bff, #0060d6) !important;
    border-color: #005eb2 !important;
    -webkit-box-shadow: inset 0 1px 0 0 #00a7ff !important;
    box-shadow: inset 0 1px 0 0 #00a7ff !important;
    color: white !important;
    font-size: 1.4rem !important;
}

.mmp-blueadd-btn:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#0060d6), to(#007bff)) !important;
    background: linear-gradient(to bottom, #0060d6, #007bff) !important;
    border-color: #005eb2 !important;
    -webkit-box-shadow: inset 0 1px 0 0 #00a7ff !important;
    box-shadow: inset 0 1px 0 0 #00a7ff !important;
    color: white !important;
    font-size: 1.4rem !important;
}

.mmp-cat-btn {
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f9fafb)) !important;
    background: linear-gradient(to bottom, #fff, #f9fafb) !important;
    border-color: #c4cdd5 !important;
    -webkit-box-shadow: inset 0 1px 0 0 #00a7ff !important;
    box-shadow: inset 0 1px 0 0 #fff !important;
    color: #212b36 !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
    margin-left: 15px !important;
    margin-bottom: 19px;
    width: 220px !important;
}

.mmp-cat-btn:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#f9fafb), to(#f4f6f8)) !important;
    background: linear-gradient(to bottom, #f9fafb, #f4f6f8) !important;
    border-color: #c4cdd5 !important;
    -webkit-box-shadow: inset 0 1px 0 0 #00a7ff !important;
    box-shadow: inset 0 1px 0 0 #fff !important;
    color: #212b36 !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
    margin-left: 15px !important;
    margin-bottom: 19px;
    width: 220px !important;
}

.mmp-blueaddprm-btn {
    background: -webkit-gradient(linear, left top, left bottom, from(#007bff), to(#0060d6)) !important;
    background: linear-gradient(to bottom, #007bff, #0060d6) !important;
    border-color: #005eb2 !important;
    -webkit-box-shadow: inset 0 1px 0 0 #00a7ff !important;
    box-shadow: inset 0 1px 0 0 #00a7ff !important;
    color: white !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
}

.mmp-blueaddprm-btn:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#0060d6), to(#007bff)) !important;
    background: linear-gradient(to bottom, #0060d6, #007bff) !important;
    border-color: #005eb2 !important;
    -webkit-box-shadow: inset 0 1px 0 0 #00a7ff !important;
    box-shadow: inset 0 1px 0 0 #00a7ff !important;
    color: white !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
}

.mmp-select-tbl-btn {
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f9fafb)) !important;
    background: linear-gradient(to bottom, #fff, #f9fafb) !important;
    border: solid 1px #c4cdd5 !important;
    color: #212b36 !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
    padding: 9px 16px 9px 15px;
}


.mmp-select-tbl-btn:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#f9fafb), to(#f4f6f8)) !important;
    background: linear-gradient(to bottom, #f9fafb, #f4f6f8) !important;
    border: solid 1px #c4cdd5 !important;
    color: #212b36 !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
    padding: 9px 16px 9px 15px;
}

.mmp-red-btn {
    float: right;
    background: -webkit-gradient(linear, left top, left bottom, from(#e5391a), to(#c61d00));
    background: linear-gradient(to bottom, #e5391a, #c61d00);
    border-color: #b02b13 !important;
    -webkit-box-shadow: inset 0 1px 0 0 #ff9c92 !important;
    box-shadow: inset 0 1px 0 0 #ff9c92 !important;
    color: white !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
}

.mmp-red-btn:hover {
    float: right;
    background: -webkit-gradient(linear, left top, left bottom, from(#c61d00), to(#e5391a));
    background: linear-gradient(to bottom, #c61d00, #e5391a) !important;
    border-color: #b02b13 !important;
    -webkit-box-shadow: inset 0 1px 0 0 #ff9c92 !important;
    box-shadow: inset 0 1px 0 0 #ff9c92 !important;
    color: white !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
}

.mmp-btn-grey-mng {
    float: left;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f9fafb)) !important;
    background: linear-gradient(to bottom, #fff, #f9fafb) !important;
    border-color: #c4cdd5 !important;
    -webkit-box-shadow: inset 0 1px 0 0 #00a7ff !important;
    box-shadow: inset 0 1px 0 0 #fff !important;
    color: #212b36 !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
    margin-top: 20px;
    margin-left: 15px !important;
    margin-bottom: 19px;
    width: 220px !important;
}

.mmp-grey-add-btn {
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f9fafb)) !important;
    background: linear-gradient(to bottom, #fff, #f9fafb) !important;
    border-color: #c4cdd5 !important;
    -webkit-box-shadow: inset 0 1px 0 0 #00a7ff !important;
    box-shadow: inset 0 1px 0 0 #fff !important;
    color: #212b36 !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
}

.mmp-grey-add-btn:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#f9fafb), to(#f4f6f8)) !important;
    background: linear-gradient(to bottom, #f9fafb, #f4f6f8) !important;
    border-color: #c4cdd5 !important;
    -webkit-box-shadow: inset 0 1px 0 0 #00a7ff !important;
    box-shadow: inset 0 1px 0 0 #fff !important;
    color: #212b36 !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
}

.mmp-grey-upload-btn {
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f9fafb)) !important;
    background: linear-gradient(to bottom, #fff, #f9fafb) !important;
    border-color: #c4cdd5 !important;
    border: 1px solid;
    -webkit-box-shadow: inset 0 1px 0 0 #00a7ff !important;
    box-shadow: inset 0 1px 0 0 #fff !important;
    color: #212b36 !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
}

.mmp-grey-btn:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#f9fafb), to(#fff)) !important;
    background: linear-gradient(to bottom, #f9fafb, #fff) !important;
    border-color: #c4cdd5 !important;
    border: 1px solid;
    -webkit-box-shadow: inset 0 1px 0 0 #00a7ff !important;
    box-shadow: inset 0 1px 0 0 #fff !important;
    color: #212b36 !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
}


.mmp-grey-dd-btn {
    float: left;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f9fafb)) !important;
    background: linear-gradient(to bottom, #fff, #f9fafb) !important;
    border-color: #c4cdd5 !important;
    -webkit-box-shadow: inset 0 1px 0 0 #00a7ff !important;
    box-shadow: inset 0 1px 0 0 #fff !important;
    color: #212b36 !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
    margin-top: 20px;
    margin-left: 15px !important;
    margin-bottom: 19px;
    width: 220px !important;
}

.mmp-grey-dd-btn:hover {
    float: left;
    background: -webkit-gradient(linear, left top, left bottom, from(#f9fafb), to(#f4f6f8)) !important;
    background: linear-gradient(to bottom, #f9fafb, #f4f6f8) !important;
    border-color: #c4cdd5 !important;
    -webkit-box-shadow: inset 0 1px 0 0 #00a7ff !important;
    box-shadow: inset 0 1px 0 0 #fff !important;
    color: #212b36 !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
    margin-top: 20px;
    margin-left: 15px !important;
    margin-bottom: 19px;
    width: 220px !important;
}

.mmp-reload {
    animation-name: preload_color_change;
    background-color: #f1f1f1;
    color: #f1f1f1;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
@keyframes preload_color_change {
    0% {
        background: #f1f1f1;
        color: #f1f1f1
    }
    50%{
        background: #e6e6e6;
        color: #e6e6e6;
    }
    100% {
        background: #f1f1f1;
        color: #f1f1f1
    }
}
.mmp-hr {
    position:absolute;
    background-color: #C4CDD5;
    left: 0px;
    height: 1px;
    right: 0px;
}
.mmp-input {
    border: 1px solid lightgray;
    border-radius: 3px !important;
    height: 27px;
    padding-left:7px;
}
.mmp-popup-header {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
    font-size: 20px;
    line-height: 1;
}

.mmp-popup-light {
    border-radius: 3px !important;
    box-shadow: 0 0 0 3px rgba(63,63,68,.15), 0 3px 6px 0 rgba(63,63,68,.15) !important;
    background-color: #fff !important;
}


.mmp-grey-upload-btn {
    float: right;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f9fafb)) !important;
    background: linear-gradient(to bottom, #fff, #f9fafb) !important;
    border-color: #c4cdd5 !important;
    -webkit-box-shadow: inset 0 1px 0 0 #00a7ff !important;
    box-shadow: inset 0 1px 0 0 #fff !important;
    color: #212b36 !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
    margin-top: 20px;
    margin-left: 15px !important;
    margin-bottom: 19px;
    width: 220px !important;
    height: 34px !important;
    font-style: normal !important;
}

.mmp-grey-upload-btn:hover {
    float: right;
    background: -webkit-gradient(linear, left top, left bottom, from(#f9fafb), to(#f4f6f8)) !important;
    background: linear-gradient(to bottom, #f9fafb, #f4f6f8) !important;
    border-color: #c4cdd5 !important;
    -webkit-box-shadow: inset 0 1px 0 0 #00a7ff !important;
    box-shadow: inset 0 1px 0 0 #fff !important;
    color: #212b36 !important;
    font-size: 1.4rem !important;
    border-radius: 3px !important;
    margin-top: 20px;
    margin-left: 15px !important;
    margin-bottom: 19px;
    width: 220px !important;
    height: 34px !important;
    font-style: normal !important;
}

/* Media Queries */

@media (max-width:1680px) and (min-width:100px) {

/**********************************************************************************************************************/

                            /******************* 4 Column *******************/

/**********************************************************************************************************************/

    /* Teal */

.mmp-teal-block-4 {
    border: 1px solid #E1E4E8;
    javascript: LoadPage('Dashboard&Products');
    void 0;
    background: linear-gradient(-360deg, rgba(71,193,191,1) 29%, rgba(255,255,255,1) 29%);
    border-radius: 4px !important;
}

.mmp-teal-block-4-mmp {
        border: 1px solid #E1E4E8;
        javascript: LoadPage('Dashboard&Products');
        void 0;
        background: linear-gradient(-360deg, rgba(71,193,191,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
}

.mmp-teal-ico-4 {
        display: none;
    }

.mmp-teal-description-4 {
    font-size: 1.3rem;
}

    /* Orange */

    .mmp-orange-block-4 {
        border: 1px solid #E1E4E8;
        background: linear-gradient(-360deg, rgba(244,147,66,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
    }

    .mmp-orange-block-4-mmp {
        border: 1px solid #E1E4E8;
        background: linear-gradient(-360deg, rgba(244,147,66,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
        cursor: pointer;
    }

.mmp-orange-ico-4 {
    display: none;
}

    .mmp-orange-description-4 {
        font-size: 1.3rem;
    }

    /* Indigo */

.mmp-indigo-block-4 {
    border: 1px solid #E1E4E8;
    background: linear-gradient(-360deg, rgba(92,106,196,1) 29%, rgba(255,255,255,1) 29%);
    border-radius: 4px !important;
}

.mmp-indigo-ico-4 {
        display: none;
}

.mmp-indigo-description-4 {
        font-size: 1.3rem;
    }

    /* Green */

.mmp-green-block-4 {
    border: 1px solid #E1E4E8;
    background: linear-gradient(-360deg, rgba(80,184,60,1) 29%, rgba(255,255,255,1) 29%);
    border-radius: 4px !important;
}

.mmp-green-block-4-mmp {
    border: 1px solid #E1E4E8;
    background: linear-gradient(-360deg, rgba(80,184,60,1) 29%, rgba(255,255,255,1) 29%);
    border-radius: 4px !important;
    cursor: pointer;
}

.mmp-green-ico-4 {
    display: none;
}

    .mmp-green-description-4 {
        font-size: 1.3rem;
    }

    /* Red */

    .mmp-red-block-4-mmp {
        border: 1px solid #E1E4E8;
        background: linear-gradient(-360deg, rgba(222,54,24,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
        cursor: pointer;
    }

    /* General */

    .mmp-number-4 {
        font-family: -apple-system, BlinkMacSystemFont, "SF Text", "Segoe UI", Roboto, "Helvetica Neue", sans-serif !important;
        font-size: 1.9vw !important;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-size-adjust: 100%;
        text-rendering: optimizeLegibility;
        margin-right: -1px !important;
        margin-top: -16px;
        font-weight: 400 !important;
        text-transform: uppercase;
        color: #637381;
    }

.mmp-copy-block-4 {
    padding-right: 20px;
    text-align: right;
    margin-top: 25px;
    padding-bottom: 54px;
}


    /**********************************************************************************************************************/

                                   /******************* 5 Column *******************/

    /**********************************************************************************************************************/

    /* Teal */

    .mmp-teal-block-5 {
        border: 1px solid #E1E4E8;
        javascript: LoadPage('Dashboard&Products');
        void 0;
        background: linear-gradient(-360deg, rgba(71,193,191,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
    }

    .mmp-teal-block-5-b {
        border: 1px solid #E1E4E8;
        background: linear-gradient(-360deg, rgba(71,193,191,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
        height: 85px;
    }

    .mmp-teal-ico-5 {
        display: none;
    }

    .mmp-teal-description-5 {
        font-size: 1.3rem;
    }

    /* Orange */

    .mmp-orange-block-5 {
        border: 1px solid #E1E4E8;
        background: linear-gradient(-360deg, rgba(244,147,66,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
    }

    .mmp-orange-block-5-b {
        border: 1px solid #E1E4E8;
        background: linear-gradient(-360deg, rgba(244,147,66,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
        height: 85px;
    }

    .mmp-orange-ico-5 {
        display: none;
    }

    .mmp-orange-ico-5-b {
        display: none;
    }

    .mmp-orange-description-5 {
        font-size: 1.3rem;
    }

    /* Indigo */

    .mmp-indigo-block-5 {
        border: 1px solid #E1E4E8;
        background: linear-gradient(-360deg, rgba(92,106,196,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
    }

    .mmp-indigo-block-5-b {
        border: 1px solid #E1E4E8;
        background: linear-gradient(-360deg, rgba(92,106,196,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
        height: 85px;
    }

    .mmp-indigo-ico-5 {
        display: none;
    }

    .mmp-indigo-description-5 {
        font-size: 1.3rem;
    }

    /* Green */

    .mmp-green-block-5 {
        border: 1px solid #E1E4E8;
        background: linear-gradient(-360deg, rgba(80,184,60,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
    }
    .mmp-green-block-5-b {
        border: 1px solid #E1E4E8;
        background: linear-gradient(-360deg, rgba(80,184,60,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
        height: 85px;
    }

    .mmp-green-ico-5 {
        display: none;
    }

    .mmp-green-ico-5-b {
        display: none;
    }

    .mmp-green-description-5 {
        font-size: 1.3rem;
    }


    /* Gray */

    .mmp-gray-block-5 {
        border: 1px solid #E1E4E8;
        background: linear-gradient(-360deg, rgba(33,43,54,1) 29%, rgba(255,255,255,1) 29%);
        cursor: pointer;
        border-radius: 4px !important;
        height: 85px;
    }

    .mmp-gray-ico-5 {
        display: none;
    }

    /* Red */

    .mmp-red-block-5 {
        border: 1px solid #E1E4E8;
        background: linear-gradient(-360deg, rgba(222,54,24,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
        height: 85px;
    }

    .mmp-red-ico-5 {
        display: none;
    }

    .mmp-red-description-5 {
        font-size: 1.3rem;
    }

    /* General */

    .mmp-number-5 {
        font-family: -apple-system, BlinkMacSystemFont, "SF Text", "Segoe UI", Roboto, "Helvetica Neue", sans-serif !important;
        font-size: 2.6rem !important;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-size-adjust: 100%;
        text-rendering: optimizeLegibility;
        margin-right: -1px !important;
        margin-top: -16px;
        font-weight: 400 !important;
        text-transform: uppercase;
        color: #637381;
    }

    .mmp-copy-block-5 {
        padding-right: 20px;
        text-align: right;
        margin-top: 25px;
        padding-bottom: 54px;
    }

    /**********************************************************************************************************************/

                                  /******************* 6 Column *******************/

    /**********************************************************************************************************************/

    /* Teal */

    .mmp-teal-ico-6-mp {
        display: none;
    }

    .mmp-teal-block-6-mmp {
        border: 1px solid #E1E4E8;
        background: linear-gradient(-360deg, rgba(71,193,191,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
        height: 85px;
    }

    .mmp-teal-description-6-mp {
        font-size: 1.3rem;
    }

    /* Green */

    .mmp-green-ico-6-mp {
        display: none;
    }

    .mmp-green-block-6-mmp {
        border: 1px solid #E1E4E8;
        background: linear-gradient(-360deg, rgba(80,184,60,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
        height: 85px;
    }

    .mmp-green-description-6-mp {
        font-size: 1.3rem;
    }

    /* Indigo */

    .mmp-indigo-ico-6-mp {
        display: none;
    }

    .mmp-indigo-block-6-mmp {
        border: 1px solid #E1E4E8;
        background: linear-gradient(-360deg, rgba(92,106,196,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
        height: 85px;
    }

    .mmp-indigo-description-6-mp {
        font-size: 1.3rem;
    }
 
    /* Orange */

    .mmp-orange-ico-6-mp {
        display: none;
    }

    .mmp-orange-block-6-mmp {
        border: 1px solid #E1E4E8;
        background: linear-gradient(-360deg, rgba(244,147,66,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
        height: 85px;
    }

    .mmp-orange-description-6-mp {
        font-size: 1.3rem;
    }

    /* Red */

    .mmp-red-ico-6-mp {
        display: none;
    }

    .mmp-red-block-6-mmp {
        border: 1px solid #E1E4E8;
        background: linear-gradient(-360deg, rgba(222,54,24,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
        height: 85px;
    }

    .mmp-red-description-6-mp {
        font-size: 1.3rem;
    }


    /* Blue */

    .mmp-blue-ico-6-mp {
        display: none;
    }

    .mmp-blue-block-6-mmp {
        border: 1px solid #E1E4E8;
        background: linear-gradient(-360deg, rgba(0,122,206,1) 29%, rgba(255,255,255,1) 29%);
        border-radius: 4px !important;
        height: 85px;
    }

    .mmp-blue-description-6-mp {
        font-size: 1.3rem;
    }

}

@media (max-width: 768px) {


    .ls24-container {
        grid-template-columns: 1fr; /* Collapse to a single column */
    }

    .ls24-main-navigation {
        z-index: 20;
    }

    .ls24-sidekick__left-cornice {
        display: none;
    }

    .ls24-header__left-cornice {
        position: absolute;
        top: 56px;
        left: 0px;
        width: 12px;
        z-index: 30;
        display:block
    }

        .ls24-header__left-cornice img {
            position: absolute;
        }

}

.pr-0 {
    padding-right: 0px !important;
}

.no-break {
    word-wrap: normal;
    overflow-wrap: normal;
    white-space: nowrap;
}

.align-text-right {
    text-align: right !important;
}

.ls24-opportunity-table__body {
    font-size: 13px;
}

.ls24-opportunity-table__product-title {
    font-size: 13px;
    font-weight: 600;
}

.ls24-opportunity-table__card {
    font-family: 'Inter', sans-serif;
    overflow-x: auto;
    padding: 16px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: inset 1px 0px 0px 0 rgba(0, 0, 0, 0.13), inset -1px 0px 0px 0 rgba(0, 0, 0, 0.13), inset 0px -1px 0px 0 rgba(0, 0, 0, 0.17), inset 0px 1px 0px 0 rgba(204, 204, 204, 0.5), 0px 1px 0px 0 rgba(26, 26, 26, 0.07);
}

.ls24-opportunity-table__wrapper {
    border-collapse: collapse;
    width: 100%;
}

    .ls24-opportunity-table__wrapper th, .ls24-opportunity-table__wrapper td {
        padding: 8px 12px;
        text-align: left;
        border-bottom: 1px solid #dee2e6;
    }

    .ls24-opportunity-table__wrapper th {
        background-color: #f1f3f5;
        font-weight: 500;
        font-size: 13px;
    }

.ls24-opportunity-table__product-detail-row:hover {
    background-color: #f8f9fa;
}

.ls24-opportunity-table__product-detail-row-input-field {
    padding: 5px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #f8f9fa;
    text-align: right;
    width: 100%;
}

    .ls24-opportunity-table__product-detail-row-input-field:focus {
        outline: none;
        border-color: #80bdff;
        box-shadow: 0 0 5px rgba(128, 189, 255, 0.5);
    }

.ls24-opportunity-table__product-detail-row-link {
    color: #007bff;
    text-decoration: none;
}

.ls24-opportunity-table__product-detail-row-brand-link {
    color: #007bff;
    text-decoration: none;
}

.ls24-opportunity-table__product-detail-row-link:hover {
    text-decoration: underline;
}

/*Custom bootbox popup css classes*/
.custom-bootbox .bootbox-close-button {
    background-image: url(../../../assets/images/popupcloseicon.svg) !important;
    background-repeat: no-repeat !important;
    width: 20px;
    height: 20px;
    opacity: 1;
}
.custom-bootbox .bootbox-close-button:hover {
        background-color: #0000000d;
        border-radius: 5px;
        padding: 10px;
        background-image: url(../../../assets/images/popupcloseiconhover.svg) !important;
}
.custom-bootbox .modal-header {
    background-color: #f3f3f3;
    padding: 16px;
    border-radius: 12px 12px 0 0;
    min-height: 50px;
}
.custom-bootbox .modal-header .modal-title {
        font-family: var(--base-font);
        font-weight: 650;
        font-size: 14px;
        color: #202223;
}

#prev-next-button {
    display:flex;
    gap: 4px;
    margin-right: 8px;
}


.order-prev-next-button {
    background-color: #E3e3e3;
    padding: 4px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .order-prev-next-button:hover {
        background-color: #d4d4d4;
    }

    .order-prev-next-button:active {
        background-color: #cccccc;
        box-shadow: 0rem .125rem .0625rem 0rem rgba(26, 26, 26, .2) inset, .0625rem 0rem .0625rem 0rem rgba(26, 26, 26, .12) inset, -.0625rem 0rem .0625rem 0rem rgba(26, 26, 26, .12) inset;
    }


.order-prev-next-button svg {
    width: 20px;
    height: 20px;
}
.order-prev-next-button[disabled] {
    background-color: #e9e9e9;
}
.suggestionContainer {
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    background: white;
    width: 93%;
    z-index: 9999;
    background-color: #fff;
    border-radius: 2px;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .suggestionContainer.loading {
        min-height: 150px;
        margin-top: 35px;
    }

    .suggestionContainer li {
        cursor: default;
        padding: 1px 10px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        line-height: 30px;
        text-align: left;
        border-top: 1px solid #e6e6e6;
        font-size: 12px;
        color: #515151;
        cursor: pointer;
    }
    .suggestionContainer li a {
        text-decoration:none;
    }

span.place-marker-image {
    background-image: url(../../../assets/images/LocationIcon.svg);
    width: 20px;
    height: 20px;
    margin-right: 7px;
    margin-top: 6px;
    display: inline-block;
    vertical-align: top;
    background-size: 34px;
    background-size: 20px 20px;
    background-repeat: no-repeat;
}
.highlight-places{
    font-size:13px;
    color:#000;
    font-weight:bold;
}