/* For Webkit browsers like Chrome and Safari */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

body {
    font-family: "Poppins", sans-serif;
    background: #F5F5F5;
}

.dash-main {
    display: flex;
    align-items: start;
    justify-content: start;
    height: 100vh;
}

.dash-left {
    width: 80px;
    border-right: 1px solid rgba(98, 101, 103, 0.2);
    height: 100vh;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1001;
    background: #FAFAFA;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.accordion-body {
    position: relative;
    padding-right: 25px;
}

.term_edit {
    position: absolute;
    right: 10px;
    top: 15px;
}

.dash-left:hover {
    width: 280px;
}

.dash-left .logo {
    border-bottom: 1px solid rgba(98, 101, 103, 0.2);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-left .left-menu {}

.left-menu ul {
    padding: 20px 0px 0px;
    list-style: none;
}

.left-menu ul li {
    margin-bottom: 20px;
}

.left-menu ul li a {
    display: flex;
    align-items: center;
    justify-content: start;
    text-decoration: none;
}

.left-menu ul li p {
    font-size: 16px;
    font-weight: 500;
    color: #626567;
    margin-bottom: 0px;
    display: none;
}

.left-menu ul li .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(98, 101, 103, 0.1);
    border-radius: 10px;
    margin: 0 auto;
    border: 2px solid rgba(98, 101, 103, 0.1);
}

.logo-full {
    display: none;
}

.logo-half {
    display: block;
}

.left-menu ul li a:hover svg path {
    stroke: #5CBA47;
    fill: #5CBA47;
}

.dash-left:hover .left-menu ul li .icon {
    margin: 0px 15px 0px 20px;
}

.dash-left:hover .left-menu ul li p {
    display: block;
}

.dash-left:hover .left-menu ul li a:hover p {
    color: #5CBA47;
}

.dash-left:hover .left-menu ul li a:hover .icon {
    background: white;
    border: 2px solid rgba(92, 186, 71, 0.35);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.dash-left:hover .logo-full {
    display: block;
}

.dash-left:hover .logo-half {
    display: none;
}

.dash-right {
    width: 100%;
    padding-left: 80px;
}

.dash-right header {
    border-bottom: 1px solid rgba(98, 101, 103, 0.2);
    padding: 22px 30px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
}

.dash-right header .back-arrow {
    margin-right: 20px;
}

.dash-right header h3 {
    font-size: 28px;
    font-weight: 600;
    color: #141514;
    margin-bottom: 0px;
}

.header-left {
    display: flex;
    align-items: center;
}

.btn-user {
    font-size: 14px;
    font-weight: 400;
    color: #626567;
    border: 0px;
}

.btn-user img {
    margin-right: 6px;
}

.dash-right .dash-inner {
    padding: 50px 30px;
    height: calc(100vh - 80px);
    overflow: auto;
}

.container-genral {
    max-width: 900px;
    margin: 0 auto;
}

.setup-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    border-bottom: 1px solid rgba(98, 101, 103, 0.2);
}

.setup-panel li {
    margin: 0px 7px;
}

.setup-panel li a {
    background: rgba(98, 103, 100, 0.1);
    padding: 12px 50px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.setup-panel li a h4 {
    font-size: 18px;
    font-weight: 400;
    color: #626567;
    margin-bottom: 0px;
}

.setup-panel li.active a {
    background: rgba(92, 186, 71, 1);
}

.setup-panel li.active a h4 {
    color: white;
}

.setup-content {
    padding: 50px 0px;
    visibility: hidden;
}

.setup-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: #141514;
    margin-bottom: 30px;
}

.setup-content label {
    font-size: 14px;
    font-weight: 400;
    color: #141514;
    margin-bottom: 10px;
}

.setup-content .form-control,
.setup-content select {
    border-color: rgba(98, 101, 103, 0.35);
    border-radius: 5px;
    font-size: 12px;
    color: #626567;
    padding: 13px;
    height: 45px;
    margin-bottom: 20px;
}

.btn-theme-1 {
    background: #5CBA47;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
    border-radius: 32px;
    padding: 12px 40px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.btn-theme-1:hover {
    background: #5CBA47;
    color: white;
}

.btn-plus {
    background: #5CBA47;
    color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    margin-left: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.btn-plus:hover {
    background: #5CBA47;
    color: white;
}

.input-plus-main {
    position: relative;
    display: flex;
    align-items: start;
}

.setup-content .form-check-input {
    margin-left: -10px;
    margin-right: 10px;
}

.form-check-input:checked {
    background-color: #5CBA47;
    border-color: #5CBA47;
}

.genral-modal .modal-dialog {
    max-width: 820px;
}

.genral-modal .modal-header {
    border-bottom: 0px;
    padding: 30px;
}

.genral-modal .modal-header h1 {
    font-size: 22px;
    font-weight: 600;
    color: #141514;
    margin-bottom: 0px;
}

.genral-modal .modal-header .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
}

.genral-modal .modal-body {
    padding: 0px 30px;
}

.genral-modal .modal-footer {
    border-top: 0px;
    padding: 30px;
}

.genral-modal .modal-footer .btn-theme-1 {
    margin-top: 0px;
}




/* =================== New css 26-12-2024 =================== */

.login-bg-main {
    background: url("../images/login-background.svg") no-repeat 100% 100%;
    background-size: cover;
}

.login-form-card {
    width: 100%;
    max-width: 540px;
    padding: 75px 95px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
}

.card-logo-main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-logo {
    margin: 0px auto 50px;
    width: 100%;
    max-width: 315px;
}

.login-title {
    font-size: 48px;
    line-height: 72px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.login-label {
    font-size: 16px;
    line-height: 24px;
    color: #141514;
    font-weight: 500;
    margin-bottom: 0px;
}

.login-input {
    border: 0px;
    border-bottom: 2px solid rgba(92, 186, 71, 0.2);
    background: transparent;
    background-color: transparent;
    border-radius: 0px;
    color: rgba(98, 101, 103, 0.75);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
}

.login-input:focus {
    box-shadow: none;
    background: transparent;
    border-color: #626567;
}

.btn-login {
    background: #5CBA47;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    text-align: center;
    border-radius: 32px;
    padding: 12px 15px;
    border: 0px;
}

.btn-login:hover {
    background: #5CBA47;
}

.login-eye-main {
    position: relative;
}

.login-eye {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    max-width: 16px;
}



.table-main {
    border: 1px solid #62656733 !important;
    border-radius: 7px;
}

.table-main thead tr th {
    min-width: 205px !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    text-align: left !important;
    background-color: #fff !important;
    position: sticky;
    top: 0px;
    z-index: 2;
}

.table-main thead tr th:first-child {
    min-width: 30px !important;
}

.meter-table thead tr th:first-child {
    min-width: 220px !important;
}

/* Custom checkbox styling in the table header and body */
input[type="checkbox"] {
    position: relative;
    width: 18px;
    height: 18px;
    border: 1px solid #62656733;
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
    background-color: #fff;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* Checkbox checked state */
input[type="checkbox"]:checked {
    background-color: #2196f3;
    border-color: #2196f3;
}

/* Checkmark display for checked state */
input[type="checkbox"]:checked::after {
    content: "";
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
    left: 5px;
}

/* Hover effect for custom checkbox */
input[type="checkbox"]:hover {
    border-color: #24282b33;
}

.checkmark {
    top: 4px !important;
}

/* Table body styling */
.table-main tbody tr td {
    font-weight: 400 !important;
    font-size: 12px !important;
    color: #141514 !important;
    text-align: left !important;
}

/* Filters section styling */
.filters-main {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-bottom: 15px;
}

.filters-main .container-box {
    width: 100%;
}


.search-box {
    width: 100% !important;
    border: 1px solid rgba(98, 101, 103, 0.35);
    border-radius: 5px;
    outline: none;
    height: 50px;
    padding: 0px 30px 0px 15px;
}

.search-box::placeholder {
    font-weight: 400;
    font-size: 12px;
    color: #626567;
}

.search-box-left {
    position: relative;
    width: 100%;
    max-width: 600px;
}

/* Submit button styling */
input.submit-button {
    width: 35px !important;
    height: 29px !important;
    position: absolute;
    right: 2px;
    top: 12px;
    border: none;
    background-image: url(assets/images/search-icon.svg);
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: 46% 49%;
    background-color: transparent;
}

/* General link styling */
a {
    cursor: pointer;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #62656759;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #3f444759;
}

.table-responsive {
    border-radius: 7px;
    height: calc(100vh - 247px);
    overflow: scroll;
}

.actions-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.disabled {
    pointer-events: none;
    cursor: default;
}

.table-main tbody tr td.text-active {
    color: #1c9900 !important;
}

.table-main tbody tr td.text-legacy {
    color: #ff7700 !important;
}

.table-main tbody tr td.text-party {
    color: #0084ff !important;
}

.custom-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.dropdown-header {
    display: inline-block;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.caret {
    margin-left: 8px;
    display: inline-block;
    border-top: 5px solid #333;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    vertical-align: middle;
}

.custom-menu {
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    overflow: hidden;
    background-color: #fff;
    min-width: 200px;
}

.custom-dropdown .dropdown-menu {
    z-index: 1050;
    /* Ensure it stays on top */
}

.custom-item {
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    transition: background-color 0.2s ease;
}

.custom-item:hover {
    background-color: #f1f1f1;
}

.dropdown-link {
    text-decoration: none;
    color: inherit;
}

.dropdown-link:hover {
    text-decoration: underline;
}

.mxw-50 {
    max-width: 30px;
    width: 30px;
}

.export-btn {
    position: absolute;
    bottom: 60px;
    left: 140px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.filters-right {
    width: 100%;
    background: rgba(98, 101, 103, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    padding: 10px 10px;
    position: relative;
}

.filters-icons-left {
    display: flex;
    gap: 10px;
}

.search-box {
    width: 100% !important;
    border: 1px solid rgba(98, 101, 103, 0.35);
    border-radius: 5px;
    outline: none;
    height: 50px;
    padding: 0px 30px 0px 15px;
}

.search-box::placeholder {
    font-weight: 400;
    font-size: 12px;
    color: #626567;
}

.small-icon-boxes {
    background: #fff;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08),
        0 4px 8px 0 rgba(50, 50, 71, 0.006);
}

.search-box-left {
    position: relative;
    width: 100%;
    max-width: 600px;
}

/* Submit button styling */
input.submit-button {
    width: 35px !important;
    height: 29px !important;
    position: absolute;
    right: 2px;
    top: 12px;
    border: none;
    background-image: url(assets/images/search-icon.svg);
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: 46% 49%;
    background-color: transparent;
}

.filters-main .filters-icons-left .add-icon:first-child {
    background-color: #5cba47;
}

.genral-modal-1 .modal-dialog {
    max-width: 500px;
}

.genral-modal-1 .modal-dialog .form-control {
    padding: 10px;
}

.genral-modal-2 .modal-dialog {
    max-width: 300px;
    text-align: center;
}

.genral-modal-2 .modal-dialog .body-title {
    font-size: 22px;
}

.genral-modal-2 .modal-dialog p {
    font-size: 14px;
    margin-bottom: 0px;
}

.del-btn-main {
    background: rgba(242, 0, 0, 0.2);
    padding: 10px;
    border-radius: 50px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.del-btn-main img {
    width: 28px;
}

.genral-modal-2 .modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-theme-2 {
    background: transparent;
    color: #626567;
    font-size: 14px;
    font-weight: 500;
    margin-top: 0px;
    border-radius: 32px;
    padding: 5px 40px 12px;
    box-shadow: none;
}

.btn-theme-2:hover {
    background: transparent;
    color: #626567;
}

.table-main tbody tr td.last_cell {
    text-align: right !important;
}

.plus_icon {
    background: #EFF8ED;
    padding: 4px 7px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}


.mxw-65 {
    max-width: 65px !important;
    width: 65px !important;
    padding-right: 0 !important;
}

.mxw-65 img {
    width: 11px;
    position: relative;
    top: -5px;
    margin-right: 5px;
}

.inner_row input[type=checkbox] {
    position: relative;
    top: 4px;
    margin-right: 10px;
}

.add_services .modal-footer button {
    background: #5CBA47;
    border-radius: 56px;
    border: 0;
    padding: 9px 22px;
}

.add_services .modal-header {
    border: 0 !important;
}

.add_services .modal-footer {
    border: 0 !important;
}

.add_services input[type=text] {
    margin-bottom: 20px;
}

.add_services textarea {
    height: 120px;
}

.add_services label {
    margin-bottom: 6px;
    font-size: 16px;
    color: #000;
}

.select_cs {
    background: #D3D4D4;
}

.delete_popup .modal-dialog {
    max-width: 350px;
    text-align: center;
}

.delete_popup .modal-body {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

.del_icon img {
    position: relative;
    top: 19px;
}

.btn_cancel {
    background: none !important;
    color: #D3D4D4;
}

.delete_popup .modal-footer {
    text-align: center;
    display: block;
    text-align: center;
    padding: 15px 70px !important;
}

.del_icon {
    width: 80px;
    height: 80px;
    background: #FEF2F2;
    margin: 0 auto;
    border-radius: 50%;
}

.delete_popup .modal-footer button {
    display: block;
    width: 100% !important;

}


.accordion-button:not(.collapsed) {
    background: #919395;
    color: #fff;


}


.accordion-button:not(.collapsed)::after {
    left: 10px !important;
    position: absolute;
    top: 14px !important;
    background: url(../images/arw_white1.svg) no-repeat center center !important;
}

.accordion-button::after {
    left: 10px !important;
    position: absolute;
    top: 14px !important;
    background: url(../images/arw_white2.svg) no-repeat center center !important;
}

.accordion-button {
    padding-left: 40px !important;

}

.accordion-button {
    background: #919395;
    color: #fff;
}

.accordion-button input[type=checkbox] {
    margin-right: 10px;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.column_row {
    display: flex;
    gap: 20px;
    width: 100%;
    padding: 20px;
}

.form_name {
    width: 100%;
    height: 40px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}


.section {
    width: 50%;
    border: 1px solid #ccc;
    padding: 10px;
    min-height: 200px;
}

.section h2 {
    margin-top: 0;
}

.section_lef {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 20px;
}

.section_lef h2 {
    margin-top: 0;
}

.draggable {
    padding: 8px 12px;
    margin: 5px 0;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    cursor: grab;
}

.draggable.dragging {
    opacity: 0.5;
}

.draggable.disabled {
    background-color: #e0e0e0;
    cursor: not-allowed;
}

.remove-btn {
    float: right;
    color: red;
    cursor: pointer;
    font-weight: bold;
}

.btn-theme-email {
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 40px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.card-container-green .card {
    background: green;
}

.card-container-green .card .card-text {
    color: #fff;
}

.small-icon-boxes.green-btn a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: inline-flex;
    gap: 10px;
}

.bottom-pagination {
    margin-top: 1rem;
}

.bottom-pagination .pagination {
    justify-content: center;
    gap: 0.25rem;
}

.bottom-pagination .page-item .page-link {
    color: #0d6efd;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease-in-out;
}

.bottom-pagination .page-item .page-link:hover {
    background-color: #e9ecef;
    text-decoration: none;
}

.bottom-pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.bottom-pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

.bottom-pagination .small.text-muted {
    display: none !important;
}

.choices__inner,
.choices__input {
    background-color: white !important;
    width: 100% !important;
}

.categories-selector-container {
    z-index: 3;
    width: 100%;
}

.cursor-pointer {
    cursor: pointer;
}

.choices {
    max-width: 300px;
    width: 100%;
    box-sizing: border-box;
}

.choices__inner {
    max-height: 50px !important;
    overflow-y: hidden !important;
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap !important;
}

.choices__list--multiple {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    max-width: 100%;
    scrollbar-width: thin;
}

.choices__list--multiple .choices__item {
    white-space: nowrap;
    margin-right: 5px;
}