* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif !important;
    font-weight: 400;
    font-style: normal;
}

.container {
    padding-left: 35px;
    padding-right: 35px;
    max-width: 100%;
    margin: 0 auto;
}

h2 {
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}

h3 {
    color: #252628;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 2px;
}

h4 {
    color: #252628;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

.title-component {
    color: #252628;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

p {
    color: #252628;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    font-family: "Poppins", Open Sans, sans-serif;
}

li {
    font-family: "Poppins", Open Sans, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: middle;
}
strong {
    font-weight: 600;
}
td {
    font-family: "Poppins", Open Sans, sans-serif;
}

.padding-40 {
    padding: 40px;
}

.padding-t-40 {
    padding-top: 40px;
}

.padding-b-40 {
    padding-bottom: 40px;
}

.padding-tb-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.padding-t-20 {
    padding-top: 20px;
}

.padding-l-25 {
    padding-left: 25px;
}

.padding-tb-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding-lr-25 {
    padding-left: 25px;
    padding-right: 25px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

input[type="submit"],
input[type="file"],
input[type="button"] {
    cursor: pointer;
}

input,
select,
textarea,
::placeholder {
    color: #252628;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: "Poppins", sans-serif;
}

::placeholder {
    opacity: 0.8;
}

.sidebar-component {
    padding: 35px 0 35px 0;
    background: #EEF4FE;
    box-shadow: -1px 0px 0px 0px rgba(85, 110, 230, 0.25) inset;
    max-width: 275px;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    transition: all 0.3s ease-in-out;
    position: fixed;
    left: 0;
    z-index: 99;
}

    .sidebar-component .logo {
        border-bottom: 1px rgba(79, 104, 224, 0.1) solid;
        padding-bottom: 20px;
        margin-bottom: 30px;
        text-align: center;
    }

        .sidebar-component .logo img {
            transition: all 0.3s ease-in-out;
        }

    .sidebar-component ul {
        list-style-type: none;
    }

        .sidebar-component ul li {
            margin-top: 8px;
            font-family: "Poppins", sans-serif;
        }

            .sidebar-component ul li a {
                text-decoration: none;
                padding: 12px 18px;
                display: block;
                color: #252628;
                font-size: 15px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
                letter-spacing: 0.266px;
                transition: all 0.3s ease-in-out;
            }

            .sidebar-component ul li.active a,
            .sidebar-component ul li a:hover {
                background: #F6FAFF;
                box-shadow: -3px 0px 0px 0px #556EE6 inset;
            }

    .sidebar-component ul {
        padding-left: 0;
    }

        .sidebar-component ul li img {
            margin-right: 6px;
            transition: all 0.3s ease-in-out;
        }

    .sidebar-component.active ul li a {
        font-size: 0;
        color: #fff;
    }

    .sidebar-component.active {
        max-width: 75px;
        padding-left: 8px;
    }

        .sidebar-component.active .logo img {
            max-width: 58px;
        }

        .sidebar-component.active .logo {
            margin-bottom: 10px;
            border: 0;
        }
    .sidebar-component .sub-menu {
        padding-left: 20px;
    }

        .sidebar-component .sub-menu li {
            margin-top: 5px;
        }

            .sidebar-component .sub-menu li a {
                padding: 5px;
                font-size: 13px;
            }

    .sidebar-component .menu-btn {
        padding: 2px 4%;
    }

    .sidebar-component .toggle-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .sidebar-component ul li.active .toggle-menu,
    .sidebar-component ul li:hover .toggle-menu {
        background: #F6FAFF;
        box-shadow: -3px 0px 0px 0px #556EE6 inset;
    }

        .sidebar-component ul li.active .toggle-menu a,
        .sidebar-component ul li:hover .toggle-menu a {
            background: transparent;
            box-shadow: none;
        }

    .sidebar-component .sub-menu {
        height: 0;
        opacity: 0;
        max-height: 0;
        transition: all 0.1s ease-in-out;
        overflow:hidden;
    }

    .sidebar-component .toggle-menu.active + .sub-menu {
        height: auto;
        max-height: none;
        opacity: 1;
    }

    .sidebar-component .toggle-menu .menu-btn {
        cursor: pointer;
    }

    .sidebar-component .toggle-menu.active .menu-btn img {
        transform: rotate(180deg);
    }

    .sidebar-component.active .toggle-menu {
        padding: 0;
/*        padding-left: 18px;
        padding-right: 2px;*/
    }

        .sidebar-component.active .toggle-menu.active + .sub-menu {
            padding-left: 12px;
        }

    .sidebar-component.active ul li .toggle-menu a {
        /*padding-left: 0;*/
        padding-right: 0;
    }

    .sidebar-component ul li.active .sub-menu a {
        background: transparent;
        box-shadow: none;
    }

/*  */

.header-component {
    padding: 20px 0;
    /*   background: #fff; */
/*    margin-bottom: 10px;*/
}
    .header-component .container {
        padding-left: 0;
        padding-right: 0;
    }
    .header-component h2 {
        margin-bottom: 0;
    }

    .header-component .box-header {
        background: transparent;
        padding: 0;
    }

    .header-component a {
        text-decoration: none;
    }

/*  */
.login-component {
    background: #E9EFF8;
    background-size: cover;
    /* height: 100vh; */
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 150px 0;
}
    /* .login-component::after {
    content: '';
    background-color: rgb(0 0 0 / 60%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
} */
    .login-component .login-box-wrapper {
        border-radius: 24px;
        background: #FFF;
        box-shadow: 0px 2px 28px -1px rgba(175, 182, 201, 0.10);
        padding: 80px 78px;
        max-width: 600px;
        position: relative;
        z-index: 1;
    }

    .login-component .logo {
        margin-bottom: 20px;
    }

        .login-component .logo img {
            /* max-width: 180px; */
        }

    .login-component p {
        color: #000;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .login-component .default-btn {
        min-width: 150px;
    }

.login-component-style-2 {
    display: flex;
    gap: 120px;
    text-align: left;
}

    .login-component-style-2 .logo {
        margin-top: 20px;
        margin-bottom: 0;
    }

.login-component.style-3 {
    background: url('../images/login-bg.jpg') 0 0 no-repeat;
    background-size:cover;
    position:relative;
    z-index:1;
    min-height:100vh;
}
.login-component.style-3::after {
    content: '';
    background: linear-gradient(to bottom, rgba(0,0,0,0) 60%,rgba(0,0,0,0) 50%,rgba(0,0,0,1) 100%);
    width:100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.login-component.style-3 .logo img {
    max-width: 128px;
}
.login-component.style-3 h2 {
    font-size:22px;
    color: #111111;
    margin-bottom:10px;
}
.login-component.style-3 .default-btn {
    min-width: 100%;
    background: #111111;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 400;
    padding: 12px;
    transition: all 0.3s ease-in-out;
}
.login-component.style-3 .default-btn:hover {
    opacity: 0.9;
}
.login-component.style-3 .default-btn img {
    margin-right:5px;
}
.login-component.style-3 .login-box-wrapper {
    min-width: 480px;
    width: 100%;
    min-height: 320px;
}

/*  */
.default-btn, .default-form-component input.default-btn {
    border-radius: 4px;
    background: #556EE6;
    color: #F7FAFF !important;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.266px;
    text-decoration: none;
    padding: 8px 30px;
    margin-top: 30px;
    display: inline-block;
    border: 0 !important;
    outline: 0;
    font-family: "Poppins", Open Sans, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent !important;
}

    .default-btn:hover {
        opacity: 0.9;
    }

.white-btn, .default-form-component input.white-btn {
    color: #252628 !important;
    background: transparent;
    border: 1px #252628 solid !important;
}

.default-btn.link-btn {
    color: #556EE6 !important;
    border-radius: 4px;
    border: 1px solid #556EE6 !important;
    background-color: transparent;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.action-btn {
    cursor: pointer;
    min-width: 10px;
    text-align: center;
}

/*  */
.admin-dashboard-component {
    position: relative;
    margin-left: 275px;
    transition: all 0.3s ease-in-out;
    background: #F8F8FF;
}
.full-height-component {
    min-height: 100vh;
}

.admin-dashboard-component .menu-btn {
    display: inline-block;
    cursor: pointer;
}

    .admin-dashboard-component.active {
        margin-left: 75px;
    }

    .admin-dashboard-component .menu-btn {
        transform: rotate(180deg);
    }
    .admin-dashboard-component.active .menu-btn {
        transform: none;
    }

.top-dashboard-component {
    background: #FDFDFD;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px rgba(79, 104, 224, 0.1) solid;
}

    .top-dashboard-component .top-dashboard-wrapper {
        display: flex;
        justify-content: space-between;
    }

    .top-dashboard-component .top-user-component {
        display: flex;
        align-items: center;
        gap: 5px;
        position: relative;
    }

        .top-dashboard-component .top-user-component p {
            font-size: 13px;
        }

        .top-dashboard-component .top-user-component .list-grid-modal {
            left: auto;
            right: 0;
            top: 30px;
        }

            .top-dashboard-component .top-user-component .list-grid-modal li img {
                max-width: 14px;
            }


.top-dashboard-component .top-user-component .user-circle {
    width: 30px;
    height: 30px;
    background-color: #556EE6;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    padding: 0;
}
.traffic-overview-component svg > g > path {
    fill: transparent;
}
/*.traffic-overview-component svg path {
    stroke-width: 0;
}*/
.traffic-overview-component svg > g text {
    /*fill: #fff;*/
}


.k-animation-container.telerik-blazor .k-menu-link-text {
    padding: 2px;
    font-size:12px;
}
.k-animation-container.telerik-blazor .k-menu-popup {
    /*    right: 80px !important;
    position: relative;*/
    border-radius: 10px;
}
.k-animation-container.telerik-blazor .k-link.k-menu-link {
    box-shadow: none !important;
}
.default-box-component .box-header button {
    background: #F8F8FF !important;
    padding: 9px 15px;
    display: inline-block;
    color: #615E83;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
}
.default-box-component .box-header button img {
    width: 12px;
}


.k-link.k-menu-link:active,
.k-link.k-menu-link.k-active,
.k-link.k-menu-link.k-selected {
    background-color: #556EE6 !important;
}
.k-link.k-menu-link:focus {
    background-color: #556EE6 !important;
    color: #fff !important;
}


.traffic-overview-chart {
    height: 200px !important;
}

.box-header.style-2 {
    background: transparent;
    padding: 0;
}
.box-header.style-2 .action-btn img {
    /*filter: brightness(10);*/
}
.graph-chart-component p {
    margin-top: 15px;
}
.recent-inquiry-component {
    padding: 0 15px;
}

/*  */
.traffic-overview-component {
    /*border-radius: 4px;*/
  /*  background: #425BD3;*/
/*    padding: 24px 20px 0;*/
}

    .traffic-overview-component h3,
    .traffic-overview-component h2,
    .traffic-overview-component p,
    .traffic-overview-component li {
        /*color: #F7FAFF;*/
    }

.traffic-recent-box-outer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.traffic-overview-component .chart-wrapper {
    display: flex;
    /* gap: 20px; */
    color:#fff;
}

    .traffic-overview-component .chart-wrapper img {
        vertical-align: bottom;
        width: 100%;
        flex: 1;
    }

.traffic-overview-component ul {
    list-style-type: none;
    padding-left: 0;
    flex: 1;
    margin-bottom: 0;
    padding-right: 10px;
}

    .traffic-overview-component ul li {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }

.traffic-overview-component p {
    margin-top: 15px;
}

.traffic-overview-component .green-bg {
    background-color: #B5E201;
}

.traffic-overview-component .red-bg {
    background-color: #FD6068;
}

.traffic-overview-component .yellow-bg {
    background-color: #FFCB6A;
}

.traffic-overview-component .brown-bg {
    background-color: #E39A4D;
}

.traffic-overview-component .circ-box {
    width: 8px;
    height: 8px;
    border-radius: 50px;
    display: inline-block;
}

.box-header {
 /*   background: #F9FAFD;*/
    padding: 12px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

    .box-header .right-box {
        position: relative;
    }

        .box-header .right-box .list-grid-modal {
            right: 0;
            left: auto;
            top: 10px;
        }

/*  */
.recent-total-box-outer {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

/*  */
.default-table-component {
    background: #F7FAFF;
}

    .default-table-component tr th,
    .default-table-component tr td {
        background-color: #fff;
        box-shadow: none !important;
        color: #615E83;
        font-size: 13px;
        font-style: normal;
        font-weight: 500 !important;
        line-height: 20px;
    }

    .default-table-component tr td {
        font-weight: 400 !important;
        position: relative;
    }

    .default-table-component th:hover,
    .default-table-component th:hover {
        outline: 0 !important;
    }

    .default-table-component tr,
    .default-table-component tr th,
    .default-table-component tr td {
        border: 0 !important;
        border-bottom: 0.5px solid #E7E7E7 !important;
    }
    .default-table-component tr:last-child td {
        border: 0 !important;
    }

        .default-table-component tr td img {
            margin-right: 5px;
            max-width: 20px;
        }

        .default-table-component tr td.multiple-imgs img {
            background: #E6E8FF;
            border-radius: 50px;
            border: 2px #fff solid;
            margin-right: 0;
        }

            .default-table-component tr td.multiple-imgs img:not(:first-child) {
                margin-left: -20px;
            }

    .default-table-component .status {
        border-radius: 4px;
        font-size: 12px;
        font-style: normal;
        line-height: 1.2;
        padding: 6px 8px;
    }

    .default-table-component .not-available {
        background: #FFF2ED;
        color: #FF5200;
    }

    .default-table-component .available {
        background: #F0FDF4;
        color: #22C55E;
    }

.default-btn-small {
    border-radius: 5px;
    padding: 2px;
    text-align: center;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    background: #EEF4FE;
    margin-right: 2px;
    cursor: pointer;
}

.default-btn-small-disabled {
    border-radius: 5px;
    padding: 2px;
    text-align: center;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    background: #d3d3d3;
    margin-right: 2px;
    cursor: not-allowed;
}

.default-btn-small img {
    margin-right: 0 !important;
    max-width: 16px;
    transition: all 0.3s ease-in-out;
}


.default-btn-small-disabled img {
    margin-right: 0 !important;
    max-width: 16px;
    transition: all 0.3s ease-in-out;
}
.list-grid-modal li.disabled {
    cursor: not-allowed;
}

.edit-btn-component {
    background-color: #DFF9ED;
}

.delete-btn-component {
    background: #FEE5E5;
}

.delete-btn-component-disabled {
    background: #d3d3d3;
}
.delete-btn-component-disabled:hover {
    background: #d3d3d3;
}

.default-btn-small:hover {
    background: #176eff;
}
.default-btn-small-disabled:hover {
    background: #d3d3d3;
}

.delete-btn-component:hover {
    background: #F94F4F;
}

.edit-btn-component:hover {
    background: #2CD888;
}

.default-btn-small:hover img {
    filter: brightness(0) invert(1);
}

.default-box-component {
    background: #FFF;
    height: 100%;
    margin-bottom: 18px;
    border-radius: 4px;
    border: 1px solid #EAEAEA;
}
.search-default-btn {
    border-radius: 50px;
    background: #EEF4FE;
    width: 50px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #252628 !important;
    font-size: 14px;
    gap: 4px;
    margin-left: auto;
    border-radius: 4px;
    background: #556EE6;
}
.search-default-btn img {
    filter: brightness(5);
}

.default-box-component .dt-info {
    color: #95989D !important;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    padding-left: 10px;
}

    .default-box-component .dt-layout-row button.dt-paging-button.current {
        border-radius: 16px;
        background: #556EE6;
        border: 0;
        color: #fff !important;
        text-align: center;
        font-size: 11px;
        font-style: normal;
        font-weight: 700;
        line-height: 16.75px;
    }

        .default-box-component .dt-layout-row button.dt-paging-button.current:hover {
            border: 0;
            background: rgb(70 95 215 / 30%);
        }

    .default-box-component .head-text {
        color: #252628;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }

div.dt-container .dt-paging .dt-paging-button.disabled,
div.dt-container .dt-paging .dt-paging-button.disabled:hover,
div.dt-container .dt-paging .dt-paging-button.disabled:active {
    color: #252628 !important;
}
.btn-style-2 {
    background: #F8F8FF;
    padding: 10px 15px;
    display: inline-block;
    color: #615E83;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    border-radius: 25px;
    transition:all 0.3s ease-in-out;
}
.btn-style-2:hover {
    background-color: #556EE6;
    color: #fff;
}
/*  */
.copyright-component {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 20px;
}

    .copyright-component p {
        color: #000;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }

.green-clr {
    color: #0DA759 !important;
}

.red-clr {
    color: #F94F4F !important;
}

.text-danger {
    color: #f31700;
}

.blue-clr {
    color: #556EE6;
}

.blue-circ {
    width: 10px;
    height: 10px;
    background: #556EE6;
    border-radius: 50px;
}

.gray-circ {
    width: 10px;
    height: 10px;
    background: #E1E6FF;
    border-radius: 50px;
}

.customer-graph-component {
    padding: 20px;
}

    .customer-graph-component img {
        width: 100%;
    }

.list-box-component {
    display: flex;
    justify-content: space-between;
    color: #252628;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 5px 15px;
}

    .list-box-component .list-item {
        margin-top: 10px;
        display: flex;
        gap: 8px;
        align-items: center;
    }

        .list-box-component .list-item img {
            width: auto;
        }

.full-row-component {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.recently-activity-component {
    padding: 10px 10px;
}

    .recently-activity-component .list-box-component {
        padding: 12px;
    }

        .recently-activity-component .list-box-component:not(:last-child) {
            border-bottom: 0.5px #E7E7E7 solid;
        }

.add-btn-componet {
    border-radius: 4px;
    background: #556EE6;
    color: #F7FAFF;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.266px;
    padding: 8px 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    justify-content: center;
}

.default-form-component .input-box-outer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 40px;
    margin-bottom: 20px;
}

.default-form-component .input-box-outer-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr) auto;
    gap: 14px 10px;
    padding: 20px;
    background: #F7FAFF;
}

.default-form-component .input-box-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
}

    .default-form-component .input-box-row .input-box {
        flex-basis: calc(50% - 7px);
    }

.default-form-component label {
    display: block;
    margin-bottom: 8px;
    color: #252628;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.default-form-component input,
.default-form-component select,
.default-form-component textarea {
    width: 100%;
    padding: 8px 15px;
    border-radius: 4px;
    color: #252628;
    /* border: 1px solid #8C8C8C;*/
    border: 1px solid rgba(0, 8, 49, 0.15);
    background: rgba(253, 253, 253, 0.91);
    outline: 0;
    line-height: 1.5;
}
.default-form-component input:focus,
.default-form-component select:focus,
.default-form-component textarea:focus {
    outline: 0;
    box-shadow: none;
}
.default-form-component select {
    background: rgba(253, 253, 253, 0.91) url(../images/arrowDown.svg) 98% center no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-size: 14px;
}

.default-form-component form {
    /*margin-top: 30px;*/
}
.default-form-component .search-outer-right {
    margin-left: auto;
}
.default-form-component .search-outer-right input[type="reset"] {
    border: 0;
    background: none;
    color: #F94F4F;
    font-weight: 400;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    text-align: right;
    margin-top: 8px;
    width: auto;
    border-bottom: 1px #F94F4F solid;
    border-radius: 0;
    line-height: 1
}
.default-form-component .default-btn {
    margin-top: 40px;
    display: inline-block;
    width: auto;
    padding: 10px 45px;
}

.default-form-component input[type="radio"],
.default-form-component input[type="checkbox"] {
    width: auto;
    margin-right: 4px;
}

.default-form-component .checkbox-box {
    margin-top: 30px;
}

.default-form-component .title-component {
    margin-bottom: 15px;
}

.default-form-component .btn-box {
    display: flex;
    justify-content: space-between;
}

.header-component .box-header .tab-component {
    display: flex;
    gap: 6px;
}

.header-component .box-header .right-box {
    display: flex;
    gap: 12px;
}

.default-tab-component .tab-content {
    display: none;
}

    .default-tab-component .tab-content.visible {
        display: block;
    }

.tab-component .tab-btn {
    border-radius: 4px;
    border: 1px solid #252628;
    text-decoration: none;
    color: #252628;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.266px;
    padding: 5px 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: all 0.3s ease-in-out;
    min-width: 60px;
    justify-content: center;
}

    .tab-component .tab-btn img {
        max-width: 16px;
        transition: all 0.3s ease-in-out;
    }

    .tab-component .tab-btn:hover,
    .tab-component .tab-btn.active {
        border-radius: 4px;
        background: #252628;
        color: #F7FAFF;
    }

        .tab-component .tab-btn:hover img,
        .tab-component .tab-btn.active img {
            filter: invert(1);
        }

.tab-component select {
    border-radius: 5px;
    border: 1px solid #E5E5E5;
    padding: 6px 22px 6px 12px;
    outline: 0;
    color: #556EE6;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: #fff url(../images/arrow-down-blue-icon.svg) 95% center no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-size: 14px;
}
.tab-component select option {
    color: #000;
}
.default-box-component.product-marketplace-component .tab-component {
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
}

.product-component {
    position: relative;
}

.product-component-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-component h4 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-component .product-img {
    border-radius: 4px;
    background: #F7FAFF;
    text-align: center;
    margin-bottom: 20px;
    /*min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;*/
}

.product-component p {
    margin-bottom: 15px;
    overflow-wrap: anywhere;
}

.product-component .price {
    color: #3954D3;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 29px;
    margin-top: 30px;
}

.product-component .product-img img {
    width: 100%;
    border-radius: 5px;
}

.product-component:hover .edit-component {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}


.product-component .stock-price-component {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.product-component .status-box {
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.product-component .in-stock .status-box {
    color: #24A700;
}

.product-component .out-stock .status-box {
    color: #D42920;
}

.product-component .price-box {
    color: #3954D3;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
}

.product-component .input-box label {
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 4px;
}

.product-component .default-form-component {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.product-component .default-form-component input,
.product-component .default-form-component select,
.product-component .default-form-component {
    width: 100%;
    padding: 6px 15px;
    border-radius: 4px;
    border: 1px solid #8C8C8C;
    color: #252628;
    font-size: 12px;
}

.product-component .default-form-component .input-box.flex-box {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-component .default-form-component .input-box .add-btn-component {
    color: #F7FAFF;
}

.product-component .default-form-component .add-btn-component {
    font-size: 12px;
    width: 100%;
    padding-block: 10px;
}

.save-btn-outer {
    text-align:right;
}
.color-box-outer {
    display:flex;
    max-width: 110px;
    flex-wrap: wrap;
}
.color-box-outer .color-box {
    width:20px;
    height:20px;
}
.product-color-component .default-btn,
.product-size-component .default-btn {
    width: min-content;
    margin-top: 0 !important;
}
.product-size-component {
    max-width: 400px;
}
.hide-blur {
    opacity: 0.6;
    filter: blur(2px);
}
.default-form-component.product-varients-component .input-box-outer {
    grid-template-columns: 1fr 2fr;
}
.product-size-component .product-size-inner {
    display: flex;
}
.product-size-component .product-size-inner input {
    border-radius:0;
}
.product-selected-box {
    display: flex;
    flex-wrap: wrap;
    max-width: 200px;
    gap: 5px;
}
.product-selected-box a div {
    border: 1px solid rgba(0, 8, 49, 0.15);
    padding: 5px;
    min-width: 30px;
    min-height: 30px;
    font-size: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #252628;
}
.product-color-component .product-selected-box a div {
    border-radius: 50px;
}
.product-list-table {
    margin-top:70px;
}
.product-list-table th {
    padding: 10px;
    font-size: 13px;
    background: #F7FAFF;
    color: #566687;
    border-top: 1px solid #DCE9FF !important;
    border-bottom: 2px solid #DCE9FF !important;
}
.product-list-table td {
    border-top: 1px rgb(231 231 231 / 50%) solid !important;
    border-bottom: 0 !important;
    padding: 10px;
    font-size: 13px;
}
.product-list-table th:last-child,
.product-list-table td:last-child {
    text-align:center;
}
.color-picker-component a {
    padding: 4px;
    display: inline-flex;
    border: 1px #E8EBEC solid;
    margin: 2px;
    border-radius: 0;
}
.color-picker-component .color-box {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    position: relative;
}
.color-picker-component .checked {
    display: flex;
    margin: auto;
    color: #fff;
    mix-blend-mode: difference;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
}

.quantity-box-component {
    color: #131313;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-box-component .quantity {
    border: 1px solid #2874F0;
    border-radius: 5px;
    width: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding-top: 3px;
    padding-bottom: 2px;
}

.quantity-box-component .number {
    position: relative;
    width: 16px;
    text-align: center;
}

.quantity-box-component .number::before {
    left: -10px;
}

.quantity-box-component .number::before,
.quantity-box-component .number::after {
    content: '';
    width: 1px;
    height: 80%;
    position: absolute;
    top: 0;
    background: rgb(115 119 108 / 40%);
}

.quantity-box-component .number::after {
    right: -15px;
}

.quantity-box-component .plus,
.quantity-box-component .minus {
    padding: 0 10px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
}

.add-btn-component {
    border-radius: 4px;
    background: #fff !important;
    color: #252628;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.266px;
    padding: 10px 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    outline: 0;
    cursor: pointer;
    border: 1px solid #aaa;
    transition: all 0.3s ease-in-out;
}

.add-btn-component img {
    filter: brightness(0.4);
    vertical-align: top;
}

.add-btn-component {
    background: transparent;
}
.add-btn-component:hover {
    background: #556EE6 !important;
    color: #F7FAFF;
    border: 1px solid #556EE6;
}

.add-btn-component:hover img {
    filter: brightness(1);
}

.product-component .out-stock .status-box {
    color: #D42920;
}


.edit-component {
    position: absolute;
    right: 10px;
    top: 10px;
    opacity: 0;
}

.add-items-component .left-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-bottom: 1px rgba(0, 0, 0, 0.08) solid;
    padding-bottom: 30px;
}

.uploading-componet {
    border-radius: 8px;
    border: 2px dashed #A3C4FB;
    background: #F7FAFF;
    padding: 70px 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 15px;
}

    .uploading-componet p {
        margin-top: 17px;
    }

    .uploading-componet input {
        display: none;
    }

.default-form-component .uploading-componet .default-btn {
    margin-top: 30px;
}

/*  */
    .tab-component-style-2 {
    border-bottom: 1px #E7E7E7 solid;
    padding-bottom: 15px;
    margin-bottom: 20px;
    display: flex;
    gap: 25px;
}

    .tab-component-style-2 .tab-title {
        color: #252628;
        text-align: center;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.266px;
        text-decoration: none;
        position: relative;
        cursor: pointer;
    }

        .tab-component-style-2 .tab-title.active {
            color: #556EE6;
            font-weight: 500;
            cursor: default;
        }

            .tab-component-style-2 .tab-title.active::after {
                content: '';
                position: absolute;
                bottom: -16px;
                left: 0;
                width: 100%;
                height: 1px;
                background-color: #556EE6;
            }

.list-block-component {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
}

    .list-block-component ul {
        list-style-type: none;
    }

    .list-block-component .list-block {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .list-block-component .default-btn-small {
        margin-right: 8px;
    }

/*  */
.project-view-col-component {
    display: flex;
    margin-bottom: 45px;
}

    .project-view-col-component .col-box {
        padding: 1px;
        position: relative;
        flex-basis: 50%;
        overflow:hidden;
    }

    .project-view-col-component .col-box a {
        display: block;
        height: 100%;
        width: 100%;
    }

    .project-view-col-component .col-box a:hover img {
        transform:scale(1.05);
    }

    .project-view-col-component .content-block {
        padding: 15px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1;
    }

    .project-view-col-component .col-box::after {
         content: '';
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index:0;
        pointer-events: none;
    }

    .project-view-col-component .col-box-outer {
        display: flex;
        flex-wrap: wrap;
    }

        .project-view-col-component .col-box-outer .col-box {
            flex-basis: 50%;
        }

        .project-view-col-component .col-box-outer .col-box img {
            max-height: 200px;
        }

        .project-view-col-component .col-box img {
            max-height: 405px;
        }

    .project-view-col-component img {
        width: 100%;
        height: 100%;
        vertical-align: bottom;
        object-fit: cover;
        transition: all 0.3s ease-in-out;
    }

    .project-view-col-component h4 {
        color: #F7FAFF;
        font-size: 15px;
        font-style: normal;
        font-weight: 600;
        line-height: 23px;
    }

.view-sync-component {
    display: flex;
    gap: 20px;
    border-bottom: 1px #E7E7E7 solid;
    padding-bottom: 12px;
    margin-bottom: 30px;
}

    .view-sync-component .text-icon-outer {
        position: relative;
    }

    .view-sync-component .text-icon {
        color: #252628;
        text-align: center;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        position: relative;
        cursor: pointer;
    }

        .view-sync-component .text-icon:hover {
            color: #556EE6;
        }

        .view-sync-component .text-icon img {
            margin-right: 5px;
        }

    .view-sync-component .view-box img {
        max-width: 12px;
    }

    .view-sync-component .text-icon:not(:last-child) {
        border-right: 1px rgb(37 38 40 / 30%) solid;
        padding-right: 20px;
    }
    .view-sync-component .text-icon-outer:last-child div {
        border: 0;
    }

.document-box-component-outer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    border-top: 1px #b5b5b5 solid;
    margin-top: 20px;
    padding-top: 20px;
}
.document-box-component-outer.style-2 {
    grid-template-columns: 1fr;
}

.document-box-component {
    border-radius: 4px;
    background: #F4F9FF;
    padding: 10px;
    font-family: "Poppins", Open Sans, sans-serif;
    position:relative;
}
.document-box-component .list-grid-modal.active {
    right: 0;
    max-width: 141px;
}
.document-box-component .action-btn-outer .action-btn {
    min-width: 12px;
    display: inline-block;
}

.document-box-component .file-name {
    color: #252628;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.document-box-component .doc-detail {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.document-box-component .bottom-text {
    color: #252628;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
    display: flex;
    justify-content: space-between;
}

        .document-box-component .bottom-text img {
            margin-right: 3px;
        }

    .document-box-component .img-box {
        margin: 8px 0 18px;
    }

        .document-box-component .img-box img {
            width: 100%;
        }

.document-box-component i,
.document-box-component svg {
    font-size: 16px;
    color: #e15f78;
    margin-right: 2px;
}
.document-box-component .list-grid-modal li img {
    filter: grayscale(1);
}


.list-grid-modal {
    display: none;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.07);
    padding: 12px;
    position: absolute;
    right: 30px;
    z-index: 9;
    margin-top: 5px;
    min-width: 130px;
    max-width: 190px;
    width: 100%;
}
.list-grid-modal i {
    margin-right: 2px;
    max-width: 18px;
    min-width: 18px;
    font-size: 16px;
    vertical-align: middle;
}
.circle {
    width: 50px;
    height: 50px;
    background-color: forestgreen;
    border-radius: 30px;
    padding-top: 16px;
    padding-left: 14px;
}
.circleImg {
    width: 50px;
    height: 50px;  
    border-radius: 30px;   
}

    .list-grid-modal.active {
        display: block;
    }

    .list-grid-modal li {
        list-style-type: none;
        text-align: left;
        color: #252628;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }
    .list-grid-modal li:hover {
        color: #0525bd;
    }
        .list-grid-modal li a {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .list-grid-modal li:not(:first-child) {
            margin-top: 7px;
        }

        .list-grid-modal li img {
            margin-right: 4px !important;
            max-width: 16px;
        }

.share-form-component-outer {
    position: fixed;
    background: rgb(0 0 0 / 70%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    align-items: center;
    justify-content: center;
    display: none;
}

    .share-form-component-outer.active {
        display: flex;
    }

.share-form-component {
    border: 1px solid #EAEAEA;
    background: #FFF;
    padding: 50px 42px;
    max-width: 500px;
    width: 100%;
}

    .share-form-component.default-form-component form {
        margin-top: 20px;
    }

    .share-form-component .input-box:not(:first-child) {
        margin-top: 25px;
    }

.header-col-component {
    display: flex;
    justify-content: space-between;
}

    .header-col-component .round {
        background-color: #ECEFFE;
        border-radius: 50px;
        color: #556EE6;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .header-col-component .right-block {
        display: flex;
        gap: 15px;
    }

.footer-component {
    padding: 76px 0;
    text-align: center;
}

    .footer-component .footer-wrapper {
        max-width: 723px;
        margin: 0 auto;
        width: 100%;
    }

    .footer-component p {
        color: rgb(37 38 40 / 70%);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
    }

    .footer-component .login-list {
        display: flex;
        justify-content: center;
        gap: 20px;
        border-top: 1px rgb(37 38 40 / 20%) solid;
        padding-top: 15px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

        .footer-component .login-list li {
            color: #556EE6;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 1;
            list-style-type: none;
            border-right: 2px #556EE6 solid;
            padding-right: 20px;
        }

            .footer-component .login-list li:not(:first-child) {
                border-right: 0;
            }

            .footer-component .login-list li a {
                text-decoration: none;
            }

.footer-component-style-2 {
    position: absolute;
    bottom:30px;
    text-align:center;
    left:0;
    right:0;
}
.footer-component-style-2 .copyright p {
    color: #FAFAFA;
    font-size:14px;
}

/*  */
.user-info-component {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 25px;
    font-family: "Poppins", Open Sans, sans-serif;
}

    .user-info-component .user-info-box {
        display: flex;
        gap: 15px;
    }

    .user-info-component .title {
        color: #252628;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .user-info-component .detail {
        color: rgb(37 38 40 / 80%);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-top: 4px;
    }

.order-details-component {
    margin-top: 30px;
    font-family: "Poppins", Open Sans, sans-serif;
}

    .order-details-component .order-details-list {
        display: flex;
        gap: 24px;
        padding-bottom: 20px;
        border-bottom: 1px rgb(231 231 231 / 50%) solid;
    }

        .order-details-component .order-details-list:not(:first-child) {
            padding-top: 20px;
        }

    .order-details-component .img-box {
        border-radius: 2px;
        background: #F7FAFF;
        padding: 20px;
    }

        .order-details-component .img-box img {
            max-width: 110px;
        }

    .order-details-component .list-box li {
        list-style-type: none;
        color: #252628;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        margin-top: 2px;
    }

        .order-details-component .list-box li:first-child {
            color: rgb(37 38 40 / 80%);
        }

    .order-details-component .title {
        color: #252628;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 26px;
        margin-bottom: 10px;
    }

.spinner-wrapper {
    position: relative;
    margin-top:20px;
    background-color: transparent;
    z-index: 999999;
}

.sk-folding-cube {
    position: absolute;
    top: 48%;
    left: 48%;
    width: 15px;
    height: 15px;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

    .sk-folding-cube .sk-cube {
        float: left;
        width: 50%;
        height: 50%;
        position: relative;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

        .sk-folding-cube .sk-cube:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #072d6d;
            -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
            animation: sk-foldCubeAngle 2.4s infinite linear both;
            -webkit-transform-origin: 100% 100%;
            -ms-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
        }

    .sk-folding-cube .sk-cube2 {
        -webkit-transform: scale(1.1) rotateZ(90deg);
        transform: scale(1.1) rotateZ(90deg);
    }

    .sk-folding-cube .sk-cube3 {
        -webkit-transform: scale(1.1) rotateZ(180deg);
        transform: scale(1.1) rotateZ(180deg);
    }

    .sk-folding-cube .sk-cube4 {
        -webkit-transform: scale(1.1) rotateZ(270deg);
        transform: scale(1.1) rotateZ(270deg);
    }

    .sk-folding-cube .sk-cube2:before {
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
    }

    .sk-folding-cube .sk-cube3:before {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .sk-folding-cube .sk-cube4:before {
        -webkit-animation-delay: 0.9s;
        animation-delay: 0.9s;
    }

@-webkit-keyframes sk-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes sk-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

.default-table-component tr th,
.default-table-component tr td {
    text-align: left;
    padding: 10px;
    padding-left:24px;
}

.default-table-component tr td {
    padding: 8px 10px;
    padding-left: 24px;
}
.documents-marketing-resources tr th,
.documents-marketing-resources tr td {
    width: 20%;
}
.documents-marketing-resources tr th:first-child,
.documents-marketing-resources tr td:first-child {
    width: 40%;
}
.documents-marketing-resources tr th:last-child,
.documents-marketing-resources tr td:last-child {
    width: 10%;
}
.default-table-component thead,
.default-table-component thead th {
    /*    background: #F7FAFF;*/
    font-weight: 600 !important;
    border-top: 0.5px solid #E7E7E7 !important;
}

.documents-marketing-resources.default-table-component.list-view-table tbody tr:first-child td {
    border-top: 0 !important;
}

.demo-notification {
    position: absolute;
}

.demo-notification .k-notification {
    width: 600px;
    min-height: 60px;
}
.notification-parent {
    position: relative;
    height: 250px;
}

.k-badge {
    margin-left: 5px;
}

.k-notification-container {
    margin: 6px 0;
}
.disable tr,
.disable td {
    background: #ccc !important;
}


.list-grid-modal .k-color-success.k-icon.k-svg-icon.k-svg-i-check-circle svg {
    fill: rgb(52 217 140);
}

.default-box-component .action-btn.more-right-btn {
    display: inline-block;
/*    transform: rotate(90deg);*/
}

.builder-tooltip {
    padding: 5px;
    max-width: 210px;
}
.builder-tooltip li {
    font-size: 12px;
    line-height: 1.4;
    list-style-type: none;
}

.default-box-component .k-grid-aria-root,
.default-box-component .k-grid .k-grid-container,
.default-box-component .k-grid-content {
    position: static;
}

.default-box-component .k-grid tr td .k-badge {
    font-size: 9px;
    padding: 2px 5px;
    border-radius: 2px;
}
.default-box-component .k-grid tr td .k-badge-edge.k-top-end {
    transform: translate(28%, -59%);
}
.default-box-component .k-grid tr td .k-button-solid-secondary {
    background-color: #000000;
    border-radius: 50px;
}
.default-box-component .k-grid tr th .k-column-title {
    font-weight: 500;
}
.default-box-component .k-grid tr th,
.default-box-component .k-grid tr td,
.default-box-component .k-grid tr td p {
    border: 0 !important;
    font-size: 12px;
}
.default-box-component .k-grid tr th,
.default-box-component .k-grid tr td {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 10px !important;
    padding-right: 10px !important;
}
.default-box-component .k-grid .k-grid-header {
    padding-right: 0;
    border-bottom-width: 0;
}
.default-box-component .k-grid .k-grid-header .k-table-th {
    padding: 10px;
    font-size: 13px;
    background: #F7FAFF;
    color: #566687;
    border-top: 1px solid #DCE9FF !important;
    border-bottom: 2px solid #DCE9FF !important;
}
.default-box-component .k-grid {
    border: 0;
    position: static;
}
.default-box-component .k-grid-pager {
    border: 0;
    padding-left: 20px;
    padding-right: 30px;
}
.default-box-component .k-grid td.k-table-td:last-child {
    text-align: center;
}
.default-box-component .k-table-row.k-master-row .status {
    padding: 2px 8px;
    text-align: center;
    display: inline-block;
    font-size: 12px;
    min-width: 70px;
    border-radius: 4px;
}
.default-box-component tr td .sync-status-pending {
    background: rgb(255 83 73 / 10%);
    color: #fa8444;
    white-space: nowrap;
}

.default-box-component tr td .sync-status {
    background: #2CD8885C;
    color: #066322;
}
.default-box-component tr td .blocked-status {
    background: #F94F4F33;
    color: #F94F4F;
}
.default-box-component tr td .not-sync-status {
    background: #EEF4FE;
    color: #3797FF;
}

.default-box-component .k-grid .k-table-row td {
    border-top: 1px rgb(231 231 231 / 50%) solid !important;
    border-bottom: 0 !important;
}
.default-box-component .k-grid .k-table-row {
    background: #fff !important;
}
/*.default-box-component .k-grid .k-table-row.k-table-alt-row {
    background-color: color-mix(in srgb, #97beff 5%, transparent);
}*/
.default-box-component .k-grid .k-table-tbody > .k-table-row:not(.k-detail-row):hover, .k-grid .k-table-tbody > .k-table-row:not(.k-detail-row).k-hover {
    background-color: rgb(243 243 243 / 50%);
}
.default-box-component .default-box-component .k-table-td {
    border-bottom: 1px rgb(231 231 231 / 60%) solid !important;
    background: #FBFBFB;
}

.default-box-component .default-box-component .k-grid tr td .k-button {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
}
.default-box-component .default-box-component .k-grid tr td .k-button svg {
    height: 12px;
}
.default-box-component .k-grid .k-detail-row .k-detail-cell {
    padding-left: 3.8% !important;
    padding-top: 0;
}
.default-box-component table.k-grid-header-table.k-table {
/*    margin-bottom: 5px !important;*/
}
.default-box-component .default-box-component table.k-grid-header-table.k-table {
    margin-bottom: 0 !important;
}


/***/
.default-box-component .k-button-overlay,
.default-box-component .k-button::before {
    background: inherit;
}

.default-box-component .k-button-flat-primary {
    color: inherit;
}

.default-box-component .k-button-flat::after {
    box-shadow: none !important;
}

.default-box-component .k-grid tr td .k-button.blocked-bg {
    background: #FEE5E5;
    border-color: #FF3300;
}

.default-box-component .k-grid tr td .k-button.blocked-bg svg {
    fill: #FF3300;
}

.default-box-component .k-grid tr td .k-button.sync-bg {
    background: rgb(223 249 237 / 70%);
    border-color: #2CD888;
}

.default-box-component .k-grid tr td .k-button.sync-bg svg {
    fill: #2CD888;
}

.default-box-component .k-grid tr td .k-button.not-sync-bg {
    background: #EEF4FE;
    border-color: #3797FF;
}

.default-box-component .k-grid tr td .k-button.not-sync-bg svg {
    fill: #3797FF;
}

.default-box-component.default-form-component.add-builder-component h3 {
    margin-bottom: 20px;
}

.k-text-center {
    text-align: center;
}

.validation-message {
    margin-top: 5px;
    font-size: 12px;
}

.default-box-component .default-box-component {
    border: 0;
    border-radius: 4px;
    background: #FBFBFB;
}
.default-box-component .k-table-tbody .k-table-row:hover,
.default-box-component .k-table-list .k-table-row:hover,
.default-box-component .k-table-tbody .k-table-row.k-hover,
.default-box-component .k-table-list .k-table-row.k-hover {
    background-color: transparent;
}
.default-box-component .k-grid-content {
    overflow: auto;
}
.default-box-component .default-box-component .k-grid .k-grid-header .k-table-th {
    background: #FFF;
    font-size: 12px;
}
.default-box-component .default-box-component .k-table-td:focus {
    border: 0;
    outline: 0;
    box-shadow: none;
}
.default-box-component .k-grid .k-table-row.k-expanded {
    background: #F3F3F3 !important;
}

.default-box-component .default-box-component th:last-child .k-link {
    justify-content: center;
}

.default-box-component .k-pager:focus {
    box-shadow: none !important;
}
.builder-detail-page {
    background: #fff;
    padding: 30px;
}
.builder-detail-page .col-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    font-size: 13px;
}
.builder-detail-page .card:not(:first-child) {
    margin-top: 30px;
}
.builder-detail-page .card-header {
    margin-bottom: 20px;
    padding: 10px 0;
    background: #F7FAFF;
    color: #3d3d3d;
    font-weight: 600;
    border-radius: 5px;
    font-size: 14px;
}
.builder-detail-page .col-box strong {
    width: 130px;
    display: inline-block;
    color: #3d3d3d;
}
.builder-detail-page h3 {
    margin-top: 30px;
    font-size:18px;
    font-weight:600;
    text-decoration: underline;
}
.builder-detail-page .flex-box {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:10px
}
.builder-detail-page .card-body {
    font-size: 14px;
    padding-left: 5px;
}
.builder-detail-page .tick {
 /*   width: 6px;
    height: 12px;
    border: solid green;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(40deg);
    margin-top: 2px;
    margin-left: -12px;*/
    left: 0;
    position: absolute;
}
.builder-detail-page .tick-outer {
    position: relative;
    padding-left: 18px;
    font-size: 13px;
}
.builder-detail-page .tick-outer i {
    display: none;
}
.builder-detail-page .tick-outer .tick i {
    display: inline-block;
}
.builder-detail-page .tick i {
    color: #00B661;
}
.builder-detail-page .sub-user-card {
    margin-top: 30px;
}
.builder-detail-page .sub-user-card .card:first-of-type {
    margin-top: 0;
}
.builder-detail-page .sub-user-card h2 {
    font-size: 20px;
    margin-bottom:20px;
    font-weight:600;
}
.default-box-component .title {
    color: #556EE6;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.default-box-component h3 {
    color: #1E1B39;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.admin-user-component {
    padding: 20px;
}
.admin-user-component .add-btn-componet {
    margin-bottom: 15px;
}
/*.admin-user-component .list-grid-modal {
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    position: fixed;
    max-width: 100%;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 60%);
    border-radius: 0;
}
.admin-user-component .list-grid-modal.active {
    display: flex;
}*/
.admin-user-component th:last-child .k-cell-inner {
    justify-content: center;
}
.admin-user-component h3 {
    color: #252628;
    margin-bottom: 10px;
}

.admin-add-user-modal {
    max-width: 700px;
    width: 100%;
}
.add-user-form-wapper h3 {
    margin-bottom: 10px;
}
.add-user-form-wapper .form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.add-user-form-wapper .form-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.add-user-form-wapper .admin-user-modal {
    margin-bottom: 20px;
}
.add-user-form-wapper .action-btn {
    border: 0;
}
.add-user-form-wapper label {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
    font-weight: 400;
    text-transform: capitalize;
    color: #545973;
}
.add-user-form-wapper .form-box input {
    color: #495057;
    background-color: #fff;
    border: 1px solid #90979f;
    border-radius: 3px;
    line-height: 1;
    padding: 4px 8px;
    font-size: 12px;
    width: 100%;
    outline: 0;
}
.add-user-form-wapper .form-box ::placeholder {
    font-size: 12px;
}
.add-user-form-wapper .form-box button {
    font-size: 12px;
    padding: 10px;
    margin-top: 20px;
    width: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.add-user-form-wapper .input-box {
    margin-top: 8px;
}
.add-user-form-wapper input[type="checkbox"] {
    width: 10px;
    vertical-align: middle;
    margin-right: 3px;
}
.add-user-form-wapper .right-block h3:not(:first-child) {
    margin-top: 20px;
}
.admin-user-component .icon-box {
    padding: 6px;
    border-radius: 5px;
}
.admin-user-component .icon-box img {
    width: 13px;
    display: inline-block;
    vertical-align: text-bottom;
}
.admin-user-component .green-icon {
    background: #DFF9ED;
    margin-right: 10px;
}
.admin-user-component .red-icon {
    background: #F9D5CC;
}
.event-list-component th:last-child span.k-link {
    justify-content: center;
}
/**/
.k-window.k-dialog.admin-add-user-modal {
    max-width: 500px;
}
.add-user-form-wapper .form-box {
    padding: 0;
}
.product-marketplace-component th:last-child .k-link {
    justify-content: center !important;
}
.product-marketplace-component th:first-child,
.product-marketplace-component td:first-child {
    padding-left: 20px !important;
}
.product-marketplace-component .product-img {
    background: #E6E8FF;
    border-radius: 50px;
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.product-marketplace-component .action-img {
    border-radius: 5px;
    background: #E1F0FF;
    width: 32px;
    height: 32px;
    padding: 8px;
}

.product-marketplace-component .k-grid {
    min-width: 800px;
}
.product-marketplace-component .list-grid-modal {
    max-width: 140px;
}
.default-box-component.product-marketplace-component {
    padding-top: 10px;
}
.product-list-img-component {
    display: flex;
    flex-wrap:wrap;
    overflow-x: auto;
    gap:10px;
    list-style-type:none;
}
.product-list-img-component img {
    max-width:100px;
}
input#upload-file {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 10px;
}
.product-component .default-form-component .input-box:last-child {
    text-align: right;
}
.category-component .left-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    /*border-bottom: 1px rgba(0, 0, 0, 0.08) solid;
    padding-bottom: 30px;*/
}
.default-form-component.category-component .default-btn {
    margin-top: 20px;

}

.category-component .edit-category-component,
.category-component .right-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    /*border-bottom: 1px rgba(0, 0, 0, 0.08) solid;*/
    /*padding-bottom: 30px;*/
}

.category-component .icon-box {
    padding: 6px;
    border-radius: 5px;
}

    .category-component .icon-box img {
        width: 13px;
        display: inline-block;
        vertical-align: text-bottom;
    }

.category-component .green-icon {
    background: #DFF9ED;
    margin-right: 5px;
}

.category-component .red-icon {
    background: #F9D5CC;
}

.category-list-component {
    position:relative !important;
}
.category-list-component th:last-child .k-link {
    justify-content: center !important;
}
.category-list-component .list-grid-modal {
    max-width: 140px;
}
.place-order-component .cart-header .col-box {
    font-weight:600;
}
.place-order-component .col-box-outer {
    display: flex;
}
.place-order-component .col-box-outer .col-box {
    flex-basis: 25%;
    padding: 10px;
    color: #252628;
    font-size:13px;
}
.place-order-component .col-box-outer .col-box.box-large {
    flex-basis: 40%;
}
.place-order-component .cart-subtotal-component {
/*    padding-right: 15%;*/
}

.place-order-component .button-outer {
    margin-top: 40px;
}
.place-order-component .add-btn-componet {
    display: inline-block;
    border: 1px transparent solid;
}
.place-order-component .white-btn {
    background: transparent !important;
    margin-right: 10px;
}
.place-order-component .col-box-outer .col-box.box-large {
    flex-basis: 50%;
}

.uploading-component {
    border-radius: 8px;
    border: 2px dashed #A3C4FB;
    background: #F7FAFF;
    padding: 30px 14%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 15px;
    max-width: 420px;
}
.uploading-component span {
    font-size: 12px;
}
.uploading-component input[type="file"] {
    display:none;
}
.uploading-component input[type=file]::file-selector-button,
.uploading-component input[type=file]::-ms-browse {
    display: none;
}

/**/
.product-enquiry-component.default-box-component .k-grid .k-detail-row .k-detail-cell {
    padding-left: 0 !important;
}
.product-enquiry-component.default-box-component .k-grid .k-grid-header .k-table-th:last-child span.k-link {
    justify-content: center;
}
.product-enquiry-component.default-box-component .list-grid-modal {
    max-width: 140px;
}
.recent-inquiry-component .k-grid .k-grid-header .k-table-th:last-child span.k-link {
    justify-content: center;
}

.icon-box.green-icon {
    background: rgb(55 180 0 / 10%);
    display: inline-block;
    padding: 6px;
    border-radius: 5px;
    margin-right: 2px;
}
.icon-box.red-icon {
    background: rgb(243 23 0 / 10%);
    display: inline-block;
    padding: 6px;
    border-radius: 5px;
    margin-left: 2px;
}

.title-component.breadcrumb-component {
    font-size: 14px;
    margin-bottom: 20px;
}
.breadcrumb-component img {
    transform: rotate(-90deg);
    width: 12px;
    margin-top: 0 !important;
    margin-right: 5px;
}
.documents-marketing-resources {
    border: 0;
}
.documents-marketing-resources.default-table-component thead,
.documents-marketing-resources.default-table-component thead th,
.documents-marketing-resources.default-table-component tbody td {
    border: 0 !important;
    border-top: 1px rgb(231 231 231 / 50%) solid !important;
}
.documents-marketing-resources.default-table-component thead th {
    background: #F7FAFF;
}
.documents-marketing-resources.default-table-component td i {
    margin-right: 2px;
    font-size: 15px;
}
.documents-marketing-resources.default-table-component .list-grid-modal li img {
    filter: grayscale(1);
}
.view-sync-component .new-btn {
    border-radius: 4px;
    background: #556EE6;
    color: #F7FAFF;
    padding: 5px 5px 5px 10px;
}
.view-sync-component .text-icon .new-btn img {
    filter: invert(1) contrast(10);
    width: 14px;
}
.view-sync-component .new-btn-outer .list-grid-modal.active {
    left: 0;
}
.view-sync-component .upload-btn-outer .list-grid-modal.active {
    left: 0;
    min-width: 150px;
}
.category-component h4 {
    margin-bottom: 8px;
    color: #252628;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}
.category-component .select-icon {
    border-radius: 5px;
    background: #556EE6;
    color: #F7FAFF;
    text-decoration: none;
    padding: 6px 20px;
    font-size: 13px;
    align-self: flex-start;
}
.category-icon-component p {
    font-size: 12px;
}
.category-component .select-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
.category-component .radio-box-wrapper {
    display: flex;
    gap: 10px;
}
.category-component .radio-box-wrapper .radio-box {
    display: flex;
    align-items: center;
    gap: 5px;
}
.category-component .radio-box-wrapper .radio-box label {
    margin-bottom: 0;
}
.category-component .radio-box-wrapper .radio-box input {
    margin: 0;
}

.icon-box-component a {
    padding: 10px !important;
    display: inline-block;
    border: 1px #E8EBEC solid;
    margin: 2px 0;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.icon-box-component a:hover {
    background: #F7FAFF;
}
.icon-box-component a .icon-label {
    display: inline-block;
    font-size: 8px;
    margin-top: 5px;
}
.default-box-component .k-grid .k-grid-header .k-table-th:last-child span.k-link {
    justify-content: center !important;
}

button.telerik-blazor.k-button.k-button-solid.k-rounded-md.k-button-md.k-button-solid-primary {
    background: #2a3773;
    border-color: transparent;
}
.rename-pop-up-compnent {
    padding-top: 10px;
    padding-bottom: 10px;
}
.rename-pop-up-compnent .form-box-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
}
.rename-pop-up-compnent .input-box {
    display: flex;
    flex-direction:column;
    gap: 8px;
    margin-top: 0;
}
.rename-pop-up-compnent .input-box span {
    font-size: 15px;
    white-space: nowrap;
}
.rename-pop-up-compnent .input-box input {
    padding: 8px 12px;
    font-size: 13px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #afafaf;
}
.rename-pop-up-compnent .input-box .input-in {
    width: 100%;
}
.rename-pop-up-compnent .invalid {
    border-color: red;
    border-radius: 2px;
}
.rename-pop-up-compnent .action-btn {
    padding: 12px 30px;
    font-size: 13px;
    border: 0;
}
.rename-pop-up-compnent .validation-message {
    position: absolute;
}
.rename-pop-up-compnent ul {
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    max-height: 250px;
    overflow-y: auto;
    padding-top: 5px;
    padding-right: 10px;
}
.rename-pop-up-compnent ul li {
    font-size: 12px;
    padding: 10px;
    border-radius: 5px;
    background: #EEF1F7;
    display: flex;
    justify-content: space-between;
}
.rename-pop-up-compnent .right-block {
    margin-top: 20px;
    text-align: center;
    display: flex;
    gap: 10px;
/*    align-items: flex-end;
    justify-content: flex-end;*/
    border-top: 1px #e5e5e5 solid;
    padding-top: 20px;
}

.rename-pop-up-compnent .icon {
    font-size: 28px;
}
.rename-pop-up-compnent .text-wrapper {
    display:flex;
    flex-direction :column;
    gap: 3px;
}
.rename-pop-up-compnent .icon-text-box {
    display: flex;
    gap: 10px;
}
.rename-pop-up-compnent i.fa-solid.fa-circle-check {
    color: #3EBF8F;
}
.rename-pop-up-compnent i.fa-solid.fa-trash-can {
    font-weight: 400;
}
.rename-pop-up-compnent .title {
    font-size: 14px;
    color: rgb(0 0 0 / 80%);
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 320px;
}
.rename-pop-up-compnent .status {
    color:#292D32;
    display:flex;
    align-items:center;
    gap:4px;
    position:relative;
    padding-left: 8px;
}
.rename-pop-up-compnent .status::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #A9ACB4;
    border-radius: 50px;
    position: absolute;
    left: 0;
}
.rename-pop-up-compnent .status i {
    vertical-align:middle;
}
.rename-pop-up-compnent .file-size {
    color: #A9ACB4;
    display: flex;
    gap: 6px;
}
.rename-pop-up-compnent .close-btn {
    cursor:pointer;
}

.rename-pop-up-compnent ::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px;
}
.rename-pop-up-compnent ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.rename-pop-up-compnent ::-webkit-scrollbar-thumb {
    background: #556EE6;
    border-radius: 10px;
}

.rename-pop-up-compnent.style-3 .form-box-wrapper {
    margin-top: 20px;
}
.rename-pop-up-compnent.style-3 .shared-wrapper {
    display:flex;
    flex-direction:column;
    flex-wrap:wrap;
    gap: 5px;
}
.rename-pop-up-compnent.style-3 .right-block {
    margin-top: 10px;
    border-top: 0;
    padding-top: 0;
}

.rename-pop-up-compnent .default-share-btn {
    padding: 3px 6px;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.rename-pop-up-compnent .default-share-btn.shared-btn {
    background: rgba(85, 110, 230, 0.10);
    color:#556EE6;
    font-size: 10px;
}
.rename-pop-up-compnent .default-share-btn.share-btn {
    color: #556EE6;
}
.rename-pop-up-compnent .default-share-btn.wait-btn {
    color: #556EE6;
}
.rename-pop-up-compnent .default-share-btn.unshared-btn {
    color: #F94F4F;
}
.rename-pop-up-compnent .default-share-btn img {
    max-width: 18px;
}
.rename-pop-up-compnent.style-4 {
    max-width: 600px;
    margin: 0 auto;
}
.rename-pop-up-compnent.style-4 .right-block {
    justify-content: flex-end;
    border-top: 0;
    padding-top: 0;
}
.rename-pop-up-compnent.style-4 .icon-text-box img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
.rename-pop-up-compnent.style-4 ul {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    padding-right: 0;
    padding-top: 20px;
    gap: 15px;
    max-height: 400px;
}
.rename-pop-up-compnent.style-4 ul li {
    position: relative;
}
.rename-pop-up-compnent.style-4 .close-btn {
    background: #ff6358;
    border-radius: 50px;
    position: absolute;
    width: 20px;
    height: 20px;
    top: -10px;
    right: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.k-dialog-titlebar {
    background: #27292B;
    color: #FFFFFF;
}
.k-window-title.k-dialog-title {
    padding-top: 10px;
    padding-bottom: 10px;
}
.k-window .k-dialog-content p span {
    font-weight: 600;
    color: #673AB7;
}
.add-user-form-wapper.rename-pop-up-compnent.style-3 .resource-name {
    color: #2B2B2A;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 18px;
}
.add-user-form-wapper.rename-pop-up-compnent.style-3 .resource-name i {
    margin-right: 3px;
}
.add-user-form-wapper.rename-pop-up-compnent.style-3 ul {
    border-radius: 10px;
    background: rgba(245, 247, 255, 0.90);
    padding: 14px 18px;
}
.add-user-form-wapper.rename-pop-up-compnent.style-3 ul li {
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    padding: 0 0 8px;
    align-items: center;
    border-radius: 0;
}
.add-user-form-wapper.rename-pop-up-compnent.style-3 ul li:last-child {
    border:0;
}
.add-user-form-wapper.rename-pop-up-compnent.style-3 ul li .bg-gray-circle {
    background: #F0F0F0;
    border-radius: 50px;
    font-size: 12px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.add-user-form-wapper.rename-pop-up-compnent.style-3 .icon-text-box {
    align-items:center;
}
.add-user-form-wapper.rename-pop-up-compnent.style-3 .title {
    font-size: 12px;
}

.default-box-component .documents-marketing-resources .item-count {
    padding-left: 22px;
    font-size: 10px;
    color: gray;
    margin-top: 0;
}

.main-content-wrapper {
    min-height:72vh;
}

.not-found-page .title {
    background: linear-gradient(268deg, #556EE6 1.42%, #21376C 102.43%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 100px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.not-found-page h2 {
    color: #000;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.not-found-page p {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 500px;
}
.not-found-page .btn {
    min-width: 240px;
    padding: 10px;
    margin-top: 20px;
}
.not-found-page .btn-style-2 {
    background: #556EE6 !important;
    border-radius: 4px !important;
    max-width: 240px;
    width: 100%;
    min-width: 240px !important;
}
/**/
.product-marketplace-component .k-grid .k-grid-header .k-table-th,
.product-marketplace-component .k-grid .k-table-row td {
    text-align: center !important;
}
.product-marketplace-component .k-grid .k-grid-header .k-table-th .k-link {
    justify-content: center;
}
.product-marketplace-component .k-grid .k-grid-header .k-table-th:nth-child(2),
.product-marketplace-component .k-grid .k-table-row td:nth-child(2) {
    text-align: left !important;
}
.product-marketplace-component .k-grid .k-grid-header .k-table-th:nth-child(2) .k-link {
    justify-content: flex-start;
}
.product-marketplace-component .product-img-box {
    text-align: right;
}
.product-marketplace-component .product-img-box img {
    width: 36px;
    height: 36px;
    background: #F2F1F1;
    padding: 6px;
    border-radius: 6px;
}
.product-marketplace-component.product-table-style-2 .k-grid .k-table-row:nth-child(odd) {
    background: #eef4fe2e !important;
}
.product-marketplace-component.product-table-style-2 .k-grid .k-table-row td {
    border: 1px #d7d7d75e solid !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
}
.product-marketplace-component.product-table-style-2 .k-grid .k-table-row td:last-child {
    border-right: 1px #d7d7d75e solid !important;
}
.product-marketplace-component.product-table-style-2 .k-grid .k-table-row:last-child td {
    border-bottom: 1px #d7d7d7 solid !important;
}
.product-marketplace-component.product-table-style-2 .product-img-box img {
/*    border: 1px #d7d7d75e solid !important;*/
}



/**/
.color-box {
    width: 20px;
    height: 20px;
    display:inline-block;
}
.color-box.blue-clr {
    background: #03a9f4;
}
.color-box.black-clr {
    background: #000;
}
.color-box.red-clr {
    background: #f31700;
}
.color-box.green-clr {
    background: #0DA759;
}
.color-box.yellow-clr {
    background: #ffc000;
}
.color-box.brown-clr {
    background: #912222;
}
.color-box.orange-clr {
    background: #ff5520;
}
.color-box.grey-clr {
    background: #6d6d6d;
}
/**/
.k-pager .k-pager-info {
    font-size: 12px;
}
.tab-wrapper {
    padding: 0 12px;
}

.search-box-component {
    border-radius: 4px;
    background: #F5F5F5;
    min-width: 280px;
    display: flex;
    justify-content: space-between;
}
.search-box-component ::placeholder {
    color: #A8A9B4;
    font-size: 11px;
}
.search-box-component input {
    color: #A8A9B4;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0.055px;
    border:0;
    outline:0;
    background:transparent;
    padding:8px 13px;
    width: 100%;
}
.search-box-component .search-btn {
    border:0;
    outline:0;
    padding: 6px 15px;
    background: transparent;
}
.search-box-component .search-btn img {
    filter:grayscale(0.5);
    width:13px;
}
.builder-management-table {
    border-top:0;
}

/*
    
.product-detail .price-cart-outer {
    margin-bottom: 20px;
}
.product-detail h3 {
    font-size: 22px;
    margin-bottom: 10px;
}
.product-detail .product-detail-wrapper {
    display: flex;
    gap: 20px 40px;
}
.product-detail .product-image {
    max-width:400px;
    width:100%;
}
.specification-component ul li {
    border-top: 1px rgba(0, 0, 0, 0.08) solid;
    padding-top: 10px;
    padding-bottom: 10px;
    list-style-type: none;
    padding-left: 5px;
}
.specification-component .circle {
    border-radius: 50px;
    border: 1px solid rgba(0, 8, 49, 0.15);
    padding: 5px;
    width: 30px;
    height: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #252628;
}
.specification-component .spec-wrapper {
    display: flex;
    gap: 20px;
}
.specification-component .circle-wrapper {
    display: flex;
    gap: 5px;
}
.specification-component .size-wrapper {
    display: flex;
    gap: 5px;
}
.detail-text-component {
    margin-top: 30px;
}
.specification-component .size-wrapper span {
    border: 1px #b5b5b5 solid;
    padding: 4px 10px;
    display: inline-block;
    font-size: 12px;
}
.product-detail .product-gallery-component {
    background: #efefef;
    padding: 20px;
}

.product-detail-list {
    flex-direction: column;
    flex-basis: 20%;
}
.product-detail.style-2 {
    display:flex;
    gap:10px;
}
.product-detail.style-2 h3 {
    font-size: 16px;
}*/



/*  */

.default-form-component .input-box-outer .input-box-column-component .input-box {
    margin-bottom: 14px;
}


.cart-popup-style-2 {
    min-width: 500px;
    min-height: 200px;
    max-height: 450px;
    overflow: auto;
    padding-top: 10px;
}
.cart-popup-style-2 .img-box {
    border-radius: 2px;
    background: #F7FAFF;
    padding: 20px;
}
.cart-popup-style-2 ul {
    list-style-type: none;
    padding-left:0;
}
.cart-popup-style-2 ul li {
    color: #252628;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}
.cart-popup-style-2 ul li.price {
    font-size: 13px;
}
.cart-popup-style-2 ul li.sku {
    color: #252628;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}
.cart-popup-style-2 .total-block {
    text-align: right;
    color: #252628;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}
.cart-popup-style-2 .product-price {
    color: #556EE6;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.cart-popup-style-2 .cart-item-list {
    display: flex;
    gap: 30px;
    padding-bottom:15px;
    margin-bottom:15px;
    justify-content:space-between;
    border-bottom: 1px rgb(231 231 231 / 50%) solid;
}
.cart-popup-style-2 .left-block {
    display: flex;
    gap: 30px;
}
.cart-popup-style-2 .img-box img {
    max-width: 60px;
}
.k-button-flat::after {
    box-shadow:none !important;
}
.k-button-overlay, .k-button::before {
    background:inherit !important;
}
.default-box-component.product-marketplace-component .image-block {
    width: 46px;
    height: 46px;
    object-fit: contain;
    background: #F2F1F1;
    border-radius: 6px;
    text-align: center;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
}
.default-box-component.product-marketplace-component .image-block img {
    border-radius:50px;
    width: 36px;
    height: 36px;
    object-fit:contain;
}

.custom-loader.k-loader::before,
.custom-loader.k-loader::after {
    border-width: 3px !important;
    border-color: #556EE6 transparent transparent transparent !important;
    border-top-color: #556EE6 !important;
}
.custom-loader.k-loader {
    color: #556EE6 !important;
}


/*media query*/
@media (max-width:1440px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    h2 {
        font-size: 20px;
    }
    .header-component {
        padding: 15px 0;
        margin-bottom: 5px;
    }
    .default-box-component .k-grid .k-grid-header .k-table-th {
        padding: 8px;
        font-size: 12px;
    }
    .sidebar-component ul li img {
        margin-right: 2px;
    }
    .sidebar-component {
        padding-left: 15px;
        max-width: 210px;
    }
    .sidebar-component ul li a {
        padding: 8px;
        font-size: 13px;
    }
    .admin-dashboard-component {
        margin-left: 210px;
    }


}

@media (max-width:1200px) {
    .view-sync-component {
        gap: 10px;
    }
}


@media (max-width:991px) {
    .default-form-component .input-box-outer-5 {
        grid-template-columns: 1fr 1fr;
    }
    .search-box-component {
        min-width: auto;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-component .container {
        padding: 0;
    }

    h2 {
        font-size: 20px;
    }

    .padding-40 {
        padding: 20px;
    }

    .default-form-component .input-box-outer {
        gap: 14px 10px;
    }

    .sidebar-component {
        max-width: 75px;
        padding-left: 8px;
        left: -80px;
        padding-top:25px;
    }
    .sidebar-component.active {
        left: 0;
        max-width: 50px;
        padding-left: 0;
    }
    .sidebar-component .logo img,
    .sidebar-component.active .logo img {
        max-width: 40px;
    }

    .sidebar-component ul li a {
        font-size: 0;
    }

    .admin-dashboard-component .hamberger {
        margin-top: 4px;
        display: block;
    }
    .admin-dashboard-component .hamberger span {
        width: 15px;
        height: 2px;
        display: block;
        background: #000;
        margin: 4px 0;
    }
    .admin-dashboard-component .hamberger::before {
        content: '';
        width: 15px;
        height: 2px;
        display: block;
        background: #000;
    }
    .admin-dashboard-component .hamberger::after {
        content: '';
        width: 15px;
        height: 2px;
        display: block;
        background: #000;
    }
    .admin-dashboard-component {
        margin-left: 0;
    }

    .admin-dashboard-component .menu-btn {
        /*visibility: hidden;*/
         transform: none;
    }
    .admin-dashboard-component.active {
        margin-left: 50px;
    }
    .sidebar-component ul li {
        text-align:center;
    }

    .top-dashboard-component .top-user-component p {
        font-size: 12px;
    }
    .recently-activity-component {
        padding: 2px 0px;
    }
    .recently-activity-component .list-box-component {
        padding: 8px;
    }
    .admin-dashboard-component .menu-btn img {
        display: none;
    }
    .sidebar-component .toggle-menu {
        display: block;
    }
    .sidebar-component .toggle-menu .menu-btn {
        display: none;
    }
    .sidebar-component .sub-menu {
        height: auto;
        opacity: 1;
        max-height: none;
        padding-left: 0;
    }
    .sidebar-component.active .toggle-menu.active + .sub-menu {
        padding-left: 0;
    }
    .view-sync-component .text-icon:not(:last-child) {
        padding-right: 10px;
    }
}


.place-order-component {
    margin-top: 20px;
}

    .place-order-component .cart-header {
        border-radius: 4px;
        color: #252628;
        background: #F7FAFF;
    }

    .place-order-component .cart-top-block {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #FFF;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.2px;
    }

    .place-order-component .cart-list-outer {
        padding: 0;
    }

    .place-order-component .cart-item-list {
        display: flex;
        justify-content: space-between;
        margin-top: 12px;
        padding-bottom: 10px;
        font-size: 16px;
        font-weight: 500;
    }

        .place-order-component .cart-item-list .product-info {
            padding: 0;
        }

            .place-order-component .cart-item-list .product-info li {
                color: #252628;
                font-size: 14px;
                font-style: normal;
                font-weight: 600;
                line-height: 20px;
            }

                .place-order-component .cart-item-list .product-info li span {
                    font-weight: 400;
                }

    .place-order-component .left-block {
        display: flex;
        gap: 6px;
    }

        .place-order-component .left-block img {
            max-width: 120px;
            object-fit: contain;
        }

    .place-order-component .right-block {
        display: flex;
        gap: 50px;
    }

        .place-order-component .right-block .price {
            color: #384860;
            text-align: right;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            letter-spacing: 0.2px;
        }

        .place-order-component .right-block .delete-btn {
            border-radius: 2px;
            background: #F1F3FF;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

            .place-order-component .right-block .delete-btn img {
                filter: hue-rotate(230deg);
                transition: all 0.3s ease-in-out;
            }

            .place-order-component .right-block .delete-btn:hover img {
                filter: none;
            }

    .place-order-component .left-block img {
        border-radius: 8px;
    }

    .place-order-component .cart-item-list li {
        color: #121A26;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        letter-spacing: 0.2px;
        list-style-type: none;
        margin-top: 5px;
    }

    .place-order-component .cart-item-list .title {
        color: #556EE6;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }

    .place-order-component .cart-subtotal {
        border-top: 1px #E2E8F0 solid;
        padding-top: 20px;
        margin-top: 20px;
    }

    .place-order-component .sub-total {
        color: #121A26;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 27px;
        letter-spacing: 0.2px;
    }

    .place-order-component .cart-item-list:last-child {
        border-bottom: 0;
    }

    .place-order-component .cart-total {
        font-size: 20px;
    }

        .place-order-component .cart-total .total {
            font-size: 20px;
            font-weight: 600;
        }

    .place-order-component .button-outer {
        justify-content: flex-end;
    }
color: #f31700;
.button-outer {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    gap: 20px;
}

.btn-style-1 {
    font-weight: 500;
    background: #7952B3;
    color: #fff;
    border-color: #7952B3;
    font-size: 14px;
}
.btn-style-1 img {
    filter: contrast(5);
}

    .btn-style-1:hover {
        font-weight: 500;
        background: #4e248c;
        color: #fff;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

.btn-style-2 {
    background: #556EE6;
    color: #fff;
    border-color: #556EE6;
}

    .btn-style-2:hover {
        background: #081a73;
        color: #fff;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }


.blue-multiselect .k-multiselect {
    background-color: #007bff;
    border-color: #0056b3;
    color: white;
}

/* Dropdown list background */
.blue-multiselect .k-popup {
    background-color: #e6f0ff;
}

/* Individual items */
.blue-multiselect .k-list-optionlabel {
    background-color: #e6f0ff;
    color: #003366;
}

    /* Hover state for items */
    .blue-multiselect .k-list-optionlabel:hover {
        background-color: #b3d1ff;
    }

/* Selected items (chips) */
.blue-multiselect .k-chip {
    background-color: #0056b3;
    color: white;
}

/* Checkbox styling */
.blue-multiselect .k-checkbox:checked {
    border-color: white;
    background-color: #0056b3;
}
@media (max-width:767px) {
    .project-view-col-component {
        flex-direction: column;
    }
   .default-form-component.product-varients-component .input-box-outer {
        grid-template-columns: 1fr;
    }
    .product-varients-component .product-list-table td {
        min-width: 120px;
    }
    .login-component.style-3 .login-box-wrapper {
        min-width: auto;
        min-height: auto;
    }

    .login-component.style-3 .default-btn {
        font-size: 16px;
        padding: 10px;
    }

    .default-form-component .input-box-outer-5 {
        grid-template-columns: 1fr;
    }

    .category-component .default-btn {
        padding: 10px 30px !important;
    }

    h2 {
        font-size: 18px;
    }

    .default-form-component .input-box-outer {
        grid-template-columns: repeat(1, 1fr);
    }
    .default-form-component .default-btn {
        margin-top: 30px;
        padding: 10px 20px;
        width: 100%;
    }
    .add-btn-componet {
        font-size: 14px;
        padding: 7px 8px;
    }
    .place-order-component .white-btn {
        margin-right: 4px;
    }
    .not-found-section {
        min-height: 45vh;
    }

    .padding-40 {
        padding: 15px;
    }

    .padding-lr-25 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .login-component .login-box-wrapper {
        padding: 40px 20px;
    }

    .login-component p {
        font-size: 18px;
    }

    .footer-component p {
        font-size: 14px;
    }

    .footer-component {
        padding: 40px 0;
    }

    .login-component {
        padding: 50px 15px;
    }

    .footer-component .login-list li {
        font-size: 14px;
        padding-right: 10px;
    }

    .footer-component .login-list {
        gap: 10px;
    }
    .not-found-page .title {
        font-size: 80px;
    }
    .login-component.style-3 h2 {
        font-size: 18px;
    }
    .not-found-page p {
        font-size: 15px;
    }
    .rename-pop-up-compnent .title {
        font-size: 12px;
    }
    .add-user-form-wapper.rename-pop-up-compnent.style-3 ul {
        border-radius: 5px;
        padding: 5px 6px;
    }
    .rename-pop-up-compnent .default-share-btn {
        padding: 4px 6px;
        font-size: 10px;
    }
    .add-user-form-wapper.rename-pop-up-compnent.style-3 .icon-text-box {
        gap: 6px;
    }
    .default-box-component .documents-marketing-resources .item-count {
        padding-left: 0;
    }
    .login-component-style-2 {
        flex-direction: column;
        gap: 30px;
    }

    .traffic-recent-box-outer {
        grid-template-columns: 1fr;
    }

    .traffic-overview-component .chart-wrapper {
        flex-direction: column;
    }

    .recent-total-box-outer {
        grid-template-columns: 1fr;
        /*overflow-x: auto;*/
        overflow: hidden;
    }

    .header-component .box-header .tab-component {
        flex-direction: column;
    }

    .product-component-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .header-component .box-header .right-box {
        flex-direction: column;
        width: 100%;
    }

    .header-component .box-header {
        flex-direction: column;
        gap: 10px;
    }

    .list-block-component {
        grid-template-columns: repeat(1, 1fr);
    }

    .view-sync-component {
        /*        flex-direction: column;*/
        flex-wrap: wrap;
    }
    .view-sync-component {
        margin-bottom: 10px;
        align-items: center;
    }
        .view-sync-component .text-icon {
            text-align: left;
            font-size: 12px;
        }
        .view-sync-component .new-btn {
            display: inline-block;
        }

            .view-sync-component .text-icon:not(:last-child) {
                border-right: 0;
                padding-right: 0px;
            }
            .view-sync-component .text-icon img {
                margin-right: 1px;
                max-width: 9px;
            }
    .breadcrumb-component.title-component {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    .container .default-box-component.default-tab-component {
        margin: 0 -15px;
    }

    .document-box-component-outer {
        grid-template-columns: repeat(1, 1fr);
    }

    .default-form-component .input-box-outer {
        grid-template-columns: 1fr;
    }

    .default-box-component {
        /*max-width: 1000px;
        overflow: auto;*/
        overflow-x: auto;
    }

    .default-table-component tr td {
        padding: 6px 10px;
    }

    .default-table-component .status {
        white-space: nowrap;
    }
    .default-table-component tr th,
    .default-table-component tr td {
        font-size: 12px;
    }
    .default-table-component.documents-marketing-resources tr th,
    .default-table-component.documents-marketing-resources tr td {
        padding-left: 5px;
        padding-right: 5px;
    }
    .default-table-component.documents-marketing-resources tr td i {
        display:block;
    }
    .title-component {
        font-size: 16px;
    }
    .list-grid-modal {
        border-radius: 6px;
    }
    .coming-soon h2 {
        font-size: 26px !important;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .coming-soon .button-bk {
        padding: 14px 30px;
        margin-top: 10px;
        font-size: 14px;
    }

    .default-box-component .k-grid .k-table-row td {
        padding-left: 5px;
    }

    .builder-detail-page .col-box {
        grid-template-columns: 1fr;
    }

    .builder-detail-page .flex-box {
        grid-template-columns: 1fr;
    }

    .builder-detail-page {
        padding: 30px 10px;
    }

    .box-header {
        padding: 12px 10px;
    }

    .add-user-form-wapper .form-wrapper {
        grid-template-columns: 1fr;
        height: 310px;
        overflow: auto;
        padding-right: 10px;
    }

    /*.default-box-component.admin-user-component .k-grid {
        width: 800px;
    }*/
    .add-user-form-wapper .form-box {
        padding: 0;
    }

    .admin-user-component .list-grid-modal {
        left: 40px;
    }

    .admin-add-user-modal {
        max-width: 350px;
    }

    .default-box-component h3 {
        font-size: 14px;
    }

    .default-box-component .box-header button {
        padding: 8px 10px;
        font-size: 12px;
    }

    .default-table-component tr th, .default-table-component tr td {
        padding-left: 8px;
    }

    .default-box-component.admin-user-component .k-grid {
        width: 800px;
        overflow-x: auto;
    }

    .recent-inquiry-component {
        width: 800px !important;
        overflow-x: auto;
    }

    .event-list-component {
        width: 750px !important;
        overflow-x: auto;
    }

    .full-row-component {
        overflow: auto;
    }

    .default-box-component::-webkit-scrollbar {
        height: 2px;
    }

    .default-box-component::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .default-box-component::-webkit-scrollbar-thumb {
        background: #556EE6;
    }

    .rename-pop-up-compnent .input-box {
        width: 100%;
        flex-direction:column;
    }
    .rename-pop-up-compnent .input-box span {
        margin-right: auto;
    }


    /**/
    .add-user-form-wapper .form-box button {
        width: 100%;
    }

    .k-dialog-wrapper .k-dialog {
        width: 90% !important;
    }

    .default-box-component .k-grid-pager {
        width: 100%;
    }

    .default-box-component.default-form-component.add-builder-component table.k-grid-table {
        width: 1200px;
    }

    .place-order-component .left-block {
        flex-direction: column;
    }

    .default-form-component .input-box-row .input-box {
        flex-basis: 100%;
    }


    .default-box-component .k-grid .k-table-row td img {
        display: block;
    }

    .icon-box-component .k-window-content.k-dialog-content {
        max-height: 240px;
    }

    .sidebar-component.active ul li .toggle-menu a {
        padding-right: 10px;
    }

    .list-grid-modal li img {
        display: inline-block !important;
    }

    .not-found-section {
        background: #fff;
        text-align: center;
        padding: 20px;
        min-height: 40vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 800px;
        border-radius: 20px;
    }

        .not-found-section h2 {
            font-size: 70px;
            margin-bottom: 20px;
        }

        .not-found-section .button-bk {
            background: #132144;
            padding: 16px 40px;
            display: inline-block;
            border-radius: 50px;
            color: #fff;
            text-decoration: none;
            margin-top: 30px;
            font-size: 14px;
            transition: all 0.3s ease-in-out;
        }

        .not-found-section h2 span {
            color: #f31700;
        }

        .not-found-section .button-bk:hover {
            background: #10275f;
        }

    .message {
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        border-radius: 6px;
        font-size: 0.95rem;
        margin: 0.5rem 0;
    }

        .message.success {
            background-color: #e6f7ec;
            color: #2e7d32;
            border: 1px solid #b5e2c1;
        }

        .message.error {
            background-color: #fdecea;
            color: #c62828;
            border: 1px solid #f5c6cb;
        }

        .message::before {
            content: "";
            display: inline-block;
            margin-right: 0.5rem;
            width: 5rem;
            height: 5rem;
            background-size: contain;
            background-repeat: no-repeat;
        }

        /* Success Icon (checkmark) */
        .message.success::before {
            background-image: url('data:image/svg+xml;utf8,<svg fill="%232e7d32" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12 3.41 13.41 9 19l12-12-1.41-1.41z"/></svg>');
        }

        /* Error Icon (exclamation) */
        .message.error::before {
            background-image: url('data:image/svg+xml;utf8,<svg fill="%23c62828" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 21h22L12 2 1 21zm12-3h-2v2h2v-2zm0-8h-2v6h2V10z"/></svg>');
        }


    .uploading-component {
        border-radius: 8px;
        border: 2px dashed #A3C4FB;
        background: #F7FAFF;
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-top: 15px;
        max-width: 420px;
    }

        .uploading-component svg {
            max-width: 20px;
            height: auto;
        }

.excel {
    color: green !important;
}

