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


/* font-family */

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-ExtraBold.eot');
    src: local('Inter ExtraBold'), local('Inter-ExtraBold'), url('../fonts/Inter-ExtraBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Inter-ExtraBold.woff2') format('woff2'), url('../fonts/Inter-ExtraBold.woff') format('woff'), url('../fonts/Inter-ExtraBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Light.eot');
    src: local('Inter Light'), local('Inter-Light'), url('../fonts/Inter-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Inter-Light.woff2') format('woff2'), url('../fonts/Inter-Light.woff') format('woff'), url('../fonts/Inter-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-ExtraLight.eot');
    src: local('Inter ExtraLight'), local('Inter-ExtraLight'), url('../fonts/Inter-ExtraLight.eot?#iefix') format('embedded-opentype'), url('../fonts/Inter-ExtraLight.woff2') format('woff2'), url('../fonts/Inter-ExtraLight.woff') format('woff'), url('../fonts/Inter-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.eot');
    src: local('Inter Bold'), local('Inter-Bold'), url('../fonts/Inter-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Inter-Bold.woff2') format('woff2'), url('../fonts/Inter-Bold.woff') format('woff'), url('../fonts/Inter-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Black.eot');
    src: local('Inter Black'), local('Inter-Black'), url('../fonts/Inter-Black.eot?#iefix') format('embedded-opentype'), url('../fonts/Inter-Black.woff2') format('woff2'), url('../fonts/Inter-Black.woff') format('woff'), url('../fonts/Inter-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Thin.eot');
    src: local('Inter Thin'), local('Inter-Thin'), url('../fonts/Inter-Thin.eot?#iefix') format('embedded-opentype'), url('../fonts/Inter-Thin.woff2') format('woff2'), url('../fonts/Inter-Thin.woff') format('woff'), url('../fonts/Inter-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.eot');
    src: local('Inter Medium'), local('Inter-Medium'), url('../fonts/Inter-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Inter-Medium.woff2') format('woff2'), url('../fonts/Inter-Medium.woff') format('woff'), url('../fonts/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.eot');
    src: local('Inter Regular'), local('Inter-Regular'), url('../fonts/Inter-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Inter-Regular.woff2') format('woff2'), url('../fonts/Inter-Regular.woff') format('woff'), url('../fonts/Inter-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.eot');
    src: local('Inter SemiBold'), local('Inter-SemiBold'), url('../fonts/Inter-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Inter-SemiBold.woff2') format('woff2'), url('../fonts/Inter-SemiBold.woff') format('woff'), url('../fonts/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #000;
    --secondary: #666;
    --white: #ffffff;
    --black: #000000;
    --gray: #F6F6F8;
    --lightgray: #D9D9D9;
}


/* global  */

body {
    font-family: 'Inter';
    background: var(--gray);
    font-size: 14px;
    font-weight: 500;
}

.error>.validation-error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
}

.error>.validation-error2 {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

a {
    text-decoration: none;
    color: var(--black);
}

img {
    max-width: 100%;
}

.w-100 {
    width: 100%;
}

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

.custom-btn {
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    background: var(--primary);
    border: 1px solid var(--primary);
    cursor: pointer;
    color: var(--white);
    text-transform: capitalize;
    min-width: 136px;
    height: 40px;
    text-align: center;
    transition: all .3s ease;
}

.custom-btn:hover {
    background: transparent;
    color: var(--primary);
}

.custom-link {
    font-weight: 500;
    display: block;
    text-align: center;
    transition: all .3s ease;
}

.custom-link:hover,
.back-btn:hover {
    color: var(--primary);
}

.back-btn {
    font-weight: 400;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: all .3s ease;
}

.back-btn img {
    margin-right: 10px;
}

.search-wrapper {
    display: flex;
    align-items: center;
}

.search-wrapper .dropdown-toggle {
    margin-right: 20px;
    border-radius: 5px;
    background: var(--white);
    padding: 8px 10px;
    display: flex;
    align-items: center;
}

.search-wrapper .icon {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background: #DFE1E8;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.category-dropdown .dropdown-menu.show {
    max-height: 350px;
    overflow: auto;
}

.select2-selection--single {
    padding: 7px 10px;
    height: 100% !important;
    border: 1px solid #d9d9d9 !important;
    background-image: url(../images/down-arrow-icon.svg);
    background-repeat: no-repeat;
    background-position: center right 10px;
}

.select2-selection__arrow {
    display: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--primary) !important;
}

.select-with-label .select2-selection--single {
    border: none !important;
    border-left: 1px solid #d9d9d9 !important;
    border-radius: 0px 5px 5px 0px !important;
}

.category-dropdown .select2-container {
    z-index: 9 !important;
}

.select-with-label .select2-container {
    width: 130px !important;
    z-index: 9 !important;
}

.custom-modal .select2-container {
    width: 100% !important;
}

.select2-container {
    z-index: 1060 !important;
}

.tab-wrapper .nav-tabs-wrap {
    padding: 12px 15px;
    background-color: var(--white);
}

.tab-wrapper .nav-tabs {
    max-width: 333px;
    margin: 0 auto;
    border: 1px solid var(--lightgray);
    border-radius: 9px;
    display: flex;
    align-items: center;
    padding: 4px;
    justify-content: space-between;
    column-gap: 10px;
}

.tab-wrapper .nav-tabs .nav-link {
    padding: 10px 29px;
    width: 150px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    border: none;
    outline: none;
    background-color: transparent;
    border-radius: 5px;
}

.tab-wrapper .nav-tabs .nav-link.active {
    background-color: var(--primary);
    color: var(--white);
}

input[type="date"] {
    background-repeat: no-repeat;
    background-position: center right 10px;
    padding: 0px 15px;
    height: 43px;
    display: flex;
}

.timepicker.form-field {
    background-image: url(../images/clock-icon.svg);
    background-repeat: no-repeat;
    background-position: center right 10px;
    padding: 0px 15px;
    height: 43px;
    display: flex;
    font-weight: 500;
}

input[type="date"] {
    background-image: url(../images/calendars-icon.svg);
}

input[type="time"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-calendar-picker-indicator {
    background: none;
}

.nav-pills .nav-link {
    color: var(--black) !important;
    background-color: transparent !important;
    font-weight: 600;
    text-align: left;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8px 0px;
}

.number-wrapper {
    position: relative;
}

.number-wrapper:before {
    content: "";
    position: absolute;
    height: 70%;
    width: 1px;
    left: 12px;
    top: 13px;
    border: 1px dashed var(--primary);
}

.nav-pills .nav-link.active .number,
.nav-pills .show>.nav-link .number {
    background: var(--primary);
    color: var(--white);
}


/* custom radio */

.custom-radio input[type="radio"] {
    opacity: 0;
    position: absolute;
}

.custom-radio label {
    margin: 0px;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    vertical-align: top;
}

.custom-radio label:before {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #666;
    display: inline-block;
    vertical-align: top;
    border-radius: 100%;
    position: absolute;
    left: 0;
}

.custom-radio input[type="radio"]:checked+label:before {
    opacity: 1;
    border-color: var(--primary);
}

.custom-radio label:after {
    content: '';
    left: 4px;
    top: 4px;
    width: 12px;
    height: 12px;
    position: absolute;
    opacity: 0;
    background: var(--primary);
    border-radius: 50%;
}

.custom-radio input:checked+label:after {
    opacity: 1;
}

.manual-fields .custom-radio {
    width: 20%;
}

.manual-fields .radio-wrapper {
    display: flex;
    align-items: baseline;
}


/* custom-switch */

.custom-switch {
    margin-left: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 14px;
    margin: 0;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ebebeb;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 0;
    bottom: -1px;
    background-color: var(--lightgray);
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: rgb(38 65 110 / 50%);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary);
}

input:checked+.slider:before {
    -webkit-transform: translateX(17px);
    -ms-transform: translateX(17px);
    transform: translateX(17px);
    background-color: var(--primary);
}


/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


/* custom-modal */

.custom-modal .modal-dialog {
    max-width: 435px;
}

.custom-modal .btn-close {
    background: url(../images/close-icon.svg);
    opacity: 1;
    background-size: contain;
    padding: 0;
    width: 22px;
    height: 22px;
    background-position: center;
    background-repeat: no-repeat;
}

.custom-modal .modal-header {
    padding: 20px !important;
}

.custom-modal .meassage {
    font-weight: 600;
    font-size: 16px;
    color: var(--black);
    text-align: center;
}

.logoutModal .modal-header {
    border-bottom: none;
}

.modal-footer {
    justify-content: center;
    border: none;
    padding-bottom: 40px;
}

.custom-modal .custom-btn {
    padding: 8px 55px;
}

.bg-green {
    border-radius: 5px;
    background: #CCEBE2;
    color: #08A87C;
}

.bg-green:hover {
    background: #08A87C;
    color: var(--white);
}

.btn-no {
    border-radius: 5px;
    background: #FFF3F4;
    color: #E83647;
}

.btn-gray {
    background: #DFE1E8;
    color: #26416E;
}

.btn-no:hover {
    background: #E83647;
    color: var(--white);
}

.btn-cancel {
    background: var(--lightgray);
    color: var(--primary);
    border-color: var(--lightgray);
}

.common-dropdown {
    border: 1px solid var(--lightgray);
    border-radius: 5px;
    background-color: var(--white);
    box-shadow: 12px 13px 53px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.enterTemplateModal .custom-dropdown {
    border-radius: 5px;
    border: 1px solid var(--Gray-02, var(--lightgray));
    background: var(--White);
    box-shadow: 12px 13px 53px 0px rgba(0, 0, 0, 0.05);
    margin-top: 10px;
}

.label-text {
    margin-right: 10px;
}

.title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-wrapper .title {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    color: var(--black);
}

.title-wrapper .title img {
    margin-right: 10px;
}

.input-title {
    display: flex;
}

.input-title .name-field {
    padding: 10px;
    border: 1px solid var(--lightgray);
    background: #FBFBFB;
    border-radius: 5px 0px 0px 5px;
    border-right: 0;
}

.input-title .form-field {
    border-radius: 0px 5px 5px 0px;
}


/* custom-tab */

.view-details .white-bg.custom-tab {
    padding: 0px;
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    border: none;
}

.custom-tab .nav-tabs {
    border-bottom: none;
    column-gap: 18px;
}

.custom-tab .nav-tabs .nav-link {
    border-bottom: 2px solid transparent;
    font-weight: 600;
    color: var(--secondary);
    padding: 15px;
    border-radius: 0;
    border: none;
}

.custom-tab .nav-tabs .nav-item.show .nav-link,
.custom-tab .nav-tabs .nav-link.active {
    background: #DFE1E8;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}


/* login-flow  */

.auth-wrapper {
    max-width: 1010px;
    background: var(--white);
    margin: 65px auto 0px;
    display: flex;
}

.image-pattern {
    width: 50%;
    background-image: url(../images/auth-pattern.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-content {
    padding: 60px 84px;
    width: 50%;
}

.auth-title-wrapper {
    margin-bottom: 35px;
}

.auth-title-wrapper .title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
}

.auth-title-wrapper span {
    font-weight: 500;
    color: var(--secondary);
}

.custom-form .input-wrapper {
    margin-bottom: 30px;
    position: relative;
}

.custom-form label {
    display: block;
    color: var(--secondary);
    margin-bottom: 15px;
}

.custom-form .custom-field {
    border-radius: 5px;
    border: 1px solid #D4D4D4;
    padding: 14px 15px;
    width: 100%;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding: 14px 50px 14px 14px !important;
}

.custom-form .password-icon {
    background-image: url(../images/eye-close.png);
    background-repeat: no-repeat;
    background-position: center right 10px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    padding: 20px;
    cursor: pointer;
}

.open-eye {
    background-image: url(../images/open-eye-icon.png) !important;
}


/* header */

header {
    background: var(--primary);
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.copyright {
    border-top: 1px solid var(--lightgray);
    text-align: center;
    padding: 16px 10px;
    font-weight: 400;
    background: var(--white);
    color: var(--secondary);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
}


/* schedule job Tab content */

.schedule-job-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0px;
    gap: 15px 11px;
}

.category-dropdown .dropdown-toggle {
    padding: 11px 15px;
    border: 1px solid var(--lightgray);
    background-color: var(--white);
    box-shadow: 12px 13px 53px 0px rgba(0, 0, 0, 0.05);
}

.date-range-wrap {
    border: 1px solid var(--lightgray);
    border-radius: 5px;
    background-color: var(--white);
    box-shadow: 12px 13px 53px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    height: 45px;
    max-width: 230px;
}

.date-range-wrap span {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
    border-right: 1px solid var(--lightgray);
    padding: 11px 14px;
}

.date-range-wrap .input-date-wrap {
    padding: 10px 0 10px;
    display: flex;
    align-items: center;
}

.date-range-wrap .input-date-wrap {
    background-image: url(../images/calendar-icon.svg);
    background-repeat: no-repeat;
    background-position: center right 8px;
}

.date-range-input {
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    border: none;
    background: none;
    outline: none;
    color: var(--black);
    padding: 10px 40px 10px 10px;
}

.query-btn {
    padding: 0px 37px;
    height: 45px;
    border-radius: 5px;
    background: var(--primary);
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
    border: 1px solid var(--primary);
    box-shadow: none !important;
    transition: 0.3s ease-in-out;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width:1400px) {
    .query-btn {
        padding: 0px 16px;
    }
}

.query-btn:hover {
    background-color: transparent;
    color: var(--primary);
}


/* table  */

.white-bg {
    box-shadow: 12px 13px 53px 0px rgba(0, 0, 0, 0.05);
    background-color: var(--white);
    margin-top: 20px;
}

.custom-table {
    position: relative;
    /* height: 590px; */
    overflow: auto;
}

::-webkit-scrollbar {
    height: 3px;
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #efefef;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
}

table {
    width: 100%;
}

table thead {
    background: rgba(38, 65, 110, 0.10);
}

table thead tr {
    border: none;
}

table thead th {
    padding: 12px 10px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

table thead th a {
    color: var(--primary);
}

table tbody tr {
    border-bottom: 1px solid #F3F3F3;
    padding: 11px 30px;
}

table tbody td {
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
    /*    white-space: nowrap;*/
    max-width: 200px;
}

.table-wrapper table thead th:first-child,
.table-wrapper table tbody td:first-child {
    padding-left: 30px;
}

.query-row td {
    padding: 50px;
}

.custom-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--secondary);
    border-radius: 4px;
    cursor: pointer;
}

.custom-checkbox:checked {
    background-color: var(--primary);
    border-color: var(--primary);
    background-image: url(../images/check-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.status-btn {
    width: 103px;
    height: 30px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    border: none;
    outline: none;
    text-transform: capitalize;
}

.green-btn {
    background: rgba(8, 168, 124, 0.20);
    color: #08A87C;
}

.red-btn {
    background: #FFF3F4;
    color: #E83647;
}

.action-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 10px;
}

.action-btn {
    width: 30px;
    height: 30px;
    background-color: #F3F3F3;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
    cursor: pointer;
}

.table-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px 20px;
    /* position: absolute;
    bottom: 0; */
    width: 100%;
}

.table-wrapper {
    /* max-height: 500px; */
    overflow: auto;
}

.wrap {
    display: flex;
    align-items: center;
}

.wrap p {
    margin: 0;
    padding: 0;
    margin-left: 20px;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 500;
}

.blue-bg-dropdown {
    width: 190px;
    padding: 0 !important;
}

.blue-bg-dropdown .dropdown-toggle {
    background-color: var(--primary);
    color: var(--white);
    background-image: url(../images/down-arrow-white.svg);
    border-radius: 5px;
    padding: 7px;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center right 10px;
}

.blue-bg-dropdown .dropdown-toggle.show {
    background-image: url(../images/up-arrow-white.svg);
}

.blue-bg-dropdown .dropdown-toggle:hover {
    color: var(--white);
}

.blue-bg-dropdown .dropdown-menu.show {
    width: 100%;
}

.pagination {
    margin-bottom: 0;
}

.pagination .page-item {
    padding: 0;
    /* margin-left: 15px; */
}

.pagination .page-item.active .page-link {
    background-color: #DFE1E8;
    border: 1px solid var(--primary);
    background-color: #DFE1E8;
    color: var(--primary);
}

.pagination .page-link {
    min-width: 35px;
    min-height: 35px;
    border: 1px solid var(--lightgray);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    cursor: pointer;
}

.pagination .page-link:hover {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
}

.query-box {
    border: 1px dashed var(--lightgray);
    background: #F9F9FF;
    border-radius: 5px;
    padding: 32px;
    max-width: 530px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.query-box .icon {
    width: 78px;
    height: 78px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #DFE1E8;
    border-radius: 50%;
    margin-bottom: 20px;
}

.query-box p {
    max-width: 350px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--secondary);
    white-space: initial;
}


/* view-detail */

.view-details .white-bg {
    padding: 18px;
    border-radius: 5px;
}

.view-details .status {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
}

.view-details .status .bg-green {
    margin-left: 10px;
    padding: 9px 24px;
    font-size: 12px;
}

.view-details .tab-content {
    width: 100%;
}

.view-details .custom-height {
    height: 590px;
    align-items: flex-start;
}

.view-details .w-33 li {
    width: 33.33%;
}

.view-details .table-heading {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 10px;
}

.view-details .image-wrapper {
    display: flex;
    align-items: center;
}

.view-details .image-wrapper .image-content {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

.view-details .image-content a {
    text-decoration: underline !important;
}

.table-content {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E6E6E6;
}

.table-content ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.table-content li {
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 20%;
    color: var(--secondary);
    font-weight: 500;
}

.table-content li span {
    color: var(--black);
    margin-top: 10px;
}

.custom-wrap {
    white-space: nowrap;
}

.job-history-tab {
    margin-top: 16px;
}

.download-btn .custom-dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 150px;
    border-radius: 5px;
    background: var(--primary);
    padding: 12px 15px;
    position: relative;
}

.download-btn .custom-dropdown span {
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
}

.download-btn .custom-dropdown .dropdown-toggle {
    width: 100%;
    background-color: transparent;
    padding: 12px 20px;
    position: absolute;
    right: 0;
    height: 100%;
    border-left: 1px solid #DFE1E8;
    border-radius: 0;
    background-image: url(../images/down-arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center right 10px;
    background-size: 14px;
}

.bottomTablewrap .table-footer {
    min-height: 76px;
}

.bottomTablewrap .table-wrapper {
    min-height: 40vh;
}

.download-btn .custom-dropdown .dropdown-toggle {
    background-image: url(../images/down-arrow-white.svg);
}

.download-btn .custom-dropdown .dropdown-toggle.show {
    background-image: url(../images/up-arrow-white.svg);
}


/* setting */

.setting-wrapper .title {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    margin: 0px -10px;
    padding: 0px 20px 20px;
}

.setting-tab {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.setting-tab button {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

.custom-tabbing {
    display: flex;
    column-gap: 15px;
}

.custom-tabbing .sidebar {
    width: 20%;
}

.custom-tabbing .content-box {
    width: 80%;
}

.custom-tabbing .nav-item {
    margin-bottom: 20px;
    width: 100%;
}

.custom-tabbing .nav-item .nav-link {
    padding: 10px;
    text-align: left;
    white-space: nowrap;
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
}

.custom-tabbing .nav-item.show .nav-link,
.custom-tabbing .nav-link.active,
.custom-tabbing .nav-link:focus,
.custom-tabbing .nav-link:hover {
    background: var(--primary);
    color: var(--white);
    border-radius: 5px;
}

.custom-tabbing .content-area {
    padding: 20px 10px;
}

.custom-tabbing .white-bg {
    min-height: 730px;
    border-radius: 5px;
    box-shadow: 12px 13px 53px 0px rgba(0, 0, 0, 0.05);
    padding: 20px 10px;
}

.custom-tabbing p {
    font-weight: 500;
    color: var(--secondary);
}


/* manual-fields */

.manual-fields {
    margin-bottom: 20px;
}

.manual-fields .action {
    display: flex;
    column-gap: 10px;
    justify-content: flex-end;
}

.manual-fields .custom-btn {
    padding: 8px 34px;
    min-width: 135px;
}

.manual-fields .details {
    display: flex;
    align-items: center;
    border-top: 1px solid #F3F3F3;
    padding: 15px 15px 0px;
    margin: 15px -20px 0;
}

.manual-fields .white-bg {
    padding: 18px;
}

.manual-fields .list {
    margin-left: 10px;
    border-left: 1px solid var(--lightgray);
    padding-left: 10px;
    margin-right: 10px;
}

.manual-fields .list li {
    border-radius: 33px;
    background: #DFE1E8;
    display: inline-flex;
    padding: 6px 8px;
    align-items: center;
    gap: 7px;
    color: #666;
    font-weight: 500;
}

.manual-fields .custom-form label {
    color: var(--black);
}

.manual-fields .disable-field {
    border-radius: 5px;
    border: 1px solid var(--Gray-02, var(--lightgray));
    background: var(--Gray-02, var(--lightgray));
    font-style: italic;
}

.form-field {
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid var(--lightgray);
    background: #FBFBFB;
    width: 100%;
    resize: none;
}

.manual-fields .checkbox-wrapper label {
    display: flex;
    align-items: center;
}

.manual-fields .checkbox-wrapper label .custom-checkbox {
    margin-right: 10px;
}

.manual-fields .inner-box {
    display: inline-flex;
    align-items: center;
}

.manual-fields .time-wrapper {
    display: flex;
    column-gap: 15px;
}

.manual-fields .number {
    height: 27px;
    width: 27px;
    background: var(--lightgray);
    display: inline-flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.frequency-data .dropdown-toggle {
    padding: 0px !important;
    background-color: transparent;
    background-position: center right 3px !important;
}

.net-weight .form-field {
    padding: 10px;
    border-radius: 0px;
}

.net-weight .weight {
    width: 60%;
}

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

.weight .select2-selection--single {
    border-radius: 5px 0px 0px 5px !important;
}

.grams .select2-selection--single {
    border-radius: 0px 5px 5px 0px !important;
}

.net-weight .grams {
    border-radius: 0px 5px 5px 0px;
    width: 40%;
}

.gram {
    border-left: 0px;
    border-right: 0px;
    width: 20%;
}

.net-weight .dropdown-toggle {
    padding: 0;
    background-color: transparent;
    background-position: center right 0px;
}

.frequency-data .input-title {
    width: 210px;
}

.manual-modal {
    text-align: center;
}

.manual-modal img {
    margin: 20px 0px 40px;
}

.manual-modal .modal-footer {
    flex-wrap: nowrap;
}

.manual-modal .custom-btn {
    padding: 10px 25px;
    font-size: 14px;
}

.manual-modal .download-btn .custom-dropdown {
    padding: 9px 15px;
}

.page-content {
    margin-bottom: 20px;
    padding-top: 66px;
}

.swal2-title {
    color: var(--black);
}

.download-btn .custom-dropdown.dropdowncustomwrap .dropdown-toggle {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-size: 16px;
    background-position: center right 12px;
}

.vatvalue-dropdown.common-dropdown.select-with-label {
    background-color: transparent;
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--lightgray);
}

.vatvalue-dropdown.common-dropdown.select-with-label .select2-selection--single {
    border: none !important;
}

.dropdownHeightwrap .select2-selection--single {
    height: auto !important;
}

.nutrition-image-class .input-wrapper.checkbox-wrapper span img {
    display: block;
    max-width: 200px;
    height: auto;
}

.nutrition-image-class .input-wrapper.checkbox-wrapper span {
    margin-top: 10px;
    display: inline-block;
}


/*dashboard*/

.dashboard h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    color: #000;
}

.dash-box {
    background-color: #FFF4DE;
    border-radius: 8px;
    padding: 18px 25px;
    margin-bottom: 12px;
    height: 95%;
    border: 1px solid #FFF4DE;
    transition: all 0.5s;
}

.purple-color {
    background-color: #EFE6F6;
    border: 1px solid #EFE6F6;
    cursor: pointer;
}

.purple-color:hover {
    border: 1px solid #c67cff;
    background-color: #e9d8f6;
}

.green-color {
    background-color: #E2FFD4;
    border: 1px solid #E2FFD4;
    cursor: pointer;
}

.green-color:hover {
    border: 1px solid #8de760;
    background-color: #cdffb4;
}

.pink-color {
    background-color: #FFE2E5;
    border: 1px solid #FFE2E5;
    cursor: pointer;
}

.pink-color:hover {
    border: 1px solid #ef929c;
    background-color: #fcc6cc;
}

.dash-box h4 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 12px
}

.dash-box h6 {
    font-size: 1.2rem;
    color: #000;
    margin: 0px;
}


/* 
.dropdown-menu.show {
    top: 138% !important;
    box-shadow: 1px 2px 11px #7c7c7c;
    transform: none !important;
} */


/* .dropdown-menu::before {
    z-index: 10;
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    margin-left: 0;
    top: 0;
    bottom: calc(50% - 5px);
    left: auto;
    right: 0px;
    box-sizing: border-box;
    border: 10px solid #fff;
    border-color: transparent transparent #fff #fff;
    transform-origin: 0 0;
    transform: rotate(136deg);
    box-shadow: -2px 6px 9px #e7e7e7;
} */

.task-dashboard {
    background-color: #F9F9F9;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.icon-box {
    background-color: #EDEDED;
    border-radius: 8px;
    width: 35px;
    height: 35px;
    text-align: center;
    padding: 3px;
}

.task-dashboard h6 {
    margin: 0px;
    font-size: 14px;
}

.taskborder-bottom {
    border: 1px solid #EDEDED;
}

.spacee-bar {
    margin-left: 3.1rem;
}

.btn-icons {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    padding: 4px;
    background-color: #F8F8F8;
    color: #000;
}

.btn-table-danger {
    background-color: rgba(238, 44, 44, 0.147);
    color: #EE2C2C;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    padding: 4px;
}

.modal-title {
    color: #000;
}

.modal .btn-close {
    border: 2px solid var(--black);
    border-radius: 100%;
    color: var(--black);
    opacity: 1;
    padding: .25em .25em;
    width: 1em;
    height: 1em;
    background: url(../images/close-icon.svg);
    background-position-x: 51%;
    background-position-y: 51%;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: black;
    border-radius: 4px;
}

table thead {
    background: #EDEDED;
    color: #292929;
}

table thead th {
    color: #292929;
}

.modal label {
    color: #000;
}

.numberset {
    width: 25px;
    height: 25px;
    background-color: #989898;
    border-radius: 100%;
    color: #fff;
    margin-right: 10px;
    text-align: center;
    font-size: 16px;
    padding: 3px;
}

.accordion-item {
    border: 0px;
    margin-bottom: 20px;
}

.accordion-button {
    color: #444444;
    background-color: #E2E2E2;
    color: #444;
    font-size: 14px;
    padding: 12px;
    box-shadow: none;
    font-weight: 500;
    border-radius: 4px;
}

.accordion-button:not(.collapsed),
.accordion-button:focus {
    background-color: #E2E2E2;
    color: #444;
    font-size: 14px;
    padding: 12px;
    box-shadow: none;
    font-weight: 500;
}

.admin-btn-primary {
    background-color: #000;
    border-color: #000;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    min-width: 100px;
}

.admin-btn-primary:hover {
    border-color: #000;
    color: #000;
    background-color: #fff;
}

.admin-btn-secondary {
    background-color: #E5E5E5;
    border-color: #E5E5E5;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
    line-height: 14px;
    color: #000;
    min-width: 100px;
}

.admin-btn-secondary:hover {
    border-color: #E5E5E5;
    color: #E5E5E5;
    background-color: #000;
}

.rule-box {
    border: 1px solid #D9D9D9;
    background-color: #F4F4F4;
    border-radius: 6px;
    padding: 12px;
}

.rule-box label {
    color: #444;
    font-weight: 400;
}

.rule-box a {
    text-decoration: underline!important;
    color: #000;
    font-weight: 500;
    margin-left: 5px;
}

.rule-box .dropdown-menu a {
    text-decoration: none!important;
}

.text-danger {
    color: #FD0000!important;
}

.text-success {
    color: #40B842!important;
}

.chart-card {
    border-radius: 8px;
    box-shadow: 3px -3px 13px #ccc;
}

.chart-card h4 {
    color: #000;
}

#deleteModal h5 {
    line-height: 28px;
}

.accordion-body {
    padding: 1rem 0.5rem;
}

.modal#applyRuleModal,
.modal#categoryModal,
.modal#deleteModal,
.modal#edittemplateModal,
.modal#RuleValidateModal,
.modal#addtemplateModal {
    z-index: 1057 !important;
}


/* .modal-backdrop.show:nth-of-type(odd) {
    z-index: 1056 !important;
} */

.form-control {
    background-color: #F4F4F4;
    border: 1px solid #D9D9D9;
    color: #444444
}

#myChart .apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {
    background: #000;
    border-bottom: 1px solid #000;
}

#myChart .apexcharts-tooltip.apexcharts-theme-light {
    border: 1px solid #000;
    background: #000;
    color: #fff;
}


/*Datatable Design*/

table.dataTable.no-footer {
    border-bottom: 2px solid #e6e6e6;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: #fff !important;
    border: 1px solid transparent;
    background-color: white;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, #6b6767));
    background: -webkit-linear-gradient(top, black 0%, #6b6767 100%);
    background: -moz-linear-gradient(top, black 0%, #6b6767 100%);
    background: -ms-linear-gradient(top, black 0%, #6b6767 100%);
    background: -o-linear-gradient(top, black 0%, #6b6767 100%);
    background: linear-gradient(to bottom, black 0%, #6b6767 100%);
    border-radius: 4px;
}

.search-icon {
    position: absolute;
    top: 7px;
    left: 10px;
    color: #8e8e8e;
    font-size: 1.4rem !important;
}

.search-input .form-control {
    padding-left: 35px;
}

.datatable table thead {
    background-color: #000;
}

.datatable table thead th {
    color: #fff;
    font-weight: 400;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: #fff;
    color: var(--bs-table-striped-color);
}

.table-striped>tbody>tr:nth-of-type(even) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}

#product-list_filter {
    display: none;
}

#product-list_length {
    margin-top: 10px;
}

.dashboard-height {
    height: calc(100vh - 66px) !important;
    overflow-y: auto;
    background-color: #fff;
}

header {
    background-color: #000;
}

header .dropdown-toggle .icon img {
    filter: brightness(0.7);
}

.table-form-select {
    width: 75px !important;
}

@media(max-width:420px) {
    .mobile-control-width {
        display: none;
    }
    #product-listd .desktopcontent,
    #product-listd .desktopheading {
        display: none;
    }
    #product-listd {
        table-layout: fixed;
    }
    #product-listd.table>:not(caption)>*>* {
        padding: 10px 5px;
    }
    #product-listd .mobileheading,
    #product-listd .mobilecontent {
        word-break: break-all;
        width: 85px;
    }
    #product-listd .action-wrap {
        width: 52px;
        display: table-cell;
    }
    #product-listd th:first-child,
    #product-listd td:first-child {
        width: 90px;
        white-space: normal;
    }
    #product-listd th:first-child {
        word-break: break-word;
    }
    #product-listd th:nth-child(2),
    #product-listd td:nth-child(2) {
        width: 80px;
        white-space: normal;
        word-break: break-word;
    }
}


/* responsive */

@media(min-width:1500px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1470px;
    }
}

@media(max-width:1540px) {
    .spacee-bar {
        margin-left: 0px
    }
}

@media(max-width:1499px) {
    .status-dropdown .dropdown-toggle {
        min-width: 160px;
    }
    .dropdown-item {
        padding: .35rem 1rem;
    }
    .date-range-wrap span {
        padding: 10px;
    }
}

@media(max-width:1399px) {
    .date-range-input {
        padding: 11px 25px 11px 6px;
    }
    .date-range-wrap span {
        padding: 11px 6px;
        font-size: 13px;
    }
    .date-range-wrap .input-date-wrap {
        width: 220px;
    }
}

@media(max-width:1199px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 100%;
    }
    .auth-wrapper {
        margin: 65px 50px 0px;
    }
    .auth-content {
        padding: 50px 30px;
    }
    .table-content li {
        width: 33%;
        margin-bottom: 20px;
    }
    .view-details .custom-height {
        height: 100%;
    }
}

@media(max-width:991px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    .query-box {
        max-width: 380px;
    }
    /* .pagination .page-item {
        margin-left: 12px;
    } */
    table thead th:first-child,
    table tbody td:first-child {
        padding-left: 15px;
    }
    .table-footer {
        padding: 15px 12px 20px;
    }
    .blue-bg-dropdown .dropdown-toggle {
        background-size: 12px;
    }
    .custom-tabbing {
        flex-direction: column;
    }
    .custom-tabbing .sidebar {
        width: 100%;
    }
    .custom-tabbing .nav-item {
        margin-bottom: 0px;
    }
    .custom-tabbing .white-bg {
        min-height: 100%;
        width: 100%;
    }
    .custom-form .custom-field {
        padding: 10px 15px;
    }
    .number-wrapper {
        flex-direction: row !important;
    }
    .number-wrapper:before {
        display: none;
    }
    .number-wrapper .nav-link {
        margin-bottom: 0;
        padding: 8px 10px;
    }
    .custom-wrap {
        white-space: initial;
    }
    .dashboard .border-end {
        border-right: 0px!important;
    }
}

@media(max-width:767px) {
    .auth-wrapper {
        margin: 20px 15px;
        flex-direction: column;
        height: 100%;
    }
    .auth-title-wrapper .title {
        font-size: 26px;
    }
    .auth-content {
        padding: 20px 15px;
        width: 100%;
    }
    .image-pattern {
        width: 100%;
        height: 200px;
    }
    .copyright {
        position: initial;
    }
    .header-wrapper .custom-dropdown {
        width: auto;
    }
    .custom-dropdown .dropdown-toggle {
        min-width: 140px;
        font-size: 13px;
        padding: 8px 20px 8px 8px;
        background-position: center right 6px;
    }
    .custom-dropdown .icon {
        display: none;
    }
    .header-wrapper .custom-dropdown .icon {
        display: flex;
    }
    .header-wrapper .custom-dropdown .dropdown-toggle {
        min-width: 50%;
        margin-right: 5px;
        padding: 8px 10px 8px 8px;
    }
    .status-wrap span {
        padding: 10px;
    }
    .custom-dropdown .dropdown-menu.show {
        min-width: 100%;
    }
    .custom-dropdown .dropdown-item {
        padding: 3px 9px;
    }
    .date-range-wrap,
    .date-range-wrap .input-date-wrap {
        width: 100%;
    }
    .date-range-wrap span {
        white-space: nowrap;
    }
    table thead th,
    table tbody td {
        padding: 7px;
        font-size: 13px;
    }
    .table-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .table-footer .wrap {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .wrap p {
        margin-left: 0;
        margin-top: 10px;
    }
    .blue-bg-dropdown {
        width: 100%;
    }
    .custom-checkbox {
        width: 16px;
        height: 16px;
    }
    .custom-checkbox:checked {
        background-size: 12px;
    }
    .query-box {
        max-width: 240px;
        padding: 20px;
    }
    .query-row td {
        padding: 50px 20px;
    }
    .query-box .icon {
        width: 60px;
        height: 60px;
    }
    .query-box .icon img {
        max-width: 25px;
    }
    .common-dropdown,
    .custom-dropdown {
        width: 100%;
    }
    .category-dropdown {
        width: 100%;
    }
    .common-dropdown span {
        white-space: nowrap;
    }
    .select-with-label .select2-container {
        width: 100% !important;
    }
    .common-dropdown .custom-dropdown .dropdown-toggle {
        width: 100%;
    }
    .table-content li {
        width: 100% !important;
        margin-bottom: 15px;
    }
    .table-content {
        margin-bottom: 10px;
        padding-bottom: 0;
    }
    .custom-tab .nav-tabs {
        column-gap: 0;
    }
    .view-details .title {
        font-size: 16px;
    }
    .custom-btn {
        font-size: 14px;
    }
    .custom-modal .custom-btn {
        padding: 8px 39px;
    }
    .daterangepicker .calendar-table th:first-child,
    .daterangepicker .calendar-table td:first-child {
        padding-left: 0;
    }
    .manual-fields .details {
        flex-direction: column;
        align-items: flex-start;
    }
    .manual-fields .list {
        border-left: none;
        padding-left: 0;
        margin: 10px 0px;
    }
    .title-wrapper {
        align-items: flex-start;
        flex-direction: column;
    }
    .title-wrapper .title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .manual-fields .custom-btn {
        padding: 8px 15px;
    }
    .number-wrapper {
        flex-direction: column !important;
    }
    .number-wrapper .nav-link {
        padding: 8px 0px;
    }
    .manual-fields .custom-tabbing .white-bg {
        padding: 10px 15px;
    }
    .manual-fields .custom-tabbing .content-area {
        padding: 10px 0px;
    }
    .net-weight {
        display: flex;
        flex-direction: column;
    }
    .net-weight .weight {
        border-radius: 5px;
        width: 100%;
        margin-bottom: 10px;
        padding: 0;
    }
    .net-weight .form-field {
        border-radius: 5px;
        margin-bottom: 10px;
        width: 100%;
        border: 1px solid var(--lightgray);
    }
    .net-weight .grams {
        padding: 0;
    }
    .manual-fields .time-wrapper {
        flex-direction: column;
        width: 100%;
    }
    .manual-fields .custom-radio {
        width: max-content;
    }
    .frequency-data .input-title {
        width: 100%;
        margin-bottom: 10px;
    }
    .manual-fields .radio-wrapper {
        flex-direction: column;
    }
    .manual-modal .modal-footer {
        flex-wrap: wrap;
    }
    .manual-modal .custom-btn {
        width: 100%;
    }
    .manual-modal .download-btn .custom-dropdown,
    .manual-modal .download-btn {
        width: 100%;
    }
    .frequency-data .common-dropdown,
    .frequency-data .custom-dropdown {
        height: 43px;
    }
    .table-wrapper {
        max-height: 400px;
    }
}

@media(max-width:479px) {
    .tab-wrapper .nav-tabs {
        column-gap: 0;
    }
    .tab-wrapper .nav-tabs .nav-item {
        width: 50%;
    }
    .tab-wrapper .nav-tabs .nav-link {
        padding: 10px 15px;
        width: 100%;
    }
    .date-range-wrap {
        align-items: flex-start;
    }
    .date-range-wrap span {
        border: none;
        padding-bottom: 0;
    }
    .date-range-wrap {
        flex-direction: column;
        height: auto;
    }
    .status-wrap,
    .status-dropdown .dropdown-toggle,
    .status-dropdown {
        width: 100%;
    }
}