html,
body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: var(--dashboard-bg);
    font-family: circular;
}

@font-face {
    font-weight: 400;
    font-style: normal;
    font-family: circular;
    src: url("../font/CircularXXWeb-Book.woff2") format("woff2");
}

@font-face {
    font-weight: 700;
    font-style: normal;
    font-family: circular;
    src: url("../font/CircularXXWeb-Bold.woff2") format("woff2");
}

:root {
    --bg-color: #fff3ea;
    --white: #fff;
    --primary: #fc740c;
    --table-bg: #fff3ea;
    --table-hover: #ffbc88;
    --border: #b2b1b1;
    --black: #1a1b1e;
    --green: #00803c;
    --sidebar: #ffe8d7;
    --dashboard-bg: #fff8f6;
    --card-1: #5d8aa8;
    --card-2: #3d2b1f;
    --card-3: #c2b280;
    --card-4: #4d5d53;
    --card-5: #534b4f;
    --card-6: #4d5d53;
    --card-7: #5985d3;
    --card-8: #cbb944;
    --card-9: #d52626;
    --card-10: #5985d3;
    --card-11: #39a18d;
}

.main-title {
    font-weight: 700;
}

.form-control {
    border: 1px solid #615f5e;
    background-color: transparent;
    border-radius: 8px;
    padding: 10px;
}

.form-control::placeholder {
    color: #ababaf;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: var(--primary);
    outline: 0;
    box-shadow: none;
}

.login-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--bg-color);
}

.main-logo {
    width: 110px;
    height: 110px;
    background-color: var(--white);
    border: 1px solid var(--primary);
    border-radius: 100%;
}

.login-form {
    max-width: 450px;
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--primary);
    padding: 20px 20px 40px;
}

.btn-login.btn-login {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--green);
    border: 1px solid var(--green);
    text-decoration: none;
    border-radius: 10px;
    max-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-login.btn:hover,
.btn-login.btn:focus,
.btn-login.btn:active {
    background-color: #00632e !important;
}

.eye-btn {
    position: absolute;
    top: 11px;
    right: 12px;
}

.eye-btn i {
    font-size: 24px;
    line-height: 20px;
    color: #77777a;
}

.logo-img {
    width: 142px;
    height: 130px;
}

.dashboard-section {
    height: 100vh;
}

.dashboard-section .container-fluid {
    padding: 0;
}

.sidebar {
    max-width: 384px;
    padding: 21px 20px;
    width: 100%;
    height: 100%;
    background-color: var(--sidebar);
    overflow: auto;
    transition: all 0.5s ease-in-out;
}

.sidebar .menu-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar .menu-list .menu-items a svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.sidebar .menu-list .menu-items:last-child a svg path {
    fill: var(--border);
}

.sidebar .menu-list .menu-items {
    padding: 4px 0;
}

.sidebar .menu-list .menu-items a {
    text-decoration: none;
    gap: 4px;
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: max-content;
}

.sidebar .menu-list .menu-items a.active,
.sidebar .menu-list .menu-items a:hover {
    color: var(--white);
    background-color: var(--primary);
    border-radius: 4px;
}

.sidebar .menu-list .menu-items a.active svg circle,
.sidebar .menu-list .menu-items a:hover svg circle,
.sidebar .menu-list .menu-items a.active svg path,
.sidebar .menu-list .menu-items a:hover svg path {
    fill: var(--white);
}

.left-part {
    flex-grow: 1;
    overflow: auto;
}

.main-area {
    padding: 20px 18px;
}

.dashboard-nav {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

#toggleBtn svg {
    width: 20px;
    height: 20px;
    display: none;
}

.main-area .card {
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 33px;
    min-height: 179px;
    border-radius: 10px;
}

.main-area .card .first-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-area .card .first-row p {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
}

.main-area .card svg {
    width: 58px;
    height: 58px;
}

.main-area .card.card-1 {
    background-color: var(--card-1);
}

.main-area .card.card-2 {
    background-color: var(--card-2);
}

.main-area .card.card-3 {
    background-color: var(--card-3);
}

.main-area .card.card-4 {
    background-color: var(--card-4);
}

.main-area .card.card-5 {
    background-color: var(--card-5);
}
.main-area .card.card-6 {
    background-color: var(--card-6);
}
.main-area .card.card-7 {
    background-color: var(--card-7);
}
.main-area .card.card-8 {
    background-color: var(--card-8);
}
.main-area .card.card-9 {
    background-color: var(--card-9);
}
.main-area .card.card-10 {
    background-color: var(--card-10);
}
.main-area .card.card-11 {
    background-color: var(--card-11);
}

tbody tr {
    cursor: pointer;
}

input[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: none;
    appearance: none;
}

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

.table-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.table-details .d-flex {
    row-gap: 4px !important;
}

.custome-table > :not(caption) > * > * {
    border-bottom: none;
}

.custome-table thead tr th {
    background-color: var(--primary);
    color: var(--white);
}

.custome-table tbody tr td {
    font-size: 15px;
    box-shadow: none;
}

.custome-table tbody tr td:last-child {
    min-width: 100px;
}

.custome-table tbody tr td:last-child div,
.custome-table tbody tr td:last-child select {
    width: 100%;
}

.table-striped > tbody > tr:nth-of-type(even) > * {
    background-color: #fff3ea;
}

.custome-table tbody tr:hover td {
    background-color: var(--table-hover);
}

.custome-btn-grp .btn {
    background-color: var(--table-bg);
    border: none;
    color: var(--black);
}

.custome-btn-grp .btn:focus,
.custome-btn-grp .btn:active,
.custome-btn-grp .btn:hover {
    background-color: var(--table-hover);
}

.filter-btn:hover,
.filter-btn {
    background-color: #00803c;
    border: none;
}

.filter-btn:focus,
.filter-btn:active,
.filter-btn:hover {
    background-color: #00632e !important;
}

.profile-deteails .profile-img {
    width: 100px;
    height: 100px;
    background-color: var(--table-bg);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.profile-deteails .profile-img p {
    font-size: 34px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0;
}

.form-dropdown {
    background-color: transparent !important;
    border: none;
    color: var(--black);
    padding: 4px 1px;
    appearance: auto;
    border-radius: 5px;
    font-size: 14px;
}

.modal-backdrop {
    --bs-backdrop-zindex: 0;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
}

.services-card {
    padding-bottom: 24px;
    height: 100%;
}

.services-card .card .card-body {
    width: 100%;
}

.services-card .card {
    padding: 0px;
    position: relative;
    background: linear-gradient(to right, #fff3e9, #ffddc3);
    border: 1px solid #ffa561;
    min-height: 150px;
    height: 100%;
}

.services-card .card h5 {
    font-weight: 700;
}

.services-card .card span svg {
    height: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
    width: auto;
}
.services-card .card svg {
    height: 20px;
    top: 10px;
    width: auto;
}

.table-main {
    height: 90vh;
    overflow-y: scroll;
}

.table-main thead {
    position: sticky;
    top: 0;
}

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

.sidebar::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;

    margin-right: 2px;
    margin-top: 5px;
    margin-bottom: 5px;
}

::-webkit-scrollbar-thumb {
    background: #777777;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #777777;
}

/* .config-card .card span svg {
    height: 20px;
    position: absolute;
    right: 10px;
    top: 66px;
    width: auto;
}

.config-card .card span {
    height: 20px;
    position: absolute;
    right: 10px;
    top: 66px;
    width: auto;
}

.config-card .card .card-body {
    text-align: left;
    min-height: 180px;
    overflow: auto;
    width: 100%;
} */

.config-card .card {
    padding: 0px;
    position: relative;
    background: linear-gradient(to right, #fff3e9, #ffddc3);
    border: 1px solid #ffa561;
    margin-top: 24px;
    height: 100px;
}

.profile-img img {
    width: 84px;
    border-radius: 100%;
}

.alert-dismissible {
    margin: 0 25%;
}

.card-loader {
    width: 42px;
    height: 42px;
}

.customer-table thead tr th:last-child {
    min-width: 120px;
}

.customer-table tr th:nth-child(6),
.customer-table tr td:nth-child(6) {
    max-width: 310px;
    min-width: 250px;
    text-wrap: unset;
}

.customer-table .form-dropdown {
    background: transparent;
    width: 100%;
    max-width: 100px;
}

.common-btn {
    border: 1px solid #ababaf !important;
    border-radius: 6px;
    background: #ffe8d7 !important;
    color: #221a16;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 19px;
}

.common-btn img {
    max-width: 12px;
}

.detail-list .list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.detail-list .list-item h6 {
    font-weight: 700;
}

.state-card.services-card .card {
    min-height: 70px;
    border-radius: 10px;
}

.state-card.services-card .card a {
    color: #1a1b1e;
    display: flex;
    align-items: center;
    gap: 12px;
}

.state-card.services-card .card h5 {
    margin: 0;
}

.state-card.services-card .card-body {
    display: flex;
}

.config-card.services-card .card {
    min-height: 100px;
}

.config-card.services-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.config-card.services-card {
    padding-bottom: 0;
}

.config-card.services-card h5 {
    text-align: start;
}

.customer-status {
    margin-bottom: 20px;
}

.profile-img img {
    width: 100px;
    object-fit: cover;
    height: 100px;
    border-radius: 100%;
}

.profile .services-card .card {
    padding: 0px;
    position: relative;
    background: linear-gradient(to right, #fff3e9, #ffddc3);
    border: 1px solid #ffa561;
    min-height: 118px;
    height: 100%;
}

.login-details {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: end;
    flex-direction: column;
    margin: 0 0 0 0;
    padding: 10px 14px 0px 0;
}

.services-card .form-check-input:checked {
    background-color: #fc740c;
    border-color: #fc740c;
}

.services-card .form-check-input {
    background-color: #b7b7b7;
    border-color: #b7b7b7;
}

.form-switch {
    position: absolute;
    top: 0;
    right: 0;
}

.card-body {
    padding-right: 32px;
}

.form-control-plaintext {
    font-size: 14px;
}
