@charset "utf-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap");

@font-face {
    font-family: "klinic_slabmedium";
    src: url("fonts/klinicslabmedium-webfont.woff2") format("woff2"),
        url("fonts/klinicslabmedium-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Material Icons";
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialicons/v50/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format("woff2");
}

.material-icons {
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -moz-font-feature-settings: "liga";
    -moz-osx-font-smoothing: grayscale;
}

/* comman style
----------------------*/
html,
body {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: #000;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
}

a:hover {
    color: #000;
    text-decoration: none;
}

.gc-sidebar a:hover {
    color: #fff;
}

a:focus {
    outline: none;
    text-decoration: none;
    color: inherit;
}

:focus {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1.2;
    font-family: "Roboto", sans-serif;
    text-transform: none;
    font-weight: 500;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 15px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    text-decoration: none;
}

small {
    display: block;
    margin-top: 4px;
}

p {
    margin: 0 0 20px 0;
    line-height: 24px;
}

ul,
ol {
    margin: 0;
}

strong,
b {
    font-weight: 600;
}

button {
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
}

.alignleft .wp-caption-text {
    text-align: left;
}

.alignright .wp-caption-text {
    text-align: right;
}

.aligncenter .wp-caption-text {
    text-align: center;
}

hr {
    clear: both;
    margin-top: 20px;
    margin-bottom: 20px;
}

.content ul,
.content ol {
    margin-bottom: 20px;
}

.content ul li,
.content ol li {
    margin-top: 4px;
    margin-bottom: 4px;
    font-weight: 300;
}

/* comman form filed style 
-----------------------------*/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="submit"],
input[type="password"],
input[type="hidden"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 5px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="submit"]:focus,
input[type="password"]:focus,
input[type="hidden"]:focus {
    outline: none;
}

textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    font-family: "Roboto", sans-serif;
    border-radius: 0px;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url(../images/select-arrow.png);
    background-repeat: no-repeat;
    background-position: right center;
    border-radius: 5px;
}

textarea:focus,
select:focus {
    outline: none;
}

input:disabled,
select:disabled {
    color: #ffffff !important;
    opacity: 1;
}

label {
    font-weight: 500;
    margin-bottom: 5px;
}


.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: auto;
    padding: 10px 15px;
    border: 1px solid #000;
    height: 50px;
    background-color: #fff;
}

.form-control:focus {
    /* box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.15); */
    /* border-color: #4285f4; */
    transition: all 0.1s ease-in-out 0s;
}

textarea.form-control {
    height: 160px;
    resize: none;
}

/* sticky header
========================*/
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
        -moz-transform: translate3d(0, -100%, 0);
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

body.home {
    padding-top: 0px !important;
}

.sticky {
    position: relative;
    width: 100%;
    top: 0px;
    z-index: 999;
}


/*-------------*/
.body-wrapper .container {
    max-width: inherit;
}

.body-wrapper {
    min-height: 100%;
    overflow: auto !important;
    background-color: #F8F8F8;
    padding-left: 0;
    padding-right: 0;
    /*height:100%;*/
    /* margin: 0 auto -65px; */

}

footer {
    padding: 30px 0px 0px !important
}

.footer {
    clear: both;
    height: 65px;
    background: #F8F8F8;
    border-top: 1px solid #D9D9D9;
    padding-top: 0;
    text-align: center;
    font-size: 14px;
    color: #6B6B6B;
    margin-left: 0;
    margin-right: 0;
    position: sticky;
    bottom: 0;
    width: 100%;
    left: 0;
    font-weight: 400;
    display: flex;
    font-family: 'Roboto';
    justify-content: center;

    align-items: center;
}

.gc-login-authentication .footer {
    position: fixed;
}

.body-wrapper .footer {
    width: 100%;
    margin-left: 0;
}



.bodymenuclose .footer {
    margin-left: 0;
    width: 100%;
}

.header .container {
    max-width: 1752px;
}

.show-overlay {
    width: 100%;
    height: 100%;
    z-index: 999999;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.overflowhidden {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/*-----menu-start------*/

.menuicon {
    /*    border: 2px solid #000;*/
    display: inline-block;
    width: 50px;
    height: 30px;
    color: #000;
    cursor: pointer;
    position: absolute;
    top: 14px;
    left: 30px;
}

/* .menuicon:before {
    content: "";
    position: absolute;
    top: 12px;
    right: 11px;
    display: block;
    width: 24px;
    height: 8px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
} */

/* .menuicon:after {
    content: "";
    position: absolute;
    top: 6px;
    right: 11px;
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
} */


.menuicon span {
    font-size: 37px;
    font-weight: 600;
}

.header {
    height: 64px;
    padding-bottom: 0px;
    position: fixed;
    width: 100%;
    top: 0px;
    background-color: #f8f8f8;
    /* box-shadow: 0px 2px 2px #ddd !important; */
    z-index: 99;
    width: calc(100% - 316px);
    border-bottom: 1px solid #A3A3A3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-menu-open .header {
    width: 100%
}

.bodymenuopen {
    /*    position: fixed;*/
    position: relative;
    z-index: 999 !important;
    width: 100%;
    height: 100%;
    /*    overflow: hidden;*/
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

/*.bodymenuopen .sidenav {
    width: 290px !important;
}*/

/*-----menu-end------*/

.mainlogo {
    font-family: "klinic_slabmedium";
    color: #000;
    font-size: 35px;
    text-align: center;
    padding-top: 1px;
}

.mainlogo a {
    color: #000;
}

.mainlogo img {
    /* height: 50px;*/
    height: 35.17px;
}

.mainlogo span {
    margin-left: 3px;
    vertical-align: middle;
}

.middlesection {
    padding-top: 100px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
}

.tableborder {
    border: 1px solid #e9eaef;
}

.MB20 {
    margin-bottom: 20px;
}

h2.maintitle {
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 20px;
}






.icon-circle {
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
    flex-shrink: 0;
    font-size: 20px;
}

.label-text {
    font-weight: 600;
    font-size: 16px;
}


input.form-control,
select.form-select {
    height: 48px;
    font-size: 15px;
}

.form-check-label {
    margin-bottom: 0;
}

label.form-label {
    font-weight: bold;
}

.icon-set .gc-icon-set {
    top: 21px !important;
}







/* 17-06-25 */

.dash-app {
    margin-left: 316px;
    transition: 0.5s;
    margin-left: 316px;
    /* width: calc(100% - 316px); */
    transition: all 0.3s ease;
}

/* .left-menu-open .header {
    width: calc(100% - 316px);
} */

.left-menu-open {
    margin-left: 0px;
}

.leftbar-panel {
    width: 316px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    transition: all 0.3s ease;
    z-index: 1000;
}

.bodymenuclose .leftbar-panel {
    width: 0;
    overflow: hidden;
}

/* Right panel */

.bodymenuclose .dash-app {
    margin-left: 0;
}

.gc-sidebar {
    background: #000;
    padding-top: 15px;
    height: 100%;
}


.profilesec {
    padding-top: 60px;
}

.closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    margin-left: 50px;
    color: #fff;
    font-size: 30px;
    font-weight: 100;
}

.profilesec {
    display: flex;
    text-align: left;
    align-items: center;
    margin-bottom: 56px;
}

.usernamesec h6 {
    margin-bottom: 0px;
    font-size: 18px;
    color: #fff;
    font-weight: 300;
}

.profilesec .rounded-circle {
    width: 55px;
    height: 55px;
    margin-right: 12px;
    object-fit: cover;
}

.usernamesec p {
    margin-bottom: 0px;
    color: #a3a3a3;
    font-size: 14px;
    font-weight: 300;
}

.menuleftrightpadd {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-right: 29px;
    margin-top: 15px;
    padding-right: 50px;
    padding-left: 30px;
}

.menuleftrightpadd ul {
    margin: 0;
    padding: 0;
    flex: 1;
    margin-bottom: 10px;
}

.menuleftrightpadd ul li a {
    color: #fff;
}

.menuleftrightpadd ul li {
    list-style: none;
    margin-bottom: 10px;
}

.menuleftrightpadd ul li a {
    display: block;
    text-align: center;
    width: 100%;
    padding: 10px 15px 8px 15px;

    height: 56px;
    display: flex;
    align-items: center;
}

.menuleftrightpadd ul li a span,
.logoutsec a span {
    padding-right: 11px;
    font-weight: 300;
    padding-bottom: 6px;

}

.active {
    background-color: #fff;
    border-radius: 16px;
    color: #000;
}


.logoutsec a {
    display: flex;
    align-items: center;
    padding: 16px 16px 16px 16px;
    width: 100%;
    color: #fff;
}

.logoutsec .mdc-list-item {
    width: 100%;
}

.logoutsec {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-end;
    border-top: 1px solid #70707066;
    margin-bottom: 15px;
}

.menuleftrightpadd ul li.active a {
    color: #000;
}




/* login screen */
.loginsection {

    align-items: center !important;

    justify-content: center !important;

    display: flex !important;
    height: 100vh;
    position: relative;
    background: #F8F8F8;
}

.logregcon {
    width: 535px;
    height: auto;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 3px 2px 0px rgba(96, 96, 96, 0.3);
    margin: 0 30px;
}

.bodymenuopen {
    overflow: hidden;
}

.login-screen img {
    width: 65px;
    height: 65px;
}

.logo-cls {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.logo-cls h1 {
    font-family: "klinic_slabmedium";
    color: #000;
    font-size: 45px;
    margin-bottom: 0;
}


.logo-cls h2 {
    font-family: "klinic_slabmedium";
    color: #000;
    font-size: 15px;
    margin-bottom: 0;
}

.loginlogo h5 {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
}

.loginlogo {
    margin-bottom: 50px;
}

.loginform .mdc-text-field {
    margin-bottom: 30px;
}

.loginform .otp-cls {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: inherit;
}

.mdc-text-field.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,
.mdc-text-field.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,
.mdc-text-field.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing {
    border-color: #7E7E7E !important;
}

body .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label {
    /* color: #A3A3A3; */
    font-weight: 400;
}

body .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label {
    color: #000;
}

.commonsubmitbtn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2.1%;
    letter-spacing: 1px;
    font-weight: 500;
}

body .commsubmit {
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}



/* otp screen */
.loginform h6 {
    font-weight: 400;
    font-size: 15px;
    text-align: center;
}

.otp-cls {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 30px;
}

.otp-cls input {
    border-color: #7E7E7E;
    height: 50px;
    font-size: 24px;
    color: #000 !important;
    font-weight: 500;
    width: 50px;
}

.loginform button {
    border: none;
    border: none;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    background: #000;
    line-height: normal;
}



.loginform button:hover {
    box-shadow: unset
}

body .form-control:focus {
    border-color: #000203;
}


/* header-cls */
.logo .login-screen img {
    width: 44px;
}

.logo .header-screen img {
    width: 44px;
}

.logo .logo-cls h1 {

    font-size: 25px;

    font-weight: 400;
}

.logo .logo-cls h2 {

    font-size: 9px;
    font-weight: 400;
}

.logo .loginlogo {
    margin-bottom: 0;
}

.logo .logo-cls {
    margin-bottom: 0;
}




/* general setting css start */

.quote-left-panel {
    padding: 0;
}

.quote-system-list {
    margin-bottom: 47px;
}

.quote-system-list h2 {
    margin-bottom: 0px;
    text-transform: capitalize;
}

.comman-bg {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    min-height: 700px;
    width: 100%;
}

.setting-card {
    background: #FBFBFB;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0px 3px 2px 0px rgba(96, 96, 96, 0.3);
    display: flex;
    align-items: center;
    gap: 25px;
}


.setting-card .label-text h2 {
    color: #000;
    font-size: 26px;
    margin-bottom: 0;
}

.setting-card-col {
    max-width: 342px;
    padding: 0;
    margin: 0;

}

.seting-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0;
}


/* Bhavik added style */
table,
.table {
    width: 100% !important;
}

.vendor_item_table td {
    word-break: break-word;
}

div.dataTables_wrapper {
    /* overflow-x: hidden !important; */
}

/* Force dark color for current page button in DataTables pagination */
div.dataTables_wrapper div.dataTables_paginate ul.pagination .page-item.active .page-link {
    background-color: #000 !important;
    color: #fff !important;
    border: 1px solid #000 !important;
}

/* Set Previous and Next button text color to dark */
div.dataTables_wrapper div.dataTables_paginate ul.pagination .page-item.previous .page-link,
div.dataTables_wrapper div.dataTables_paginate ul.pagination .page-item.next .page-link {
    color: #000 !important;
    font-weight: bold;
}

.page-link:focus {
    box-shadow: none;
}

/* end */


/* 19-06-25 */
.currency-icon span {
    font-size: 30px;
}

/* components css */
.componets-cls .setting-card {
    padding: 30px;
    align-items: unset;
    flex-direction: column;
    gap: 16px;
}

.componets-cls .dropdown {
    text-align: right;
}

.componets-cls .label-text {
    font-weight: 500;
    font-size: 20px;
}

.componets-cls .dropdown button {
    padding: 0;
    font-size: 24px;
    line-height: normal;
    color: #000 !important;
}


.comman-btn a {
    border: none;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 400;
    padding: 11px 20px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    background: #000;
    line-height: normal;
}

.edit-delete-cls {
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: 6px;
    box-shadow: 0px 3px 2px 0px rgba(96, 96, 96, 0.3);
    padding: 20px;
    min-width: auto;
}

.edit-delete-cls li .dropdown-item {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #000 !important;
}

.edit-delete-cls.show {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.edit-delete-cls li .dropdown-item:hover {
    background-color: transparent;
}

.mdc-text-field {
    position: relative;
}

/* end */


/* comman search  */

.search-form {
    display: flex;
    align-items: center;
    background-color: #eeeeee00;
    border: 1px solid #A3A3A3;
    border-radius: 8px;
    color: #A3A3A3;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05);
    gap: 8px;
    padding: 10px 0px 10px 14px;
    width: 380px;
    border-radius: 5px;
    height: 48px;
    justify-content: space-between;
}

.search-form span {
    font-size: 28px;
}

.search-form input {
    background: transparent;
    border: none;
    padding: 0;
    height: inherit;
    color: #000;
    font-size: 15px;
    width: 100%;
}

.search-form button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    border-radius: 0 5px 5px 0px;
    background-color: #000;

}

.search-form input::placeholder {
    color: #A3A3A3;
}

.search-form input::-webkit-input-placeholder {
    color: #A3A3A3;
}

.search-form input:-ms-input-placeholder {
    color: #A3A3A3;
}

.search-form input::-moz-placeholder {
    color: #A3A3A3;
    opacity: 1;
}

.search-form input:-moz-placeholder {
    color: #A3A3A3;
    opacity: 1;
}

/* .quote-system-list {
    display: flex;
    justify-content: space-between;
} */



/* components edit */
body .form-control {
    background-color: transparent;
    border: 1px solid #A3A3A3 !important;
    border-radius: 3px;
    /* color: #A3A3A3; */
    color: #000000;
    padding: 10px 14px;
}


.select2-container--default .select2-selection--single {
    border-color: #7E7E7E !important;
    background-color: transparent;
    border: 1px solid #A3A3A3 !important;

    border-radius: 3px;
}

/* .select2-container {
    width: 100% !important;
} */

.edit-cls {
    padding-top: 7px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000;
    line-height: 48px;
    font-size: 15px;
}

.floating-label label {
    color: #A3A3A3;
    font-weight: 400;
    font-size: 15px;
}

.all_components small {
    font-size: 15px;
    color: #666666;
}

.vendor-cls .setting-card {
    gap: 13px;
}


.header-title h3 {
    font-size: 20px;
    font-weight: 300;
}

.sub-content strong {
    font-weight: 400;
}

.sub-content span {

    font-weight: 300;
}

.sub-content {
    font-size: 17px;
    margin-bottom: 2px;
}




/* table css start */
/* Top-left corner */
thead th:first-child {
    /* border-top-left-radius: 10px; */
}

/* Top-right corner */
thead th:last-child {
    /* border-top-right-radius: 10px; */
}

/* Bottom-left corner (first <td> in first <tr> of tbody) */
tbody tr:first-child tr td:first-child {
    border-bottom-left-radius: 10px;
}

/* Bottom-right corner (last <td> in last <tr> of tbody) */
tbody tr:last-child td:last-child {
    /* border-bottom-right-radius: 10px; */
}

tbody tr:last-child td:first-child {
    /* border-bottom-left-radius: 10px !important; */
}



table {
    /* border-radius: 10px; */
}

table td {
    /* border: none !important; */
    border-color: #dee2e6 !important;
}

table .odd {
    /* background-color: #F7F7F7 !important;*/
    background-color: #fff !important;
}

table .even {
    background-color: #fff !important;
}

body table th {
    background-color: #fff !important;
    /* color: #fff !important;
    font-weight: 400 !important;
    font-size: 15px !important; */
}

body table strong {
    /* font-weight: 400 !important; */
}

.table thead tr th,
.table thead tr td {
    padding: 12px 10px;
    /* border: none; */

}



.table tbody tr td {
    font-size: 15px;
    vertical-align: middle;
    color: #000;
    padding: 8px 10px;
}

.dataTables_wrapper td .btn-dark {
    font-size: 12px;
    line-height: normal;
    border-radius: 4px;
    padding: 6px 10px;
    font-weight: 400;
    background-color: #000 !important;
    text-transform: capitalize;

}


.dataTables_wrapper .bg-success {
    background-color: transparent !important;
    color: #039855;
    font-size: 12px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 6px 10px;
    line-height: normal;
    border: none;
    border: 1px solid #039855;
}

.dataTables_wrapper .btn-danger {
    font-size: 12px;
    line-height: 12px;
    border-radius: 4px;
    padding: 6px 10px;
    margin-left: 3px;
    background-color: #D92D20;
}

.table.table-hoverable tr:hover {
    background: transparent !important;
}

table.dataTable.table-hover>tbody>tr:hover>* {
    box-shadow: unset !important;
}

table.dataTable {
    margin-top: 0 !important;
    /* border-collapse: collapse !important; */
}

/* pagination */

.pagination {
    padding-top: 0px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;

}

ul.pagination li .page-link {
    width: 36px;
    height: 36px;
    border-radius: 5px !important;
    color: #000;
    background-color: #F7F7F7;
    display: flex;
    justify-content: center;
    border-color: #F7F7F7;
    align-items: center;
}


.page-item.active .page-link {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.page-item.disabled .page-link {
    background-color: #F7F7F7;
    display: flex;
    justify-content: center;
    border-color: #F7F7F7;
    align-items: center;
}

.table-cls {
    padding: 0;
}

.table-cls .pagination {
    padding-right: 30px;
}

.table-bordered {
    border: none !important;
    border-bottom: 1px solid #dee2e6 !important;
}

/* .edit-cls .col-md-9,
.form-section .col-md-6 {
    padding: 0;
} */

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-webkit-autofill:active {
    transition: background-color 9999s ease-out;
    transition-delay: 9999s;
    background-color: #fff !important;
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    color: #000 !important;
}

textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
}


/* Start:: Bhavik Style */
.custom-switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 25px;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #CCCCCC;
    transition: 0.4s;
    border-radius: 25px;
    width: 62px;
    height: 32px;
}

.custom-switch .slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 3.5px;
    background: linear-gradient(to right, #fff, #999999);
    transition: 0.4s;
    border-radius: 50%;
}

.custom-switch input:checked+.slider {
    background-color: #000;
}

.custom-switch input:checked+.slider:before {
    transform: translateX(27px);
}

/* End:: Bhavik Style */


/* 25-06-250 */


.checkboxs {
    margin-bottom: -4px;
}


input[type="checkbox"].user_checkbox {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

/* Style the fake checkbox */
.checkboxs {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
}

.checkmarks {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1.8px solid #000;
    background-color: transparent;
    border-radius: 0px;
}

/* Show checkmark when input is checked */
input[type="checkbox"].user_checkbox:checked+.checkmarks::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 0px;
    width: 6px;
    height: 11px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}



.no-sort .checkmarks {
    border: 1.8px solid #fff;
}

.no-sort input[type="checkbox"].user_checkbox:checked+.checkmarks::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 0px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.active-cls {
    width: 100%;
    padding: 10px 12px 10px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    appearance: none;
    resize: vertical;
    border: 1px solid #A3A3A3 !important;
    display: flex;
    gap: 0px;
    align-items: center;
}

.profile-details {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 40px;
}

.profile-pic {
    width: 82px;
    height: 82px;
    border-radius: 100%;
    padding: 0;
}

.profile-pic img {
    width: 100%;
    border: 1px solid #eee;
    object-fit: cover;
    height: 100%;
    border-radius: 100%;
    background: transparent;
    padding: 0;
}

.profile-details-cls h4 {
    font-size: 23px;
    font-weight: 400;
    margin-bottom: 0;
}

.profile-details-cls p {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #000000 !important;
    margin-bottom: 0;
}

/* Hide native radio appearance */
.active-cls input[type="radio"].form-check-input {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #000;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
    vertical-align: sub;
}

/* Create inner dot when checked */
.active-cls input[type="radio"].form-check-input:checked::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Optional: better alignment */
.active-cls .form-check-label {
    margin-left: 5px;
    cursor: pointer;
    font-weight: 400;
    color: #A3A3A3;
}

/* Optional: spacing between radio options */
.active-cls .form-check {
    display: inline-block;
    margin-right: 20px;
}


.image-upload-box {

    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    cursor: pointer;
}

.image-upload-box img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.image-upload-box span {
    color: #A3A3A3;
    font-size: 15px;
    font-weight: 400;
}

.image-upload-box input {
    display: none;
}

.bg-danger {

    background-color: transparent !important;
    color: #d02a16;
    font-size: 12px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 6px 10px;
    line-height: normal;
    border: none;
    border: 1px solid #d02a16;
}



/* labour screen */

.labour-cost-card a {
    display: flex;
    gap: 15px;
    align-items: center;
}

.labour-cost-card .label-text {
    text-transform: lowercase;
    color: #000;
    line-height: 22px;
}

.labour-cost-card .icon-circle {
    margin-bottom: 0;
}

.labour-cost-card .icon-circle img {
    filter: brightness(0) invert(1);
    width: 30px;
}

.labour-cost-card .dropdown button {
    line-height: 0;
    color: #000 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.labour-cost .form-label {
    font-weight: 400;
    color: #000;
    font-size: 16px;
}

body .labour-cost .form-control {
    color: #000;
}

.image-upload-box {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.image-upload-box img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;

}

.image-upload-box span {
    color: #A3A3A3;
    font-size: 15px;
    font-weight: 400;
}

.image-upload-box input {
    display: none;
}

.currecey-create .floating-label label {
    left: 15px;
}

.configuration-cls .profile-pic img {
    width: 100%;
    border: 1px solid #eee;
    object-fit: cover;
    height: 100%;
    border-radius: 100%;
    background: #ffffff;
    padding: 0;
}

.configuration-form label {
    font-size: 22px;
    margin-bottom: 32px;
    font-weight: 500;
}

.configuration-cls span {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    margin-left: 17px;
}

.configuration-form-section h3 {
    margin-top: 30px;
}

.dash-cls-band {
    margin-left: 0px !important;
    font-size: 16px;
}




.dataTables_wrapper td .btn-sm:before,
.comman-btn a::before,
.comman-btn button::before,
.loginform button::before,
.loginpagebtn input::before {
    position: absolute;
    width: 0;
    height: 0;
    background-color: rgb(255, 255, 255, 0.2);
    content: "";
    left: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out 0s;
}

.dataTables_wrapper td .btn-sm:after,
.comman-btn a::after,
.comman-btn button::after,
.loginform button::after,
.loginpagebtn input::after {
    position: absolute;
    width: 0;
    height: 0;
    background-color: rgb(255, 255, 255, 0.2);
    content: "";
    right: 0;
    transition: all 0.3s ease-in-out 0s;
    top: 0;
}

.dataTables_wrapper td .btn-sm:hover:after,
.dataTables_wrapper td .btn-sm:hover:before,
.comman-btn a:hover::before,
.comman-btn a:hover::after,
.comman-btn button:hover::before,
.comman-btn button:hover::after,
.loginform button:hover::before,
.loginform button:hover::after,
.loginpagebtn input:hover::before,
.loginpagebtn input:hover::after {
    width: 100%;
    height: 100%;
}

.dataTables_wrapper td .btn-sm,
.comman-btn a,
.comman-btn button,
.loginform button,
.loginpagebtn input {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    border-color: transparent !important;
    list-style: circle;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show>.btn-dark.dropdown-toggle:focus {
    box-shadow: unset;
}





/* 26-06-25 */
.date-range {
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 6px;
    color: #6c757d;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px 8px 38px;
    height: 42px;
}

.calender-cls {
    position: relative;
    cursor: pointer;
}

.calender-cls span {
    position: absolute;
    right: 23px;
    top: 12px;
    color: #A3A3A3;
}

.date-range-section {
    margin-bottom: 30px;
}

.calender-cls input {
    font-weight: 400;
}

.date-range-section label {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
}

.flatpickr-calendar.animate.open {
    background-color: #F5F5F5;
    padding: 20px;
    width: 354px;
}

body .flatpickr-day {
    width: 54px;
    max-width: 54px;
    height: 44px;
    background-color: #fff;
    margin: 3px 2px;
    border-radius: 4px;
    font-size: 16px;
}

body .flatpickr-day:hover {
    background-color: #000;
    color: #fff;
}

body .flatpickr-day.today {
    background: #000;
    color: #fff;
    border-color: #000;
}

body span.flatpickr-weekday {
    font-size: 15px;
    background: transparent;
    font-weight: 400;
    color: #000000;
}

body .flatpickr-weekdays {
    height: 55px;
}

body .flatpickr-months .flatpickr-prev-month,
body .flatpickr-months .flatpickr-next-month {
    top: 23px;
    background: #fff;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

body .flatpickr-months .flatpickr-prev-month.flatpickr-prev-month {
    left: 23px;
}

body .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
    right: 35px;
}

.select-unit {
    padding: 0;
    margin-bottom: 10px !important;
}

.select-unit label {
    left: 13px !important;
}

.data-table-section-cls {
    padding: 0 16px;
    gap: 10px;
}

.input-group-bands {
    width: 103px !important;
    max-width: 103px;
}


.data-table-section-cls .select2-container {
    width: 100% !important;
}

.floating-label.select-unit.btn-cls-new {
    width: fit-content;
}

.flatpickr-input[readonly] {
    color: #000;
}

body .flatpickr-day.selected {
    background: #000;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    border-color: #000;
}

.btn-cls-new a {
    height: 47px;
}


.purchase-cls .btn-close {
    position: absolute;
    background-color: #000000;
    height: 21px;
    border-radius: 4px;
    opacity: 1;
    width: 21px;
    right: 17px;
    border: none;
    top: 17px;
    padding: 0 !important;
    margin: 0 !important;
    top: 17px;
}

.purchase-cls .btn-close span {
    display: flex;
    /* justify-self: center; */
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 17px;
    border: none;
}

.purchase-cls .modal-content {
    padding: 30px;
    border-radius: 16px;
    width: 644px;
}

.purchase-cls .modal-header {
    justify-content: center;
    padding: 0;
    border: none;
}

.purchase-cls h5 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 22px;
}


.purchase-cls .modal-body {
    padding: 0;
}

.purchase-cls ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.purchase-cls ul li {
    height: 45px;
    font-size: 18px;
    font-weight: 300;
    border-bottom: 1px solid #D9D9D9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.purchase-cls ul li strong {
    font-size: 18px;
    font-weight: 500;
}

.purchase-cls .modal-footer {
    padding: 0;
    border: none;
}

.purchase-cls ul li:last-child {
    border-bottom: none;
}


.sales-team h3 {
    font-size: 23px;
    font-weight: 300;
    margin-bottom: 0;
    margin-top: 2px;
}

.sales-details .setting-card {
    flex-direction: column;
    padding: 21px;
    margin-bottom: 45px;
}

.sales-details .setting-card p {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
    color: #000000;
}

.preview-cls {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.preview-cls h4 {
    font-size: 15px;
    margin: 0;
    font-weight: 500;
}

.preview-cls .img-box img {
    height: 140px;
    width: 190px;
    object-fit: cover;
}


.download-cls {
    display: flex;
    justify-content: space-between;
}

.download-cls .btn-dark {
    gap: 6px;
    align-items: center;
}

.preview-cls button {
    font-size: 15px;
    margin: 0;
    font-weight: 500;
    background: transparent;
    border: none;
    padding: 0;
}


.preview-popup .setting-card {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-bottom: 30px;
}

.preview-popup h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
}

.preview-popup ul li strong {
    font-size: 17px;
}

.preview-popup ul li {
    font-size: 17px;
}

.preview-popup .modal-content {
    width: 685px;
    font-family: 'Roboto';
}



/* 27-06-25 */
.add-quatation h3 {
    margin-bottom: 0;
}

.heading-quatation h3 {
    font-weight: 500;
}

.unit-cls {
    position: absolute;
    top: -30px;
    font-size: 15px;
    font-weight: 300;
}

/* 
.labour-section {
    margin-top: 50px;
} */



a {
    text-decoration: none !important;
}

.stockiest-bands {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.accordien-cls,
.stokiest-cls {
    gap: 18px;
    display: flex;
    align-items: center;
}

.stockiest-bands h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
    width: auto;
}

.stokiest-cls {
    margin-right: 18px
}

body .stokiest-cls-wraps .accordion-button {
    padding: 10px 27px;
    color: #fff !important;
    background-color: #000 !important;
}

.stokiest-cls-wraps .accordion-button::after {
    filter: invert(100%) brightness(200%);
}

.stokiest-cls-wraps .accordion-button:focus {
    border: none !important;
    box-shadow: none !important;
}

body .stokiest-cls-wraps .accordion-item {
    margin-bottom: 17px;
}

body .stokiest-cls-wraps .accordion-collapse {
    font-family: 'Roboto';
}

.stokiest-cls-wraps .table>thead th {
    background: #fff !important;
    color: #000 !important;
}

body .stokiest-cls-wraps .stokiest-cls-wraps table strong {
    font-weight: 600 !important;
}

body .stokiest-cls-wraps .accordion-body {
    background: transparent;
    padding: 0;
}


.stokiest-cls-wraps .table tbody .even td {
    background: #F7F7F7;
}

.stokiest-cls-wraps .accordion-item {
    border: none;
}

.stokiest-cls-wraps table.dataTable {
    border: 1px solid #D1D1D1;
}

.currency-wraps {
    display: flex;
    align-items: center;
}

.currency-wraps span,
.edit-cls-popup span {
    font-size: 17px;
}

.edit-cls-popup {
    position: relative;
}

.edit-cls-popup span {
    position: absolute;
    top: 11px;
    right: 19px;
}

.edit-cls-popup {
    position: relative;
}

.popup-input-box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    background: white;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    width: 204px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0px 3px 2px 0px rgba(96, 96, 96, 0.3);
    border: none;
    height: auto;
    z-index: 999999;
}

.edit-cls-popup button {
    background: transparent;
    padding: 0;
    border: 0;
}

.popup-input-box label {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 12px;
}

.popup-input-box input {
    border: 1px solid #D1D1D1 !important;
    border-radius: 6px;
    color: #000;

}

.popup-input-box input::placeholder {
    color: #000;
}

.popup-input-box button {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    margin-top: 12px;
}

.popup-input-box button:hover {
    background-color: transparent;
    border: 0;
    color: #000;
}

td.price-cls input {
    width: 75px;
    border: none;
    padding: 4px 13px;
    border: 1px solid #D1D1D1;
    font-size: 13px;
    background: transparent;
}

.complete-cls {
    background-color: #039855 !important;
}

/* .price-cls {
    display: flex;
    gap: 10px;
} */
.ok-cls {
    margin-left: 10px;
}

.hidden-row {
    transition: all 0.3s ease;
}

body .hidden-row td {
    background: #fff !important;
}

body .table-row-cls {
    width: 402px !important;
    margin-left: 50px !important;
}

body .table-row-cls th {
    background: #000 !important;
    color: #fff !important;
}

.preview-popup ul li strong {
    font-size: 17px;
}

.preview-popup ul li {
    font-size: 17px;
}

.preview-popup .modal-content {
    width: 685px;
}

.gc-button {
    display: flex;
    gap: 2px;

}

.gc-button a {
    height: 100%;

}

.popup-preview button {
    background: transparent;
    padding: 0;
    border: none;
}



/* 28-06-25 */

.dashbourd-cls .setting-card {
    justify-content: center;
    margin-bottom: 30px;

}

.componets-cls.vendor-cls.labour-section {
    margin-top: 10px;
}

body #bomDoughnutChart,
#stockoutDoughnutChart {
    width: 200px !important;
    height: 200px !important;
}

#bomDoughnutChart {
    width: 100% !important;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    height: auto !important;
    cursor: pointer;
}


.chart-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
    gap: 30px
}

.label-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
}

.label-box {
    width: 14px;
    height: 14px;
    display: inline-block;
    border-radius: 2px;
}

.yellow-box {
    background-color: #F1C40F;
}

.grey-box {
    background-color: #A9A9A9;
}

.chart-wrapper h3 {
    margin-bottom: 0;
    font-size: 26px;
}

/* Chrome, Safari, Edge */
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

/* Firefox */
input[type="date"]::-moz-focus-inner {
    border: 0;
}

/* Optional: remove the clear button in Edge/IE */
input[type="date"]::-ms-clear {
    display: none;
}




/* Left panel default styling (visible on large screens) */
.leftbar-panel {
    width: 316px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Right panel default layout */
.dass-midd-padd {

    transition: all 0.3s ease;
}

/* ===== CSS ===== */
/* .select2-container {
		width: 100% !important;
	} */
/* .select2-container--focus {
    width: 100% !important;
}

.select2-container--open {
    width: auto !important;
} */
.select2-container {
    width: 100% !important;
}

.calender-wraps {
    display: flex;
    gap: 20px;
}

.calender-cls {
    margin-bottom: 0;
    width: 200px;
}



/* 02-07-25 */
#bulk_delete_button {
    position: absolute;
    top: 95px;
}

.btn-dark {
    background-color: #000 !important;
}

.gc-purchase-additem {
    height: 100%;
}

.gc-purchase-additem button {
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.calender-cls-new {
    margin-right: 16px;
}

.gc-login-section {
    padding: 0px;
    border-radius: 0px;
    background-color: transparent;
    box-shadow: none;
    margin-bottom: 130px;
}

.table.table-hover tr:hover {
    background: #EEEEEE;
}

table.table-bordered.dataTable th,
table.table-bordered.dataTable td {
    border-bottom: none;
}

.table thead th {
    border-bottom: 1px solid #dee2e6 !important;
}

#componentTable {
    table-layout: fixed;
}



#componentTable th:nth-child(6),
/* 4th column is Description */
#componentTable td:nth-child(6) {
    width: 150px !important;
    /* adjust as per Country column */
    white-space: normal !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    /* overflow: hidden;
        text-overflow: ellipsis; */
}

/* 23-05-25 */

/* .edit-cls-popup {
    float: right;
} */

.gc-approved-quotes .dataTables_wrapper {
    width: 100% !important;
}

.gc-approved-quotes .table tbody tr td {
    word-break: break-word !important;
    word-wrap: break-word !important;
    white-space: normal !important;
}

/* .svgImg{
    width: 100%;
}
.svgImg svg{
    max-height: 300px;
    margin: 0 auto;
    width: 100%;
}
.accordien-cls .systemimg_single{
    max-height: 50px !important;
}
.accordien-cls svg{
    max-height: 50px !important;
    margin: 0 auto;
    width: 100%;
}

*/


.newsystemwhitebox {
    width: 100%;
    padding: 20px 20px 50px 20px;
    -webkit-box-shadow: 0 3px 2px 0 rgba(96, 96, 96, .3);
    -moz-box-shadow: 0 3px 2px 0 rgba(96, 96, 96, .3);
    box-shadow: 0 3px 2px 0 rgba(96, 96, 96, .3);
    position: relative;
    background: #fbfbfb;
    border-radius: 12px;
    margin-bottom: 30px;
}

.systemboxpadd {
    position: relative;
    height: 100%;
}

.newsystemwhitebox .systemimg {
    display: grid;
}

.systemsize {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
}

.systemprieditpos {
    position: absolute;
    left: 0;
    bottom: 17px;
    width: 100%;
}

.systemflex {
    padding: 0 20px 0 15px;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    width: 100%;
}

.boxmaxheight {
    height: 250px;
    max-width: 443px;
}



.purchase-cls.preview-popup .modal-header {
    background: #FBFBFB;
    border-radius: 12px;
    -webkit-box-shadow: 0 3px 2px 0 rgba(96, 96, 96, .3);
    -moz-box-shadow: 0 3px 2px 0 rgba(96, 96, 96, .3);
    box-shadow: 0 3px 2px 0 rgba(96, 96, 96, .3);
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.accordion-thumb-img {
    width: 100px;
    height: 100px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-thumb-img .accordion-svg {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-thumb-img .accordion-svg svg {
    max-height: 100px !important;
}

.accordion-thumb-img .systemimg_single {
    height: 100px !important;
}

.quatation-preview-box {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}


.quatation-preview-box .priviewgraybg {
    background: #FBFBFB;
    border-radius: 12px;
    -webkit-box-shadow: 0 0px 2px 0 rgba(96, 96, 96, .3);
    -moz-box-shadow: 0 0px 2px 0 rgba(96, 96, 96, .3);
    box-shadow: 0 0px 2px 0 rgba(96, 96, 96, .3);
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.quatation-preview-box .previewbox {
    background: #F4F4F4;
    padding: 20px 20px 10px 20px;
    border-radius: 12px;
    -webkit-box-shadow: 0 3px 2px 0 rgba(96, 96, 96, .3);
    -moz-box-shadow: 0 3px 2px 0 rgba(96, 96, 96, .3);
    box-shadow: 0 3px 2px 0 rgba(96, 96, 96, .3);
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid #eaeaea;
}

table.table-bordered.dataTable td {
    cursor: pointer;
}


table.gc_vendor_item_table,
table.gc_vendor_item_table th,
table.gc_vendor_item_table td {
    border: none;
}

table.gc_vendor_item_table td {
    padding: 4px 8px !important;
}



@media screen and (max-width:767px) {
    .quatation-preview-box .purchase-cls ul li:last-child {
        border-bottom: 1px solid #D9D9D9;
    }
}



/* 08-04-25 */
.logo .logo-cls h1 {
    font-size: 55px;
}

.labour-cost-card .icon-circle img {
    filter: unset;
    font-size: 0;
}

.edit-table {
    table-layout: inherit !important;
}

.edit-table .popup-input-box {
    position: inherit !important;
}

.table-quantity-editable {
    display: flex;
    gap: 5px;
    align-items: center;
}

.table-quantity-editable i {
    font-size: 14px;
}

@media only screen and (max-width: 430px) {
    .setting-card {
        gap: 10px;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 575px) {
    .setting-card-col {
        max-width: 100%;
    }
}

@media only screen and (max-width: 1199px) {

    .add-quatation-cls .col-lg-8 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

.new-itm {
    padding: 30px 15px;
}

.componet-wraps {
    padding: 0;
}

.compl-wraps {
    margin-left: 15px;
}

/* 26-08-25 */



.bom,
.purchas {
    display: flex;
    gap: 5px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.bom strong,
.purchas strong {
    flex-shrink: 0;
    width: 81px;
    text-align: left;
}

.bom p,
.purchas p {
    text-align: left;
    margin-bottom: 0px;
}

.swal2-html-container h6:last-child {
    font-size: 20px;
    margin-top: 20px;
    color: #d4302e;

}

h2#swal2-title {
    color: #d4302e;
}