@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,400&family=Squada+One&display=swap');
*,
*::before,
*::after {
    box-sizing: border-box;
}
:root {
    --bs-heading-color: #333333;
    --bs-link-hover-color: #1CAC52;
    --bs-text-color: rgb(51 51 51 / 54%);
    --bs-text-light-color: #666666;
    --bs-white: #ffffff;
    --bs-transparent: transparent;
    --bs-black: black;
    --bs-green-theme: #1CAC52;
    --bs-green-theme-bg: #1CAC52;
    --bs-light-gray: #F9F9F9;
    --bs-btn-bg-color: #1CAC52;
    --bs-select-bg-color: #c1ffd9;
    --bs-select-text-color: rgba(0,0,0,1);
    --bs-warning-color: #F2C94C;
    --bs-border-bottom-color: #EEEEEE;
    --bs-border-focus-border-color: #999999;
    --bs-table-border-color: #DDDDDD;
    --bs-border-color: #E5E5E5;
    --bs-danger-color: #EA1502;
    --bs-success-color: #1CAC52;
    --bs-product-bg-color: #F5F5F5;
    --bs-rating-star-color: #F2C94C;
    --bs-light-color: #BDBDBD;
    --bs-btn-light-green-bg: rgba(28, 172, 82, 0.1);
    --bs-btn-light-green-text: rgba(28, 172, 82, 1);
    --bs-btn-light-red-bg: rgba(234, 21, 2, 0.1);
    --bs-btn-light-red-text: #EA1502;
    --bs-btn-light-gray-bg: rgba(238, 238, 238, 1);
    --bs-btn-light-gray-text: rgba(51, 51, 51, 1);
    --bs-box-shasow-color: rgb(178 178 178 / 16%);
    --bs-box-shasow-color2: rgba(53, 115, 249, 0.06);
    --bs-box-shasow-color3: rgb(209 232 255 / 49%);
    --bs-font-family-roboto: 'Roboto', sans-serif;
    --bs-font-family-poppins: 'Poppins', sans-serif;
    --bs-font-family-squada-one: 'Squada One', cursive;
    --bs-font-family-montserrat: 'Montserrat', sans-serif;
}
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: var(--bs-transparent);
    font-family: var(--bs-font-family-roboto);
}

@-ms-viewport {
    width: device-width;
}

article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    font-family: var(--bs-font-family-poppins);
}
h1, h2, h3, h4, h5,h6 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 600;
    line-height: 1.2;
}
a{
    text-decoration:none;
    color:var(--bs-heading-color);
    transition:all .3s ease;
}
p:last-child{
    margin-bottom:0px;
}
::selection {
    background-color: var(--bs-select-bg-color);
    color: var(--bs-select-text-color);
}
button{
    border:none;
    padding:0;
    outline:none;
    box-shadow:none;
    background-color:var(--bs-transparent);
}

select:focus, input{
    border:0;
    outline:none;
    box-shadow:none;
}
.pt-20{
    padding-top:20px;
}
.pt-30{
    padding-top:30px;
}
.pt-60 {
    padding-top: 60px;
}
.pt-40{
    padding-top:40px;
}
.pb-40 {
    padding-bottom: 40px;
}
.pt-50{
    padding-top:50px;
}
.pt-10{
    padding-top:10px;
}
.pl-10{
    padding-left:10px;
}
.pl-0{
    padding-left:0px;
}
.pr-0 {
    padding-right: 0px;
}
.pb-30{
    padding-bottom:30px;
}
.pb-20{
    padding-bottom:20px;
}
.pb-60{
    padding-bottom:60px;
}
.p-l-r-40{
    padding-left:40px;
    padding-right:40px;
}
.mb-40{
    margin-bottom:40px;
}
.max-w-100{
    max-width:100% !important;
}
.padding-inline-20{
    padding-inline:20px;
}
img{
    max-width:100%;
}
.height-100{
    height:100%;
}
.p-inline-20{
    padding-inline:20px;
}
/*top-header-style*/
.navbar-section {
    padding-inline: 25px;
    padding-block: 12px;
    background-color: var(--bs-white);
    box-shadow: 2px 2px 5px var(--bs-box-shasow-color3);
    margin-bottom: 3px;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items:center;
}
.nav-list {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

    .nav-list li {
        list-style-type: none;
        position:relative;
    }

        .nav-list li a {
            display: inline-block;
            color: var(--bs-heading-color);
            font-size: 14px;
            font-weight: 400;
            line-height: 1;
            transition:all .3s ease;
        }
    .nav-list > .admin-menu-btn > a img {
        border-radius: 50%;
        width: 30px;
        height: 30px;
    }
.nav-list > li > a:hover {
    color: var(--bs-link-hover-color);
}
            .nav-list > li:not(:last-child) {
                margin-right: 40px;
            }

    .nav-list li a img {
        margin-right: 10px;
    }
.mobile-menu-toggle {
    display: none;
    text-transform: uppercase;
}
.left-side {
    max-width: 220px;
    width: 100%;
    min-height: calc(100vh - 70px);
    padding: 0;
}

.right-side {
    max-width: calc(100% - 220px);
    width: 100%;
    padding: 0;
}

.main-page-container {
    background-color: var(--bs-light-gray);
    height: 100%;
    padding: 20px;
}

.right-inner-section {
    background-color: var(--bs-white);
    border-radius: 19px;
    padding: 30px 0px;
    box-shadow: 0px 0px 5px var(--bs-box-shasow-color2);
}
.page-heading {
    padding-inline: 20px;
}
.left-sidebar ul {
    padding: 0;
    margin: 0;
}

    .left-sidebar ul li {
        list-style-type: none;
    }

        .left-sidebar ul li a {
            font-size: 16px;
            font-weight: 500;
            color: var(--bs-heading-color);
            line-height: 1;
            transition: all .3s ease;
            padding-block:10px;
            display:block;
        }

        .left-sidebar ul li:not(:first-child) a{
            padding-left: 72px;
        }

        .left-sidebar ul li:not(:first-child):hover a, .left-sidebar ul li:not(:first-child).active a {
            color: var(--bs-link-hover-color);
        }
        .left-sidebar ul li:nth-child(2){
            color: var(--bs-text-light-color);
            text-transform:uppercase;
            font-size:14px;
            font-weight:400;
            padding-left:72px;
            padding-block:10px;
            line-height:1;
        }
            
.diagonal-btn {
    padding: 17px 25px;
    position: relative;
    min-width: 100px;
    text-align: center;
    line-height: 1;
    display: inline-block;
    color: var(--bs-white) !important;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    z-index: 1;
}
.diagonal-btn:before {
    content: '';
    display: block;
    position: absolute;
    background-color: var(--bs-btn-bg-color);
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0;
    transform: skew(-25deg);
    left: 0;
    border-radius: 2px 6px;
}
    .diagonal-btn.light-green-bg {
        color: var(--bs-btn-light-green-text) !important;
    }
.top-links-btn .diagonal-btn {
    text-transform: capitalize;
}
.diagonal-btn.light-green-bg:before {
    background-color: var(--bs-btn-light-green-bg);
}
.diagonal-btn.light-red-bg {
    color: var(--bs-btn-light-red-text) !important;
}
.diagonal-btn.light-red-bg:before {
    background-color: var(--bs-btn-light-red-bg);
}
    .diagonal-btn.light-gray-bg {
        color: var(--bs-btn-light-gray-text) !important;
    }

        .diagonal-btn.light-gray-bg:before {
            background-color: var(--bs-btn-light-gray-bg);
        }
.left-sidebar ul li:first-child .diagonal-btn {
    line-height: 1;
    padding: 17px 25px;
    font-size:14px;
    font-weight:400;
}
.left-sidebar ul li:not(:first-child) {
    margin-block:4px;
}
.diagonal-btn.light-gray-bg svg path {
    stroke: var(--bs-btn-light-gray-text);
}
.diagonal-btn.light-green-bg svg path {
    stroke: var(--bs-btn-light-green-text);
}
.diagonal-btn svg, .diagonal-btn img {
    margin-right: 5px;
}
.left-sidebar ul li:first-child {
    margin-block: 10px;
    margin-inline: 30px;
}
.diagonal-btn:not(:last-child){
    margin-right:20px;
}
/*dashboard-page design*/
.page-heading h1, .page-heading h2 {
    color: var(--bs-heading-color);
    font-size: 32px;
    line-height: 1;
    border-bottom: 1px solid var(--bs-border-bottom-color);
    padding-bottom: 25px;
    margin-bottom: 10px;
    font-family: var(--bs-font-family-squada-one);
    font-weight: 500;
}
.card-main {
    display: flex;
    flex-wrap: wrap;
    padding-inline: 5px;
}

.card-section {
    max-width: calc(50% - 30px);
    width:100%;
    min-width: 450px;
    border: 1px solid var(--bs-border-color);
    border-radius: 19px;
    padding: 30px;
    background-color: var(--bs-white);
    margin:15px;
}
.card-status {
    display: flex;
}

.card-status-name {
    margin-right: 30px;
}

    .card-status-name h6 {
        color: var(--bs-heading-color);
        font-size: 24px;
        line-height: 1;
        font-weight: 400;
        font-family:var(--bs-font-family-squada-one);
    }

    .card-status-name p {
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
    }

    .card-status-name.Completed-number p {
        color: var(--bs-success-color);
    }
    .card-status-name.Failed-number p {
        color: var(--bs-danger-color);
    }

    .card-status-name.In-Progress-number p {
        color: var(--bs-warning-color);
    }
.card-heading {
    display: flex;
}
.card-sec-name > p {
    margin-bottom: 40px;
    width:80%;
}
    .card-heading h2 {
        color: var(--bs-heading-color);
        font-size: 44px;
        line-height: 1;
        font-weight: 400;
        padding-right: 40px;
        padding-left: 10px;
        font-family: var(--bs-font-family-squada-one);
        min-width: 110px;
        text-align: center;
        padding-top:23px;
    }

.card-sec-name h4 {
    color: var(--bs-heading-color);
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    padding-bottom: 10px;
    font-family: var(--bs-font-family-squada-one);
}

.card-sec-name p {
    color: var(--bs-text-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}
.admin-menu {
    position: absolute;
    top: 50px;
    width: 230px;
    left: -70px;
    background-color: var(--bs-white);
    box-shadow: 0px 0px 15px 0px var(--bs-box-shasow-color);
    border-radius: 5px;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInMenu 0.5s ease 1 forwards;
    z-index: 99;
}
.admin-menu-active .admin-menu {
    display: block;
}
@keyframes fadeInMenu {
    100% {
        opacity: 1;
        transform: none;
    }
}
    .admin-menu ul {
        padding: 15px;
        margin: 0;
    }

        .admin-menu ul li a {
            color: var(--bs-heading-color);
            font-size: 16px;
            font-weight: 500;
            line-height: 19px;
            padding-block: 10px;
            display:inline-block;
        }

        .admin-menu ul li:last-child a {
            color: var(--bs-danger-color);
        }

.top-link {
    padding: 10px 20px;
    display: flex;
    box-shadow: 2px 2px 5px var(--bs-box-shasow-color3);
    margin-bottom: 4px;
    background-color: var(--bs-white);
    flex-wrap: wrap;
}
    .top-link .top-links-btn:not(:last-child){
        padding-right:25px;
    }

.text-input {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    padding: 0px 20px;
    font-size: 16px;
    height: 56px;
    font-weight: 400;
    border-radius: 8px;
    border: 1px solid var(--bs-border-color);
    color: var(--bs-heading-color);
    box-shadow: none;
    padding-top: 5px;
    padding-top: 20px;
    background-color: var(--bs-white);
}
.dropdown-arrow .input-field {
    appearance: none;
    padding-right:40px;
}
.input-label {
    position: absolute;
    left: 20px;
    font-size: 16px;
    font-weight: 400;
    transform-origin: left center;
    pointer-events: none;
    background: var(--bs-transparent);
    transition: transform 0.2s ease-out;
    color: var(--bs-heading-color);
    margin-bottom: 0px;
    top: 12px;
}
.text-input.search-section {
    margin-bottom: 0px;
}
.search-section .input-label {
    color:var(--bs-text-light-color)
}

.search-section .input-label img{
    padding-right:10px;
}
:is(.input-field:focus, select:focus) {
    outline: none;
    border: 1px solid var(--bs-border-focus-border-color);
}

:is(.input-field:focus, .input-field:valid, .input-field:disabled) + .input-label, :is(.input-field:focus, .input-field:valid, .input-field:disabled) ~ .input-label {
    transition: 0.2s ease-out;
    transform: translateY(-10px);
    color: var(--bs-green-theme);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    top: 16px;
}
.text-vaild.input-field:invalid {
    transition: 0.2s ease-out;
    transform: translateY(-10px);
    color: var(--bs-green-theme);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    top: 16px;
}
:is(.input-field:focus, .input-field:valid, .input-field:disabled) + .input-label img {
    display: none;
}
.table-other-links {
    display: flex;
    padding: 0px;
    margin: 0;
    align-items: center;
    height: 100%;
    flex-wrap:nowrap;
}
.text-input textarea {
    min-height: 180px;
    resize: none;
    line-height: 30px;
}
    .table-other-links li {
        list-style-type: none;
    }

        .table-other-links li:not(:last-child) {
            padding-right: 30px;
        }

        .table-other-links li a {
            color: var(--bs-text-light-color);
            font-size: 14px;
            font-weight: 400;
            line-height: 21px;
            transition: all .3s ease;
            display: inline-block;
            text-transform:uppercase;
            white-space:nowrap;
        }
        .table-other-links li:first-child a {
            color: var(--bs-green-theme);
            font-weight:500;
        }
        .table-other-links li:hover a {
            color: var(--bs-link-hover-color);
        }

        .table-other-links li a img {
            padding-right: 5px;
            margin-top: -2px;
        }
.product-quantity {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
    align-items: center;
}

    .product-quantity li {
        list-style-type: none;
    }

        .product-quantity li:not(:last-child) {
            padding-right: 20px;
        }

        .product-quantity li a {
            color: var(--bs-green-theme);
            font-size: 14px;
            font-weight: 400;
            line-height: 1;
            display: inline-block;
            text-transform: uppercase;
            transition: all .3s ease;
            white-space: nowrap;
        }
        .product-quantity li.active a {
            color: var(--bs-heading-color);
        }

            .product-quantity li a span {
                color: var(--bs-text-light-color);
            }
.dropdown-select {
    display: flex;
    justify-content: end;
    align-items: center;
}

.dropdown-box select {
    width: 100%;
    padding: 0px 15px;
    font-size: 14px;
    height: 38px;
    font-weight: 400;
    border-radius: 8px;
    border: 1px solid var(--bs-border-color);
    color: var(--bs-text-light-color);
    box-shadow: none;
    background-color: var(--bs-white);
    appearance: none;
    padding-right: 40px;
    font-family: var(--bs-font-family-montserrat);
}
.dropdown-arrow {
    position: relative;
}
.dropdown-arrow:before {
    content: '';
    border-bottom: 2px solid var(--bs-text-light-color);
    width: 10px;
    border-right: 2px solid var(--bs-text-light-color);
    height: 10px;
    display: block;
    position: absolute;
    top: 11px;
    right: 25px;
    transform: rotate(45deg);
    pointer-events:none;
}

.input-select.dropdown-arrow:before {
    top: 19px;
}
.text-input.dropdown-arrow:before {
    top: 20px;
    right: 20px;
}
.dropdown-arrow.arrow-p-r:before {
    right: 15px;
}
    .dropdown-select .dropdown-box:not(:last-child) {
        padding-right: 10px;
    }

.apply-link {
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: var(--bs-green-theme);
    text-transform: uppercase;
}
.product-filter {
    margin-inline: 20px;
    margin-block: 10px;
    border-top: 1px solid var(--bs-border-bottom-color);
    padding-top: 10px;
}

/*table style */
.tableDiv table tr th, .tableDiv table tr td {
    padding: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--bs-heading-color);
    /*white-space:nowrap;*/
}
    .tableDiv table tr td button{
        position:relative;
    }
    .tableDiv table tr td, .tableDiv table tr th {
        border-top: 1px solid var(--bs-table-border-color);
    }
.tableDiv table tr th {
    border-bottom: none;
}
.tableDiv table tr th:last-child {
    min-width:110px;
}
table.dataTable.no-footer{
    border-bottom:none;
}

.tableDiv table tr:last-child td {
    border-bottom: 1px solid var(--bs-table-border-color);
}
.table-img {
    padding: 5px;
    background-color: var(--bs-product-bg-color);
    border-radius: 50%;
    height: 48px;
    width: 48px;
    max-width: 100%;
}
.tableDiv table tr td.font-500 {
    font-weight:500;
}
.danger-color {
    color: var(--bs-danger-color);
}

.success-color {
    color: var(--bs-success-color);
}

.warning-color {
    color: var(--bs-warning-color);
}
.tableDiv table tr td.danger-color {
    color: var(--bs-danger-color);
}
.tableDiv table tr td.success-color {
    color: var(--bs-success-color);
}
.tableDiv table tr td.warning-color {
    color: var(--bs-warning-color);
}
.table-price {
    padding: 0;
    margin: 0;
}

    .table-price li {
        list-style-type: none;
    }

        .table-price li i {
            color: var(--bs-heading-color);
        }

        .table-price li del, .table-price li del i {
            color: var(--bs-text-light-color);
        }

.table-qty {
    padding: 0;
    margin: 0;
}

    .table-qty li {
        list-style-type: none;
    }

.table-date {
    padding: 0;
    margin: 0;
}

    .table-date li {
        list-style-type: none;
    }
.tableDiv table tr td button:not(:last-child) {
    margin-right:10px;
}
.tableDiv table tr td:first-child, .tableDiv table tr th:first-child {
    padding:12px 20px;
}
.tableDiv table tr th:nth-child(4) {
    max-width:300px;
}
input[type="checkbox"] {
    height: 15px;
    width: 15px;
    position: relative;
    top: 0;
    display: block;
}
.check-box {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
}

.check-box-span {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--bs-white);
    height: 16px;
    width: 16px;
    border-radius: 2px;
    border: 1px solid var(--bs-text-light-color);
    pointer-events:none;
    transition:all .3s ease;
}
    .check-box-span:before {
        content: '';
        position: relative;
        top: -7px;
        left: 2px;
        height: 6px;
        border: 2px solid #fdfdfd;
        display: inline-block;
        width: 10px;
        border-right: 0;
        border-top: 0;
        transform: rotate(-40deg);
    }
input[type="checkbox"]:checked + .check-box-span {
    background-color: var(--bs-green-theme);
    border-color: var(--bs-green-theme);
}
.tableDiv .dataTables_info {
    padding: 30px 0 0 20px;
    color: var(--bs-heading-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
}
/*table pagintation*/
.dataTables_wrapper .dataTables_paginate .paginate_button {
    min-width: 25px;
    text-align: center;
    padding: 0px !important;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
        border: none;
        background: var(--bs-transparent);
        color: var(--bs-green-theme) !important;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button:hover, .dataTables_wrapper .dataTables_paginate .paginate_button:active {
        color: var(--bs-green-theme) !important;
        background: none;
        border: 1px solid var(--bs-transparent);
        box-shadow: none;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button.previous {
        color: var(--bs-transparent) !important;
        width: 25px;
        margin: 0 !important;
        position: absolute;
        right: 27px;
    }

        .dataTables_wrapper .dataTables_paginate .paginate_button.previous:hover {
            color: var(--bs-transparent) !important;
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button.previous:before {
            content: "";
            height: 8px;
            width: 8px;
            display: inline-block;
            border: 1px solid var(--bs-green-theme);
            transform: rotate(-45deg);
            border-bottom: 0px;
            border-right: 0px;
            position: absolute;
            right: 6px;
            top: 9px;
        }

    .dataTables_wrapper .dataTables_paginate .paginate_button.next {
        color: var(--bs-transparent) !important;
        width: 25px;
        margin: 0 !important;
        position: absolute;
        right: 0px;
    }

        .dataTables_wrapper .dataTables_paginate .paginate_button.next:hover {
            color: var(--bs-transparent) !important;
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button.next:before {
            content: "";
            height: 8px;
            width: 8px;
            display: inline-block;
            border: 1px solid var(--bs-green-theme);
            transform: rotate(45deg);
            border-bottom: 0px;
            border-left: 0px;
            position: absolute;
            right: 10px;
            top: 9px;
        }

.dataTables_wrapper .dataTables_paginate {
    padding: 25px 0px;
    padding-right: 55px;
    position: relative;
    right: 10px;
}

    .dataTables_wrapper .dataTables_paginate span {
        display: inline-block;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button.next.disabled:before, .dataTables_wrapper .dataTables_paginate .paginate_button.previous.disabled:before {
        border-color: var(--bs-text-color);
    }
/*table pagintation end*/

/*tabs style start*/
.products-tabs {
    padding-inline: 20px;
    padding-block: 10px;
}
.button-section {
    padding-inline: 10px;
}
.tabs-number-length p {
    color: var(--bs-text-light-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 20px;
}

.nav-pills .nav-link {
    color: var(--bs-green-theme);
    font-size: 16px;
    font-weight: 500;
    background: var(--bs-btn-light-green-bg);
    border-radius: 30px;
    font-family:var(--bs-font-family-montserrat);
    transition:all .3s ease;
}
.nav-pills .nav-link.active {
    color: var(--bs-heading-color);
    background: var(--bs-btn-light-gray-bg);
}
.nav-pills li:not(:last-child) {
    margin-right: 5px;
}

.nav-pills li {
    margin-bottom: 15px;
}
    .nav-pills .nav-link .tab-numbering {
        color: var(--bs-white);
        background-color: var(--bs-green-theme-bg);
        display: inline-block;
        line-height: 26px;
        border-radius: 50%;
        height: 24px;
        width: 24px;
        font-size: 14px;
        font-weight: 500;
        margin-right: 3px;
        transition:all .3s ease;
    }
    .nav-pills .nav-link.active .tab-numbering {
        background-color: var(--bs-text-light-color);
    }
.add-category {
    display: flex;
    flex-wrap: wrap;
}

.add-category-checkbox {
    margin-right: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.check-box-label {
    padding-left: 10px;
    font-size: 14px;
    font-weight: 400;
    color:var(--bs-heading-color)
}
.custom-link {
    font-size: 14px;
    color: var(--bs-green-theme);
    font-weight: 400;
    line-height: 21px;
}

    .custom-link img {
        margin-right: 10px;
    }

.text-image-upload p {
    color: var(--bs-heading-color);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
}

.uploadImageCard {
    position: relative;
}

.bg-color-product {
    padding-block: 10px;
}

.product-add-file-input {
    position: relative;
}

    .product-add-file-input input[type="file"] {
        width: 100%;
        min-width: 196px;
        height: 230px;
        z-index: 1;
        position: relative;
        color: var(--bs-transparent);
    }

.upload-image {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    pointer-events: none;
    background-color: var(--bs-btn-light-green-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
    .upload-image.addedImage {
        background-color: var(--bs-product-bg-color);
    }
    .upload-image img {
        width: 36px;
    }
    .upload-image.addedImage img {
        width: 90%;
        max-width: 140px;
    }

.product-add-file-input ::-webkit-file-upload-button {
    color: var(--bs-transparent);
    background-color: var(--bs-transparent);
    outline: 0;
    border: 0;
    padding: 0;
    margin: 0;
}
.remove-product {
    position: absolute;
    top: -25px;
    right: -25px;
    cursor: pointer;
    z-index: 3;
}
.input-select {
    position: absolute;
    right: 0;
    top: 0;
    padding-right: 10px;
    padding-top: 9px;
}

    .input-select select {
        width: 100%;
        padding: 0px 15px;
        font-size: 14px;
        height: 38px;
        font-weight: 400;
        border-radius: 8px;
        border: 1px solid var(--bs-border-color);
        color: var(--bs-text-light-color);
        box-shadow: none;
        background-color: var(--bs-white);
        appearance: none;
        padding-right: 40px;
    }
.custom-link.schedule-green, .custom-link.schedule-red {
    text-transform: uppercase;
}
.custom-link.cancel {
    color: var(--bs-danger-color);
}
/*radio button*/

.radio-box [type="radio"]:checked,
.radio-box [type="radio"]:not(:checked) {
    position: absolute;
    top: 1px;
    width: 22px;
    height: 22px;
}
.radio-box {
    position: relative;
}
    .radio-box [type="radio"]:checked + .radio-box-span,
    .radio-box [type="radio"]:not(:checked) + .radio-box-span {
        position: relative;
        padding-left: 28px;
        cursor: pointer;
        line-height: 20px;
        color: var(--bs-text-light-color);
        display: block;
    }

        .radio-box [type="radio"]:checked + .radio-box-span:before,
        .radio-box [type="radio"]:not(:checked) + .radio-box-span:before {
            content: '';
            position: absolute;
            left: -1px;
            top: 0;
            width: 24px;
            height: 24px;
            border: 2px solid var(--bs-green-theme);
            border-radius: 100%;
            background: var(--bs-white);
            pointer-events:none;
        }

        .radio-box [type="radio"]:checked + .radio-box-span:after,
        .radio-box [type="radio"]:not(:checked) + .radio-box-span:after {
            content: '';
            width: 14px;
            height: 14px;
            background-color: var(--bs-green-theme);
            position: absolute;
            top: 4.7px;
            left: 4px;
            border-radius: 100%;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
            pointer-events:none;
        }

        .radio-box [type="radio"]:not(:checked) + .radio-box-span:after {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
        }

        .radio-box [type="radio"]:checked + .radio-box-span:after {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }
.radio-box-label {
    padding-left: 35px;
    font-size: 14px;
    font-weight: 400;
    color: var(--bs-heading-color);
}
.add-category-radio {
    margin-bottom: 20px;
}
.user-img {
    border-radius: 50%;
    height: 48px;
    width: 48px;
    max-width: 100%;
}
/*tabs style end*/

/*payment section start*/

.manage-address {
    margin-top: 20px;
    padding: 30px;
    border: 1px solid var(--bs-border-color);
    border-radius: 19px;
    height: calc(100% - 20px);
}

.manage-address-inner {
    display: flex;
    gap: 20px;
}

.manage-address-right h5 {
    color: var(--bs-heading-color);
    font-size: 24px;
    line-height: 25px;
    font-weight: 400;
    padding-bottom: 10px;
    font-family: var(--bs-font-family-squada-one);
}

    .manage-address-right h5 span {
        float: right;
        color: var(--bs-black);
        font-size: 28px;
        font-weight: 600;
        line-height: 26px;
        font-family: var(--bs-font-family-roboto);
    }

        .manage-address-right h5 span i {
            font-size: 24px;
            font-weight: 400;
            line-height: 24px;
        }
.manage-address-right p {
    color: rgba(51, 51, 51, 0.54);
    font-weight: 400;
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 25px;
}
.button-section button {
    margin-top: 15px;
}
.manage-address-right.order-detail-page p {
    color: var(--bs-heading-color);
    font-weight: 400;
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 20px;
}
    .manage-address-right.order-detail-page p label{
        display:block;
    }
    /*payment section end*/
    /*order details page start*/
    .order-section {
        border: 1px solid var(--bs-border-color);
        border-radius: 19px;
        padding: 30px;
        margin: 30px 0 30px 0px;
    }

    .order-section ul {
        padding: 0;
        margin: 0;
    }

        .order-section ul li {
            list-style-type: none;
        }

.order-outer-sec {
    display: flex;
}

.order-left-sec h5 {
    color: var(--bs-black);
    line-height: 24px;
    font-size: 16px;
    font-weight: 600;
}

.order-left-sec p {
    color: var(--bs-heading-color);
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    margin-bottom: 5px;
}

.order-left-sec ul h6 {
    color: var(--bs-heading-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.order-left-sec ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

    .order-left-sec ul h6 span {
        font-weight: 600;
        font-family: var(--bs-font-family-roboto);
    }

.order-name-text {
    padding: 0 15px;
}

.order-sec-btn {
    padding-top: 8px;
}

.order-section ul li:nth-child(2) {
    padding: 0 8px;
}

.track-order-btn .btn-diagonal {
    background-color: #E8F7EE;
}

.track-order-btn .btn-diagonal-inner {
    color: var(--bs-green-theme);
}

.order-left-sec ul li a {
    color: var(--bs-green-theme);
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
}

    .order-left-sec ul li a img {
        margin-left: 5px;
        margin-bottom: 5px;
    }
/* order-accordion*/
.order-accordion {
    padding-top: 15px;
}

.faq-drawer__content-wrapper {
    font-size: 1.25em;
    line-height: 1.4em;
    max-height: 0px;
    overflow: hidden;
    transition: 0.25s ease-in-out;
}

.faq-drawer__title {
    border-top: var(--bs-border-color) 1px solid;
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    margin-bottom: 0;
    transition: all 0.25s ease-out;
    line-height: 21px;
    padding: 10px 0;
    color: var(--bs-black);
}

    .faq-drawer__title::after {
        border-style: solid;
        border-width: 2px 0px 0 0;
        content: " ";
        display: inline-block;
        height: 12px;
        right: 0;
        position: absolute;
        top: 20px;
        transition: 0.35s ease-in-out;
        width: 12px;
        border-color: var(--bs-heading-color);
    }

    .faq-drawer__title::before {
        border-style: solid;
        border-width: 0px 2px 0 0;
        content: " ";
        display: inline-block;
        height: 12px;
        right: 5px;
        position: absolute;
        top: 15px;
        transition: 0.35s ease-in-out;
        width: 12px;
        border-color: var(--bs-heading-color);
        opacity: 1;
    }

/* OPTIONAL HOVER STATE */

.faq-drawer__trigger:checked + .faq-drawer__title + .faq-drawer__content-wrapper {
    max-height: 350px;
}

.faq-drawer__trigger:checked + .faq-drawer__title::before {
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.order-accordion input[type="checkbox"] {
    display: none;
}

.faq-drawer__content ul li {
    border: 1px solid var(--bs-green-theme);
    padding: 8px !important;
    border-radius: 5px;
    margin-bottom: 20px;
}

.faq-drawer__content ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
}

    .faq-drawer__content ul li {
        max-width: 140px;
        width: 100%;
    }

        .faq-drawer__content ul li:first-child {
            max-width: 120px;
            width: 100%;
        }

.order-upper-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .order-upper-text h6 {
        color: var(--bs-heading-color);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
    }

    .order-upper-text p {
        color: var(--bs-text-light-color);
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
    }

    .order-upper-text span {
        color: var(--bs-heading-color);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
    }

.order-total p {
    color: var(--bs-heading-color);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.Delivered-time p {
    color: var(--bs-heading-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: right;
}

.faq-drawer__title span {
    position: absolute;
    right: 35px;
    top: 12px;
    text-transform: uppercase;
    color: var(--bs-heading-color);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}
.payment-order-pop-up {
    box-shadow: 0px 0px 10px rgb(0 0 0 / 8%);
    padding: 18px 20px;
    min-width: 250px;
    width: 100%;
    display: none;
    position: absolute;
    background-color: var(--bs-white);
    z-index: 999;
    bottom: calc(100% + 15px);
}

li.payment-box-pop-up {
    position: relative;
}

.payment-box-pop-up.active .payment-order-pop-up {
    display: block;
}

.payment-order-inner .payment-name-amt {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.payment-order-inner ul {
    display: block;
}

    .payment-order-inner ul li:nth-child(2) {
        padding: 0;
    }

.payment-name-amt div {
    color: var(--bs-light-color);
    font-size: 12px;
    line-height: 18px;
    padding-bottom: 10px;
    font-weight: 400;
}

.first-li .payment-name-amt div, .last-li .payment-name-amt div, .payment-name-amt .amt-order {
    color: var(--bs-heading-color);
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
}

    .last-li .payment-name-amt div a {
        color: var(--bs-heading-color);
        font-weight: 400;
        font-size: 12px;
        text-transform: uppercase;
        margin-right: 10px;
    }

.last-li {
    border-top: 1px solid var(--bs-border-color);
    padding-top: 10px;
}

.pro-bg-color-light {
    width: 90px;
    background-color: rgb(242 201 76 / 20%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    position: relative;
    height: 90px;
}

.pro-bg-color {
    background-color: var(--bs-warning-color);
    border-radius: 50%;
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .pro-bg-color img {
        max-width: 75px;
    }
.text-right {
    text-align: right;
}
.font-500 {
    font-weight: 500;
}
.cabbage-login .pro-bg-color-light {
    background-color: rgb(111 207 151 / 20%);
}
.cabbage-login .pro-bg-color {
    background-color: #6FCF97;
}
.tomatto-login .pro-bg-color-light {
    background-color: rgb(234 21 2 / 20%);
}
.tomatto-login .pro-bg-color {
    background-color: var(--bs-btn-light-red-text);
}

.totat-items-q {
    color: var(--bs-heading-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.Sub-total {
    color: var(--bs-heading-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
}

.Fresh-item-name {
    color: var(--bs-black);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bs-border-color);
    margin-bottom: 10px;
}

.items-number {
    color: var(--bs-heading-color);
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    padding-bottom: 10px;
}

.pro-img img {
    max-width: 65px;
}

.pro-img {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-n-pice h6 {
    color: var(--bs-heading-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.product-n-pice p {
    color: var(--bs-text-light-color);
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
}

.save-later-delete a {
    color: var(--bs-danger-color);
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
}

.save-later-delete {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .save-later-delete a:last-child {
        color: var(--bs-btn-light-red-text);
    }

.cart-amt h5 {
    color: var(--bs-black);
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
}


    .cart-amt h5 del {
        color: var(--bs-light-color);
        font-weight: 600;
        padding-left: 10px;
    }

.cart-amt {
    text-align: center;
}

.total-amt-save p {
    margin: 0;
    color: var(--bs-heading-color);
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
}

    .total-amt-save p span {
        color: var(--bs-green-theme);
        font-weight: 600;
    }

.total-amt-save .pro-inclusive {
    color: var(--bs-light-color);
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
}

.total-amt-save {
    text-align: right;
}

.cart-border {
    border: 1px solid var(--bs-green-theme);
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px;
    padding: 8px 20px;
    margin-bottom: 10px;
}

.other-page-add-btn .cart-add-btn {
    background-color: #762b2b;
    border-radius: 0;
}

.other-page-add-btn span {
    color: var(--bs-heading-color);
    display: inline-block;
    padding: 5px 13px;
    border: 1px solid var(--bs-border-color);
    border-radius: 9px;
    cursor: pointer;
}

.other-page-add-btn i {
    font-size: 10px;
    font-weight: 500;
}

.other-page-add-btn .cart-number {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    width: 55px;
    border: none;
    box-shadow: none;
    background-color: transparent;
    text-align: center;
    color: var(--bs-black);
    font-family: var(--bs-font-family-roboto);
}

.other-page-add-btn {
    display: flex;
    justify-content: center;
}

    .other-page-add-btn span.plus-box {
        color: var(--bs-white);
        background-color: var(--bs-green-theme-bg);
        border-color: var(--bs-green-theme);
    }

.cart-order-btn .btn-diagonal {
    background-color: var(--bs-white);
}

.cart-order-btn .btn-diagonal-inner {
    color: var(--bs-green-theme);
}

.cart-amt-detail ul {
    margin: 0;
    padding: 0;
    padding-top: 10px;
    border-top: 1px solid var(--bs-border-color);
}

    .cart-amt-detail ul li {
        list-style-type: none;
        color: var(--bs-text-light-color);
        font-size: 12px;
        line-height: 18px;
        font-weight: 400;
        padding-bottom: 10px;
    }

        .cart-amt-detail ul li b {
            float: right;
            font-weight: 500;
            color: var(--bs-heading-color);
        }

        .cart-amt-detail ul li:first-child {
            text-transform: uppercase;
            color: var(--bs-heading-color);
        }

        .cart-amt-detail ul li:last-child {
            text-transform: uppercase;
            color: var(--bs-heading-color);
            border-top: 1px solid var(--bs-border-color);
            padding-top: 10px;
        }

.cart-amt-detail {
    padding-top: 12px;
}
/*order details page end*/

/*custom-popup style start*/
.custom-popup {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 99;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
}
.active-popup .custom-popup {
    display:flex;
}
.custom-popup1 {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 99;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
}

.active-popup1 .custom-popup1 {
    display: flex;
}
    .custom-popup-inner {
        background-color: var(--bs-white);
        max-width: 600px;
        width: 100%;
        border-radius: 10px;
        padding: 30px 20px;
        box-shadow: 0px 0px 4px 0 rgba(53, 115, 249, 0.25);
    }
        .custom-popup-inner .page-heading {
            padding: 0;
        }
.custom-row {
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
}

.custom-colunm-7 {
    width: 70%;
    min-width: 350px;
}
.custom-colunm-3 {
    width: 30%;
}
    .custom-colunm-3 .other-page-add-btn {
        max-width: 140px;
        padding-left: 20px;
    }
.rating-star-table {
    display: flex;
    padding: 0;
    margin: 0;
}

    .rating-star-table li {
        list-style-type: none;
        padding: 0 3px;
    }

        .rating-star-table li i {
            color: var(--bs-rating-star-color);
        }
.page-heading h3 {
    color: var(--bs-heading-color);
    font-size: 32px;
    line-height: 1;
    padding-bottom: 15px;
    font-family: var(--bs-font-family-squada-one);
}
.page-heading .order-image {
    padding-left: 20px;
}

.text-review-detail {
    padding-left: 20px;
}

    .text-review-detail ul {
        display: flex;
        padding: 0;
        margin: 0;
    }

        .text-review-detail ul li {
            color: var(--bs-text-light-color);
            list-style-type: none;
            padding-right: 20px;
            font-size: 16px;
            font-weight: 400;
            font-family:var(--bs-font-family-poppins)
        }

            .text-review-detail ul li i {
                color: var(--bs-rating-star-color);
            }

            .text-review-detail ul li:last-child {
                color: var(--bs-heading-color);
                padding: 0;
            }
.border-bottom-1{
    border-bottom:1px solid var(--bs-border-color);
}
/*custom-popup style end*/

/*review style start*/
.review-section > h6 {
    color: var(--bs-heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height:30px;
}

.review-section > p {
    color: var(--bs-heading-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 25px;
}

ul.review-detail-page > li {
    border: 1px solid var(--bs-border-color);
    border-radius: 19px;
    padding: 25px;
    margin-bottom: 20px;
}

.review-profile-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-left {
    display: flex;
    align-items: center;
}

.review-profile1 {
    padding-left: 25px;
}

.review-left img {
    max-width: 68px;
    border-radius: 50%;
}

.review-profile1 > h5 {
    color: var(--bs-heading-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}
.review-detail-page {
    padding: 0;
    margin: 20px 0;
}

    .review-detail-page li {
        list-style-type: none;
    }

.review-profile1 p {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: var(--bs-light-color);
    margin: 0;
}

    .review-profile1 p i {
        color: var(--bs-rating-star-color);
        margin-right: 10px;
        font-size: 16px;
        padding-top: 10px;
    }

.review-right > p {
    text-align: right;
}
.review-right button:not(:last-child) {
    margin-right: 10px;
}
/*review style end*/
#password-star {
    position: absolute;
    top: 21px;
    left: 19px;
    font-size: 20px;
    font-weight: 700;
}

.input-field.password-star {
    color: var(--bs-transparent);
}
.table-more-btn {
    position: relative;
}
.table-menu-more {
    position: absolute;
    top: 26px;
    right: 0;
    min-width: 150px;
    background-color: var(--bs-white);
    box-shadow: 0px 0px 15px 0px var(--bs-box-shasow-color);
    border-radius: 5px;
     display: none; 
     opacity: 0; 
    transform: translateY(20px);
    animation: fadeInMenu 0.5s ease 1 forwards;
    z-index: 99;
}
.table-menu-more-active .table-menu-more {
    display: block;
}
    .table-menu-more > ul {
        padding: 10px;
        margin: 0;
    }

        .table-menu-more > ul > li {
            list-style-type: none;
            text-align: left;
            padding-block: 5px;
        }
        .table-menu-more > ul > li:first-child a:hover {
            color:var(--bs-green-theme);
        }
            .table-menu-more > ul > li:last-child a:hover {
                color: var(--bs-heading-color);
            }

            .table-menu-more > ul > li img {
                margin-right: 8px;
            }
.responsive-table {
    overflow-x: auto;
}

table.dataTable {
    min-width: 1200px;
}

.responsive-table::-webkit-scrollbar {
    height:10px;
}

.responsive-table::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

.responsive-table::-webkit-scrollbar-thumb {
    background-color: lightgray;
    outline: none;
}
.row-delete-btn {
    position: absolute;
    top: 15px;
    left: calc(100% - -10px);
    width: 25px;
    padding: 0;
    cursor:pointer;
}
.notifications-class {
    position: relative;
}

    .notifications-class:before {
        content: '';
        position: absolute;
        top: -5px;
        left: 14px;
        width: 10px;
        height: 10px;
        display: block;
        background-color: red;
        border-radius: 50%;
    }


/*btn loading style*/

.load1 {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .load1::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        border: 3px solid #fff;
        width: 30px;
        height: 30px;
        border-left: 3px solid var(--bs-transparent);
        border-bottom: 3px solid var(--bs-transparent);
        animation: loading1 1s ease infinite;
        z-index: 10
    }

    .load1::before {
        content: '';
        position: absolute;
        border-radius: 50%;
        border: 3px dashed #fff;
        width: 30px;
        height: 30px;
        border-left: 3px solid var(--bs-transparent);
        border-bottom: 3px solid var(--bs-transparent);
        animation: loading1 2s linear infinite;
        z-index: 5
    }

@keyframes loading1 {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.diagonal-btn.activeLoading .loading1 {
    visibility: visible;
    opacity: 1
}

.diagonal-btn.activeLoading .button-name1 {
    opacity: 0;
    visibility: hidden
}

.diagonal-btn .loading1 {
    opacity: 0;
    visibility: hidden
}

.scroll-tabs-auto {
    overflow-x: auto;
}
.nav.nav-pills {
    flex-wrap: nowrap;
}

.nav-pills .nav-link {
    display: flex;
    align-items: center;
    column-gap: 4px;
    white-space: nowrap;
}