* {
    font-family: 'Open Sans', sans-serif;
    list-style: none;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

/* -----------------globals-------------------- */
:root {
    --primary-color: #658F43;
    --main-color: #7cab55;
    --fonts-color1: #212121;
    --fonts-color2: #ffffff;
}

body {
    color: var(--fonts-color1);
    background-color: #f6f6f6;
    font-size: 15px;
    position: relative;
}

.footer-alt {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: calc(100% - 330px);
    /* display: none; */
}

a {
    text-decoration: none;
    color: #000000;
}

a:hover {
    color: inherit;
}

.form-label {
    margin-bottom: 5px;
    color: #000;
}

/* -----------------globals-------------------- */
/* Login form start */
.red-star {
    color: red;
    margin: 0px 2px;
}

.login-img {
    background-color: var(--primary-color);
    min-height: 100vh;
    position: relative;
}

.right-sec {
    width: 75%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login-img .right-sec .img-fluid {
    border-radius: 30px;
}

.logo {
    width: 30%;
    margin: auto;
    margin-bottom: 20px;
}

.logo img {
    width: 100%;
}

.login-form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.form-sec {
    max-width: 500px;
    width: 90%;
}

h3.text-center {
    font-size: 35px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-sec input.form-control {
    height: 52px;
    border-radius: 5px;
    background-color: #efefef;
    border: none;
    /* border:1px solid #658F43; */
}

.form-control:focus {
    box-shadow: none;
}

input.form-control::placeholder {
    color: #CCC6C6;
    font-weight: 100;
}

.form-grp {
    margin-top: 40px;
    position: relative;
}

.form-grp .login-icon {
    position: absolute;
    top: 32px;
    right: 25px;
    transform: translate(10px, 10px);
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    background-position: right calc(20px + 20px) center;
}

.form-grp.form-check .form-check-input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    border: 1px solid var(--primary-color);
    margin-top: 2px;
}

.form-check-input:checked {
    background-color: #658f43;
    border: 1px solid #658f43;
}

.form-check-input:focus {
    box-shadow: none;
    border: 1px solid var(--primary-color);
}

.form-grp span a {
    text-decoration: none;
    color: #006CE4;
}

.form-sec .form-check {
    margin-top: 20px;
}

.login-btn {
    width: 100%;
    background-color: var(--primary-color);
    height: 52px;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin: 50px 0px;
}

.login-btn:hover {
    color: #ffffff;
}

.btn:focus {
    outline: 0;
    box-shadow: none;
}

.sign-up a {
    text-decoration: none;
    color: #006CE4;
}

/* Login form End */

/* Forgot Password End */
.mail-instruction {
    margin-bottom: 0;
    font-size: 16px;
    text-align: center;
    color: #939393;
}

/* Forgot Password End */

/* change Password End */
.user-details.change-password {
    width: 100%;
    max-width: 500px;
    margin: 2rem auto;
}

/* change Password End */
/* dashboard start */

/* ------------------customscrollbar------------ */

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: auto;
    /* scrollbar-color: #e0eec1 #ffffff; */
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: #ffffff;
}

*::-webkit-scrollbar-thumb {
    background-color: #e0eec1;
    border-radius: 10px;
    border: 0px solid #ffffff;
}

/* -------------customdropdowns---------------- */
.custom-dropdown {
    padding: 8px;
    border-radius: 5px;
    border: none;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    top: 30px !important;
}

.custom-dropdown .dropdown-item {
    display: flex;
    margin-bottom: 2px;
    padding: 8px 16px;
}

.custom-dropdown .dropdown-item:hover {
    background-color: #e0eec1;
    border-radius: 8px;
}

.custom-dropdown .dropdown-item:active {
    color: #000;
}

.custom-dropdown:before {
    content: "";
    position: absolute;
    right: 20px;
    top: -10px;
    border-style: solid;
    border-width: 0 15px 15px;
    border-color: transparent transparent #fff;
}

/* ----------------custom classes-------------------*/
.img-icon {
    max-width: 24px;
}

/* ---------------custom classes end----------------*/

/* -------------dashboardcss---------------*/

.main {
    width: calc(100% - 330px);
    margin-left: 330px;
}

.logo-img {
    width: 50%;
    margin: auto;
}

.logo-img .logo-ex {
    width: 50px;
}

.main-content {
    padding: 50px 30px;
    /* position: fixed; */
}

/* Dashboard Toogle */
.switches-container {
    width: 140px;
    position: relative;
    display: flex;
    padding: 0px;
    background: var(--main-color);
    line-height: 42px;
    border-radius: 3rem;
    float: right;
}

.switches-container input {
    visibility: hidden;
    position: absolute;
    top: 0;
}

.switches-container label {
    width: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    cursor: pointer;
    color: white;
}

.switch-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    padding: 4px;
    z-index: 3;
    transition: transform .5s cubic-bezier(.77, 0, .175, 1);
}

.switch {
    border-radius: 3rem;
    background: white;
    height: 100%;
}

.switch div {
    width: 100%;
    text-align: center;
    opacity: 0;
    display: block;
    color: var(--main-color);
    transition: opacity .2s cubic-bezier(.77, 0, .175, 1) .125s;
    position: absolute;
    top: 0;
    left: 0;
}

.switches-container input:nth-of-type(1):checked~.switch-wrapper {
    transform: translateX(0%);
}

.switches-container input:nth-of-type(2):checked~.switch-wrapper {
    transform: translateX(100%);
}

.switches-container input:nth-of-type(1):checked~.switch-wrapper .switch div:nth-of-type(1) {
    opacity: 1;
    font-weight: 700;
}

.switches-container input:nth-of-type(2):checked~.switch-wrapper .switch div:nth-of-type(2) {
    opacity: 1;
    font-weight: 700;
}

.tab-navigation-dropdown {
    margin-right: 10px;
}

.tab-container-dropdown .tab-navigation-dropdown select.dash-select {
    width: 200px;
    margin-left: 23px;
    /* border-radius: 25px; */
    /* border: 1px solid #658f43; */
}

.dashboard-switch {
    display: flex;
    align-items: center;
    justify-content: end;
}


/* -----------navbarcss---------*/
.leftnavbar {
    width: 330px;
    height: 100%;
    /* background-color: var(--primary-color); */
    transition: all 0.5s ease-in-out;
    position: relative;
    box-shadow: 0px 2px 9px 1px #85bf411c;
    z-index: 1;
    position: fixed;
    left: 0;
    right: 0;
    overflow-y: scroll;
    background: linear-gradient(180deg, #4c9b25, #7fc510b8);
}

.leftnavbar.leftnavbar-toggle ul.sub-ul {
    padding: 0 0 0 10px;
}


ul.sub-ul {
    display: none;
    padding: 0 0 0 35px;
    margin-top: 5px;
}

ul.sub-ul li a:after {
    display: none;
}

.navlist li {
    margin-bottom: 6px;
    list-style: none;
}

.leftnavbar .navlist a {
    display: flex;
    gap: 1rem;
    padding: 10px 20px;
}

.leftnavbar .navlist a.nav-active {
    background-color: #2b7d02;
    border-radius: 5px;
}

.leftnavbar .navlist a.active,
.leftnavbar .navlist a:hover {
    background-color: #2b7d02;
    border-radius: 5px;
}

ul.navlist img {
    max-width: 24px;
}

.leftnavbar-toggle .navlist li.has-ul a:after {
    display: none;
}

.navlist li.has-ul a:after {
    content: "";
    position: absolute;
    right: 5px;
    top: 7px;
    background-image: url(../images/arrow.svg);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    padding: 14px;
}

.navlist li.active a:after {
    transform: rotate(180deg);
}

.navlist li:hover .text {
    color: #ffffff;
}

.navlist a.nav-active .text {
    color: var(--fonts-color2);
    font-size: 16px;
}

.navlist .text {
    color: #ffffff;
    margin-left: 5px;
    font-size: 16px;
    font-weight: 100;
}

.admin-list li {
    padding-left: 16px;
    margin-left: 37px;
}

.admin-list .text {
    color: white;
    margin-left: 15px;
    font-size: 16px;
}

.leftnavbar .admin-list li {
    margin-left: 12px;
}

.leftnavbar .admin-list .text {
    display: none;
}

.leftnavbar-toggle .logo-img {
    width: 50%;
    margin: auto;
}

.leftnavbar-toggle .admin-list .text {
    display: inherit;
}

.leftnavbar-toggle {
    width: 90px;
}

.leftnavbar-toggle+.main {
    width: calc(100% - 80px);
    margin-left: 80px;
}

.leftnavbar-toggle .navlist .text {
    display: none;
}

.leftnavbar .credit-text {
    display: none;
}

.leftnavbar-toggle .credit-text {
    display: block;
}

.leftnavbar .navlist {
    padding: 0px 12px 0;
}

.leftnavbar-toggle .logo-img .logo-ex {
    display: block !important;
}

.leftnavbar-toggle .logo-img .logo-full {
    display: none !important;
}

img.user-icon-img {
    /* width: 50px;
    height: 50px; */
    width: 28px;
    height: 28px;
}


/* headercss */

.top-header {
    height: 90px;
    background-color: #ffffff;
    padding: 0 2rem;
    box-shadow: 4px 2px 9px 1px #85bf411c;
    position: fixed;
    z-index: 12;
    left: 330px;
    right: 0;
}

.leftnavbar-toggle+.main .top-header {
    left: 90px;
    z-index: inherit;
}

.leftnavbar-toggle+.main #toggle button {
    transform: rotate(180deg);
    transition: all 0.5s ease;
}

.notifications-tray .img-icon {
    margin-right: 1.2rem;
}

.greet-text {
    margin-left: 30px;
}

#toggle button {
    background-color: transparent;
    border: none;
    max-width: 28px;
    transition: all 0.5s ease;
}

.notification-1 {
    background-color: transparent;
    border: none;
    border-radius: 33px;
    width: 40px;
    height: 40px;
    box-shadow: 0px 0px 5px 1px #d1cdcd;
    margin-left: 22px;
}

.search-bar {
    position: relative;
}

.search-bar i {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #ccc;
    transform: translate(7px, 4px);
}

.search-bar input.form-control {
    border-radius: 23px;
    padding: 6px 10px 6px 40px;
    background-color: #F6F9FE;
    border: 1px solid rgb(79 173 205 / 22%);
}

.nav-user-img img.img-icon {
    /* margin: 0px 20px; */
}

.nav-user-img.nav-user-icon img {
    border-radius: 25px;
    margin-right: 10px;
}

/* dashboard end */

.mai_content {
    padding: 35px;
}

.service-box {
    margin-left: 15px;
}

.border-right {
    border-right: 2px solid #e9e9e9;
}

.chart_box {
    background-color: #ffffff;
}

.chart_header {
    color: #000000;
    background-color: #ffffff;
}

.progress {
    margin-bottom: 20px;
}

.card.progress_box {
    height: 100%;
}

/* dashboard end */

/* Data Collection Setup */
.client-list-1 {
    padding: 20px;
    background-color: var(--primary-color);
    border-radius: 15px;
    margin: 0;
    background: linear-gradient(180deg, #4c9b25, #7fc510b8);
}

.client-list-background {
    padding: 20px;
    background-image: url('/images/backgroundclinic.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin: 0;
}

.client-select-section {
    background-color: rgb(0 0 0 / 47%);
    border-radius: 10px;
    padding: 15px 0px;
}

.client-detail h5 {
    margin-bottom: 3px;
}

div#data-setup-client-select {
    margin-bottom: 8px;
}

.client-detail p {
    margin-bottom: 0px;
    color: #ffffff;
}

.client-image {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50px;
    background-color: #fff;
    border: 2px solid #658f43;
    text-align: center;

}

.client-image .client-short-name {
    font-size: 20px;
    font-weight: 600;
    line-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #658f43;
}

.client-image img {
    min-width: 50px;
    padding: 15px;
}

.userletter {
    font-size: 30px;
    font-weight: 400;
    line-height: 55px;
    color: #7cab55;
}

.select2-container {
    min-width: 200px;
}

.widthselect .select2-container {
    min-width: 372px;
}

.select2-container--default .select2-selection--single {
    background-color: #ffffff;
    border: 1px solid #fff6;
    border-radius: 5px;
    padding: 3px 10px;
    height: 35px;
    min-width: 200px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000000;
    line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 4px;
    right: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 6px 6px 0 6px;
    border-color: #000000 transparent transparent transparent;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0px 6px 6px 6px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #fff transparent;
}

.contact-icons ul li {
    display: inline-block;
    border-radius: 50px;
    line-height: 18px;
    cursor: pointer;
}

.contact-icons ul li.green {
    position: relative;
    height: 38px;
    width: 38px;
    text-align: center;
}

.green {
    background-color: rgb(175 175 175 / 52%);
    padding: 10px;
}

.contact-icons ul li.green i {
    color: #fff;
    font-size: 20px;
}

.contact-icons ul.contact-icons-submenu {
    width: 490px;
    background: #fff;
    margin-top: -5px;
    border-radius: 6px;
    display: none;
    right: 0;
    padding: 20px 20px 10px 20px;
    position: absolute;
    top: 100%;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.12);
}

.contact-icons-submenu li {
    height: 35px;
    text-align: left;
    width: 100%;
    position: relative;
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
}

.contact-icons-submenu li img {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    float: left;
}

.contact-icons-submenu li p {
    margin-bottom: 0;
    padding-left: 30px;
    font-weight: 500;
}

.contact-icons ul li:hover .contact-icons-submenu {
    display: inline-table;
    bottom: 0;
    right: 0;
    background-color: #fff;
    z-index: 9999;
}

.contact-icons ul.contact-icons-submenu h6 {
    margin: 10px 0px 10px 0px;
    text-align: left;
    padding: 10px 10px 5px 0;
    border-bottom: 1px solid #658f4338;
    font-weight: 600;
    color: #658f43;
}

table.therapy-team-info {
    border-collapse: collapse;
    width: 450px;
}

.therapy-team-info tr:nth-of-type(odd) {
    background: #f5f5f5;
}

.therapy-team-info th {
    background: #c8deb6;
    color: #000;
}

.therapy-team-info td,
.therapy-team-info th {
    padding: 10px;
    text-align: left;
}

.client-list .btn-secondary {
    color: #000;
    background-color: #ffffff;
    border-radius: 30px;
    margin-left: 25px;
}

.client-list .dropdown-toggle:empty::after {
    margin-left: 0;
    margin-top: 0px;
}

.btn.btn-secondary.dropdown-toggle:focus {
    box-shadow: none;
}

button.custom-toggle-button {
    display: flex;
    border: none;
    background: #fff;
    max-height: 30px;
    max-width: 30px;
    padding: 12px 10px;
    border-radius: 50px;
}

.data-setup-client-section {
    margin: 8px 0.5rem 0 0rem;
}

/* tab section */
.nav.tab-style {
    border-block-end: 0;
    margin-top: 5px;
    border-radius: 0;
    background-color: #c4dab291;
    border: 1px solid #c4dab2;
    border-bottom: none;
    padding: 0;
}

.nav.tab-style .nav-link.active {
    background-color: #7cab55;
    color: #ffffff;
    border-color: transparent;
}

.nav.tab-style .nav-link {
    color: #000000;
}

.nav.tab-style .nav-link {
    border-radius: 0;
    padding: 6px 16px;
}

.nav.tab-style .nav-tabs .nav-link.active {
    border-color: transparent;
}

.nav.tab-style .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border: 1px solid #c4dab2;
}

/* tab-content */
.tab-content {
    padding: 15px;
    margin-top: 0;
    border-radius: 0;
    border: 1px solid #c4dab2;
}

.data-btn {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
}

.active-btn {
    background-color: var(--main-color);
    padding: 10px 20px;
    border-radius: 5px;
    color: #ffffff;
    margin-right: 10px;
    border: 1px var(--main-color);
}

.active-btn:hover {
    color: #fff;
    background-color: var(--primary-color);
    border: var(--primary-color);
}

.disabled-btn {
    padding: 10px 20px;
    border-radius: 5px;
    color: #658f43;
    border: 1px solid #7cab55;
}

.disabled-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 5px;
}

.skill-btn {
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--primary-color);
    border: 1px solid #7cab55;
    width: auto;
}

.skill-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.skill-btn:disabled {
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--primary-color);
    border: 1px solid #7cab55;
}

div#rateDurationTimer {
    margin: 10px 0px;
}

/* modal */
.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 500;
    font-size: 22px;
}

.top-section {
    padding: 16px;
    box-shadow: 0px 0px 6px 0px #00000026;
}

.modal-body .top-section h3 {
    margin-bottom: 1rem;
    font-size: 20px;
    font-weight: 500;
    color: #658f43;
    border-bottom: 1px solid #658F43;
    padding: 10px 0;
}

.bottom-section {
    padding: 16px;
    box-shadow: 0px 0px 6px 0px #00000026;
}

.modal-body .bottom-section h3 {
    margin-bottom: 1rem;
    font-size: 20px;
    font-weight: 500;
    color: #658f43;
    border-bottom: 1px solid #658F43;
    padding: 10px 0;
}

.modal-header {
    background-color: var(--primary-color);
    border-bottom: transparent;
}

.modal-content {
    border: none;
}

.modal-header button.btn-modal-close {
    border: none;
    background: transparent;
}

.modal-header button.btn-modal-close svg {
    height: 30px;
    width: 30px;
}

.indicator {
    background-color: #c4dab291;
    padding: 10px 15px;
    margin-bottom: 10px;
}

.indicator .modal-path {
    margin-bottom: 0px;
}

.indicator span {
    margin: 0px 10px;
}

.btn-close:focus {
    box-shadow: none;
}

span.instruction-label {
    font-size: 14px;
    margin-top: 0;
    font-weight: 400;
    color: #9b9a9a;
}

/* target section */
.target-status-dropdown .target-status-name {
    background-color: #f1f9f1;
    width: 160px;
    height: 35px;
    border: none;
}

/* manage user */

/* add user */
.table-inner-section {
    box-shadow: 0px 0px 3px 0px #00000026;
    background-color: #fff;
    padding: 20px 20px;
    border-radius: 5px;
}

.user-details .form-label {
    margin-top: 10px;
    margin-bottom: 5px;
}

.table-outer-section .user-details h4 {
    margin: 5px 0px;
    font-size: 16px;
    border-radius: 3px;
    padding: 10px 15px;
    /* box-shadow: 0px 2px 5px #00000057; */
    color: #000;
    padding-bottom: 8px;
    background-color: #a0c78194;
    font-weight: 700;
}

.submit-btn {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    padding: 8px 26px;
    border-radius: 5px;
    color: #ffffff;
}

button.submit-btn:hover {
    color: #ffffff;
    background-color: var(--primary-color);
}

.cancel-btn {
    border: 1px solid #BAB5B5;
    padding: 8px 26px;
    border-radius: 5px;
    color: #666;
}

input.form-control {
    height: 35px;
    font-size: 15px;
}

input.form-control::placeholder {
    color: #c3c3c396;
    font-size: 15px;
    font-weight: 400;
}

.form-select {
    height: 36px;
    font-size: 15px;
}

.form-select:focus {
    box-shadow: none;
    border-color: #5c5c5c;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #5c5c5c;
}

.user-pwd {
    position: relative;
}

.user-pwd .login-icon {
    position: absolute;
    top: 36px;
    right: 35px;
    transform: translate(10px, 10px);
}

/* user list */
.button-section {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    margin-top: 10px;
}

/* data table */
.card.progress_box.add-data-table {
    margin-top: 20px;
}

table#datatable tr th:first-child:before,
table#datatable tr th:first-child:after {
    display: none;
}

.table-responsive.dataTable.no-footer {
    border-bottom: 1px solid rgb(223 215 215 / 30%);
}

.table-responsive.dataTable.no-footer tr {
    white-space: nowrap;
}

.action-list {
    cursor: pointer;
}

td.action-list.d-flex {
    padding-bottom: 18px;
}

.doc-img {
    width: 30%;
}

ul.action-icons {
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 0px;
    margin-bottom: 0px;
}

ul.action-icons li {
    margin-right: 15px;
}

a.paginate_button.current {
    margin: 0px 15px;
}

.action-list img {
    height: 18px;
}

.dataTables_wrapper .dataTables_length select {
    border: none;
    border-radius: 3px;
    background-color: #f1f1f1;
    padding: 6px 10px 6px 4px;
}

[type=search] {
    outline-offset: 0px;
}

table.dataTable.display>tbody>tr>td {
    border-top: 1px solid rgb(165 165 165 / 15%);
}

table.dataTable tbody th,
table.dataTable tbody td {
    padding: 10px 10px;
}

table.dataTable>thead>tr>th,
table.dataTable>thead>tr>td {
    padding: 10px;
    border-bottom: 1px solid rgb(187 178 178 / 30%);
    color: #000;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: 1px solid rgb(187 178 178 / 30%);
}

.dataTables_scroll .dataTables_scrollBody {
    max-height: 475px !important;
    height: unset !important;
}

.dataTables_wrapper .paging_simple_numbers a.paginate_button.current,
.dataTables_wrapper .paging_simple_numbers a.paginate_button.current:hover {
    border-radius: 50px;
    background-color: #7cab55;
    color: #fff !important;
    border: none;
    padding: 4px;
    width: 30px;
    height: 30px;
}

.dataTables_wrapper .paging_simple_numbers span a.paginate_button {
    border-radius: 50px;
    background-color: #e3e3e3;
    border: none;
    padding: 4px;
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.dataTables_wrapper .paging_simple_numbers span a.paginate_button:hover {
    background: #666;
    color: #fff;
    border: none;
}

a#client-list_next,
a#client-list_previous {
    background: none;
    color: #000 !important;
    border: none;
}

a#client-list_next:hover,
a#client-list_previous:hover {
    color: #7cab55 !important;
}

a#client-list_previous.disabled,
a#client-list_next.disabled {
    color: #979797 !important;
}

.dataTables_wrapper .dataTables_paginate a.paginate_button.previous,
.dataTables_wrapper .dataTables_paginate a.paginate_button.next {
    background: none;
    color: #000 !important;
    border: none;
}

.dataTables_wrapper .dataTables_paginate a.paginate_button.previous:hover {
    color: #7cab55 !important;
    background: none;
    border: none;
}

.dataTables_wrapper .dataTables_paginate a.paginate_button.next:hover {
    color: #7cab55 !important;
    background: none;
    border: none;
}

form#target-form {
    max-height: 750px;
    overflow-y: auto;
}

table a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

div.dataTables_wrapper div.dataTables_filter {
    margin-bottom: 15px;
}

.dataTables_scrollHead {
    background-color: #a0c78194;
    ;
}

table.dataTable>tbody>tr.odd {
    background-color: #f9fbf7;
}

/* data table */

/* add client */
.table-outer-section h4 {
    margin-bottom: 0;
    margin-top: 1rem;
    font-weight: 500;
    font-size: 28px;
}

.sec-address {
    margin-top: 20px;
    margin-bottom: 0;
}

.same-address {
    display: flex;
    justify-content: end;
    margin-top: 5px;
}

.same-address p {
    font-size: 14px;
    font-weight: 700;
}

.client-profile-pic {
    max-width: 50px;
    max-height: 50px;
    overflow: hidden;
    border-radius: 50px;
    margin-top: 10px;
}

/*client list */
a.submit-btn:hover {
    color: #ffffff;
    background-color: #658f43;
}

/* accordion */
.reset-btn.btn-db {
    padding: 10px 20px;
    border-radius: 5px;
    color: #ffffff;
    background-color: #4c4c4c8a;
}

.reset-btn {
    padding: 10px 20px;
    border-radius: 5px;
    color: #ffffff;
    background-color: #7cab55;
}

.reset-btn:hover {
    color: #ffffff;
}

.accordion {
    margin-top: 20px;
}

.accordion-heading {
    color: #000000;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 10px 15px;
    cursor: pointer;
    background-color: #E7ECE5;
    margin-bottom: 5px;
    border-radius: 3px;
    position: relative;
}

.accordion-heading.active {
    background-color: #a0c78194;
}

button.btn-db {
    border: none;
}

select.reset-btn.btn-db {
    background-color: #fff;
    color: #c7c7c7;
    padding: 5px 30px 5px 10px;
    border: 1px solid #e1e1e1;
}

select.reset-btn.btn-db:hover {
    color: #c7c7c7;
}

select.reset-btn {
    background-color: #fff;
    color: var(--primary-color);
    padding: 10px 30px 10px 10px;
    border: 1px solid #658f43;
}

select.reset-btn:hover {
    color: var(--primary-color);
}

.accordion-heading.button-down::before {
    content: "";
    position: absolute;
    right: 15px;
    z-index: 11;
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    transform: rotate(225deg);
    transition: all 0.5s;
    top: 14px;
}

.accordion-heading.button-down::after {
    top: 10px;
    transform: rotate(130deg);
}

.active.accordion-heading::before {
    transform: rotate(45deg);
    top: 18px;
}

.not-active.accordion-heading::before {
    transform: rotate(0deg);
}

.accordion-contents {
    display: none;
    background: #FFFAFA;
    padding: 15px 6px;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* manage library */
.form-switch {
    padding-left: 2em;
}

.switch-btn .switch-toggle {
    margin-top: 0px;
    margin-left: 0px;
}

.form-switch .switch-toggle {
    width: 35px;
    height: 20px;
}

.switch-toggle:checked {
    background-color: var(--primary-color);
    border: 1px solid #658f43;
}

#program-library-select {
    order: 2;
}

#target-program-select {
    order: 1;
}

#target-domain-select {
    order: 2;
}

#target-library-select {
    order: 3;
}

/* manage library */
.table-outer-section .container-fluid {
    margin-top: 5rem;
}

.swal-button-container .swal-button--cancel:focus {
    box-shadow: none;
}

.swal-button--danger:focus {
    box-shadow: none;
}

.pointer {
    cursor: pointer;
}

.label-text {
    font-size: 12px;
    font-weight: 500;
    color: #685f5f;

}

/* Assessment tool */
label.assignment span.select2.select2-container.select2-container--default {
    min-width: 100%;
}

label.assignment {
    width: 100%;
}

.user-details .select2-container .select2-search--inline .select2-search__field {
    margin-top: 10px;
    margin-left: 12px;
    padding: 0;
    max-width: 100%;
    height: 24px;
}

.user-details .select2-container--default .select2-selection--multiple {
    border: 1px solid #ced4da;
    padding-bottom: 8px;
}

.user-details .form-control[type=file] {
    overflow: hidden;
    line-height: 28px;
}

.assign-head {
    font-size: 14px;
}

/* Assessment tool */

/* prompt code */
.prompt-code-content {
    margin: 10px 0;
}

/* prompt code */

.add-data-table table.dataTable thead tr {
    background-color: #c4dab2;
}

.add-task-plus {
    position: relative;
}

/* Set up tab */
.inner-tab .nav-link:focus,
.nav-link:hover {
    color: var(--primary-color);
}

.inner-tab .nav-link {
    border-radius: 0;
    color: #ccc;
    padding-left: 0;
    padding-right: 0;
}

.inner-tab .nav-item {
    margin-right: 25px;
}

.inner-tab .nav-link:hover {
    color: #658F43;
}

.inner-tab ul.nav.nav-tab.nav-pills {
    border-bottom: 2px solid #e9e9e9;
    height: 41px;
}

.inner-tab .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--primary-color);
    background-color: transparent;
    border-bottom: 2px solid #658f43;
    padding-left: 0;
    padding-right: 0px;
}

.inner-tab .tab-pane .active {
    background-color: #fff;
}

.task-add-box {
    position: relative
}

.task-append-box a.remove-input {
    position: absolute;
    right: 40px;
    top: 33px;
    background-color: #ff0000;
    height: 30px;
    width: 30px;
    text-align: center;
    border-radius: 20px;
    color: #fff;
    font-size: 30px;
    line-height: 26px;
}

.task-append-box a.add-more-task {
    position: absolute;
    right: 40px;
    top: 33px;
    background-color: #59ad59;
    height: 30px;
    width: 30px;
    text-align: center;
    border-radius: 20px;
    color: #fff;
    line-height: 30px;
    font-size: 26px;
}

.task-add-box a.add-more-task {
    position: absolute;
    right: 40px;
    top: 35px;
    background-color: #59ad59;
    height: 30px;
    width: 30px;
    text-align: center;
    border-radius: 20px;
    color: #fff;
    line-height: 30px;
    font-size: 26px;
}

.task-add-box a.remove-more-task {
    position: absolute;
    right: 80px;
    top: 35px;
    background-color: #ff0000;
    height: 30px;
    width: 30px;
    text-align: center;
    border-radius: 20px;
    color: #fff;
    line-height: 27px;
    font-size: 26px;
}

.tab-pane .set-up-heading h3 {
    font-size: 22px;
}

.inner-tab .card.progress_box.add-data-table {
    margin-top: 6px;
}

.mastery-form {
    box-shadow: 0px 0px 3px 0px #00000026;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}

.default-phase-heading {
    font-size: 20px;
    background: #e7f1e4;
    padding: 10px;
    border-radius: 5px;
}

.input-date-line input {
    padding: 0;
    font-size: 13px;
    text-align: center;
}

.setup-program-select-dropdown span.select2-selection.select2-selection--single {
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 5px;
    /* padding: 7px 10px;
    height: 42px; */
    /* min-width: 209px; */
    padding: 2px 10px;
    height: 35px;
    min-width: unset;
    width: 100%;
}
.setup-program-select-dropdown .select2.select2-container{
    min-width: unset;
    width: 100% !important;
}

.setup-program-select-dropdown .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 6px 6px 0 6px;
    border-color: #a1a1a1 transparent transparent transparent;
}

.setup-program-select-dropdown .select2-container--default .select2-selection--single .select2-selection__arrow {
    /* top: 8px; */
    top: 4px;
    right: 8px;
}

.sitting .form-check-inline {
    display: inline-block;
    padding: 8px 15px 7px 40px;
    border-radius: 5px;
    box-shadow: 0px 0px 4px #9f9f9f73;

}

.sitting .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.sitting label.form-check-label {
    margin-left: 3px;
}

#programInformation span {
    word-wrap: break-word;
}

/* Set up tab */
.dataTables_scrollHeadInner {
    width: 100% !important;
}

table.dataTable thead>tr>th.sorting {
    padding-right: 53px !important;
}

/* ==== Collect data ==== */

/* BIP data */
.BIP-branch {
    padding: 20px 0 5px 20px;
    width: 700px;
    max-width: 90%;
    margin: auto;
}

.BIP-list {
    position: relative;
    min-height: 120px;
}

.BIP-list:before {
    content: "";
    height: 100%;
    border-left: 1px solid #444;
    position: absolute;
    left: -20px;
}

.BIP-list:first-child:before {
    top: 40%;
}

.BIP-list:after {
    content: "";
    width: 20px;
    transition: border 0.5s;
    border-top: 1px solid #444;
    position: absolute;
    left: -20px;
    top: 40%;
}

.BIP-list:last-child:before {
    width: 10px;
    height: 40%;
}

.BIP-list:last-child:after {
    height: 10px;
    border-top: none;
    transition: border 0.5s;
    border-bottom: 1px solid #444;
    margin-top: -9px;
}

.BIP-list .BIP-head {
    border: 1px solid #ccc;
    padding: 10px 15px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 2px rgb(204, 204, 204);
    margin-bottom: 10px;
    position: relative;
}

.BIP-list .BIP-head .bip-icon {
    position: absolute;
    right: 15px;
    top: 10px;
}

.bip-content {
    display: none;
    background-color: #ffffff;
    color: #000;
    font-size: 14px;
    font-weight: 300;
    padding: 10px;
    width: 250px;
    position: absolute;
    right: -170px;
    top: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 3px #bdbdbd9e;
    z-index: 99;
    max-height: 220px;
    overflow: scroll;
}

/* Hover */
.bip-icon:hover .bip-content {
    display: block;
    z-index: 9999;
}

.BIP-list .BIP-head:hover {
    background-color: #00800014;
    cursor: pointer;
    color: #658f43;
    border: 1px solid #658f43;
}

.BIP-list .BIP-head .BIP-text {
    font-weight: 100;
    margin-top: 15px;
    background: #f3f3f3;
    width: 100%;
    padding: 10px 15px;
    display: inline-block;
    max-height: 200px;
    overflow: auto;
}

.BIP-list .BIP-head:hover .BIP-text {
    color: #000;
    background-color: #fff;
}

.BIP-list .BIP-head .BIP-text:focus-visible {
    outline: #bdbdbd;
}

/* BIP data */

/* Behavior-data */
.add-behavior-icon {
    margin-left: 10px;
    color: #658f43;
}

.add-folder-icon {
    margin-left: 10px;
    color: #658f43;
    margin-top: 40px;
}

.form-check .switch-btn input.form-check-input.pointer.library-checkbox {
    margin-left: 0;
}

input.form-check-input.skill-instruction {
    margin-top: 3px;
    margin-right: 10px;
}

/* collect-frequency */
.minus-icon-data {
    padding: 2px 12px;
    border-radius: 30px;
    background-color: #ff0000;
    border: none;
    color: #ffffff;
    font-size: 17px;
}

.plus-icon-data {
    padding: 2px 10px;
    border-radius: 30px;
    background-color: #658F43;
    border: none;
    font-size: 16px;
    color: #ffffff;
}

input.add-minus-value {
    text-align: center;
    border: 1px solid #c4dab2;
    padding: 2px 8px 2px 8px;
    width: 45px;
    margin: 0 10px;
    border-radius: 3px;
}

button.btn.stop-btn {
    padding: 9px 26px;
    border-radius: 5px;
    color: #ffffff;
    background-color: #dd4d5b;
}

button.btn.stop-btn:hover {
    background-color: #dc3545;
}

table.table.table-bordered.table-striped.clipboard-table td {
    white-space: nowrap;
}

.pi-form .head-btn {
    border-bottom: 1px solid #5c5c5c26;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.blink input {
    animation: blink 1s linear infinite;
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

/* Data collection graph Start*/
.behavior-graph-select-dropdown span.select2-selection.select2-selection--single {
    background-color: white;
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 7px 10px;
    height: 42px;
    min-width: 200px;
}

.behavior-graph-select-dropdown .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 7px 7px 0px 7px;
    height: 0;
    left: 50%;
    margin-left: -10px;
    margin-top: 2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.behavior-graph-select-dropdown .select2-container {
    max-width: 470px;
    min-width: 100%;
}

/* Data collection graph End*/

/*table css**/
.table__head {
    color: #000;
    background-color: #a0c78194;
    white-space: nowrap;
    border-bottom: 2px solid #c4dab2;
}

.therapy-table img {
    height: 15px;
    width: 15px;
}

.table-bordered td,
.table-bordered th {
    border: 0px solid #FFF;
}

tr.table-data-table.custm th:first-child {
    /* width: 40%; */
}

tr.table-data-table.custm th:last-child {
    width: 20%;
}

.table-data-table {
    white-space: nowrap;
}

/* collect-target-table */
.divTable {
    width: 100%;
}

.divTableRow.table-thead {
    color: #000;
    background-color: #a0c78194;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 0px;
}

.divTableHeading {
    background-color: #EEE;
}

.divTableCell,
.divTableHead {
    padding: 3px 10px;
}

.sitting-active-btn {
    background-color: var(--main-color);
    padding: 10px 20px;
    border-radius: 5px;
    color: #ffffff;
}

.sitting-active-btn:hover {
    color: #fff;
    background-color: var(--primary-color);
}

.save-btn {
    background-color: #4fadcd;
    padding: 9px 26px;
    border-radius: 5px;
    color: #ffffff;
}

.save-btn:hover {
    color: #fff;
    background-color: #09a7dc;
}

.duration-td {
    vertical-align: bottom;
}

.timer-btn {
    border: 1px solid #BAB5B5;
    padding: 8px 16px;
    border-radius: 10px;
    color: #000;
    margin-bottom: 5px;
}

.timer-btn img.start-btn {
    padding-bottom: 2px;
}

td#timer {
    padding-top: 3rem;
}

/* sitting-button */
.divTableRow.content-section {
    background-color: #f3f7eb;
    padding: 15px;
    border: 1px solid #7cab55;
    border-radius: 10px;
}

.collect-data-sitting {
    padding: 15px 15px 15px 0;
    margin: 0 auto 15px;
    border-bottom: 1px solid #83af324a;
}

.sitting-btn button {
    width: 100px;
    border-radius: 50px;
}

.sitting-primary-btn {
    background-color: #7cab55;
    padding: 10px 20px;
    border-radius: 5px;
    color: #ffffff;
    border: 1px solid #7cab55;
}

.sitting-secondary-btn {
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--primary-color);
    border: 1px solid #658f43;
    background-color: #fff;
}

.divTableRow.table-data .divTableCell,
.divTableRow.table-thead .divTableCell {
    width: 40%;
    display: flex;
    align-items: center;
}

.divTableRow.table-thead .divTableCell:first-child,
.divTableRow.table-data .divTableCell:first-child {
    width: 5%;
}

.divTableRow.table-data {
    border-bottom: 1px solid #cccccc54;
    padding: 5px 0;
}

.divTableCell select.form-select {
    background-color: #f6f9fe;
    border: 1px solid #dae3f1;
    width: 160px;
    font-size: 14px;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
    max-height: 500px;
}

.trials-btn {
    padding: 7px 15px;
    border-radius: 25px;
    color: #2c89a9;
    border: 1px solid #4fadcd7a;
    background-color: #eaf2ff;
    font-size: 16px;
    width: 200px;
}

/* Therapy team */
tr.unread-msg {
    background-color: #fbe5e9;
}

.therapy-filter.dropdown a.btn.dropdown-toggle {
    background-color: #7cab55;
    color: #fff;
    width: 120px;
}

.therapy-filter.dropdown ul.dropdown-menu {
    min-width: 8rem;
}

tr {
    white-space: nowrap;
   
}

/* pagination */
.therapy-pagination .page-item.active .page-link {
    text-align: center;
    border-radius: 50px;
    background-color: #7cab55;
    color: #fff !important;
    border: none;
    padding: 5px 12px;
}

.therapy-pagination .page-link {
    border: none;
    color: #6c757d;
}

.therapy-pagination .page-link:hover {
    z-index: 2;
    border-radius: 30px;
    color: #000;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.therapy-pagination .page-link:focus {
    z-index: 3;
    color: #000;
    background-color: #e9ecef;
}

.therapy-pagination .page-item:last-child .page-link {
    color: #658f43;
}

.form-check.form-switch.read-switch {
    width: 80px;
    float: right;
    margin-top: 5px;
}

.therapy-srch input {
    border: 1px solid #aaa;
    border-radius: 3px;
    padding: 5px;
    background-color: transparent;
    color: inherit;
    margin-left: 0.5em;
}

.custom-button {
    background-color: rgb(240, 39, 39);
}

.custom-button.swal-button:not([disabled]):hover {
    background-color: rgb(240, 39, 39);
}

.custom-button-success {
    background-color: #7cab55;
}

.custom-button-success:not([disabled]):hover {
    background-color: #7cab55;
}

.sitting-master-btn {
    border: #2c292938;
    background-color: #2c292938;
}

.sitting-active-btn {
    border: #1b0cebe2;
    background-color: #1b0cebe2;
}

.shadow {
    box-shadow: none;
}

.col-auto.icon-card {
    flex: 0 0 auto;
    background-color: #ffffff;
    border-radius: 30px;
    margin-right: 10px;
    margin-top: 3px;
    height: 55px;
    width: 55px;
    text-align: center;
}

.icon.icon-shape {
    margin-top: 15px;
}

.icon.icon-shape svg#Outline {
    height: 25px;
    width: 30px;
}

.card-admin.border-0 {
    background-color: #dbf6fd;
    border-radius: 10px;
}

.card-bcba.border-0 {
    background-color: #dbf6fd;
    border-radius: 10px;
}

.card-cs.border-0 {
    background-color: #dbf6fd;
    border-radius: 10px;
}

.card-bt.border-0 {
    background-color: #dbf6fd;
    border-radius: 10px;
}

.card-client.border-0 {
    background-color: #dbf6fd;
    border-radius: 10px;
}

.card-admin svg#Outline {
    fill: #8acadb;
}

.card-bcba svg#Outline {
    fill: #8acadb;
}

.card-cs svg#Outline {
    fill: #8acadb;
}

.card-bt svg#Outline {
    fill: #8acadb;
}

.card-client svg {
    fill: #8acadb;
}

.num-count {
    position: absolute;
    cursor: default;
    font-size: 0.8rem;
    background: red;
    width: 18px;
    height: 18px;
    color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    top: -4px;
    right: 13px;
    box-sizing: border-box;
}

/* partial dropdown */

.tab-container-dropdown .tab-navigation-dropdown select.partial-dd.interval-select {
    background-color: #d9e6cf;
    border: 1px solid #7cab55;
    color: #000;
}

.tab-container-dropdown .tab-navigation-dropdown select.interval-select {
    width: 250px;
    border-radius: 5px;
    background-color: #f6f9fe;
    border: 1px solid #7cab55;
}

/* partial dropdown */
.pi-form {
    box-shadow: 0px 0px 3px 0px #00000026;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-top: 15px;
}

.pi-form ul {
    padding-left: 0rem;
}

ul.partial-checkboxes li {
    display: inline-block;
    width: 50px;
    margin-right: 10px;
}

.checkbox.yes,
.checkbox.no {
    display: block;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.checkbox.yes input,
.checkbox.no input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox.yes input:checked~.checkbox__checkmark:after {
    opacity: 1;
    top: 4px;
    left: 9px;
}

.checkbox.yes .checkbox__checkmark {
    position: absolute;
    top: 3px;
    padding: 12px;
    transform: translateY(-50%);
    right: -9px;
    background-color: #658F43;
    height: 20px;
    width: 20px;
    transition: background-color 0.25s ease;
    border-radius: 24px;
}

.checkbox.yes .checkbox__checkmark:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 9px;
    width: 7px;
    height: 13px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 1;
}

.checkbox.yes .checkbox__body {
    height: 50px;
    border: 2px solid #658F43;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.25s ease, background 1s ease, color 0.25s ease;

}

/* crossmark */
.checkbox.no input:checked~.checkbox__crossmark:after {
    opacity: 1;
    top: 5px;
    left: 11px;
}

.checkbox.no input:checked~.checkbox__crossmark:before {
    opacity: 1;
    top: 5px;
    left: 11px;
}

.checkbox.no .checkbox__crossmark {
    position: absolute;
    top: 3px;
    padding: 12px;
    transform: translateY(-50%);
    right: -9px;
    background-color: #dc3545;
    height: 20px;
    width: 20px;
    transition: background-color 0.25s ease;
    border-radius: 24px;
}

.checkbox.no .checkbox__crossmark:before {
    position: absolute;
    content: "";
    display: block;
    width: 2px;
    height: 0px;
    border: solid #ffffff;
    border-width: 0 0px 15px 0;
    transform: rotate(-45deg);
    left: 11px;
    top: 5px;
}

.checkbox.no .checkbox__crossmark:after {
    position: absolute;
    content: "";
    display: block;
    width: 2px;
    height: 0px;
    border: solid #ffffff;
    border-width: 0 0px 15px 0;
    transform: rotate(45deg);
    left: 11px;
    top: 5px;
}

.checkbox.no .checkbox__body {
    height: 50px;
    border-radius: 10px;
    border: 2px solid #dd4d5b;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.25s ease, background 1s ease, color 0.25s ease;

}

/* crossmark*/
.checkbox.no-data .checkbox__body {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 2px solid #a3a3a3;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.25s ease, background 1s ease, color 0.25s ease;

}

.checkbox.no-data {
    position: relative;
}

.checkbox.no-data img {
    position: absolute;
    top: 15px;
    left: 15px;
}

.progress.progress-striped {
    margin: 20px 0 35px 0;
    position: relative;
}

.progress p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    width: 100%;
    position: absolute;
    top: 25px;
}

.progress span {
    color: #525252;
}

.progress-striped .progress-bar {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    border-radius: 20px;
}

.progress {
    overflow: inherit;
    height: 15px;
    background-color: #ccc;
    border-radius: 30px;
    margin-bottom: 10px;
}

.progress-bar {
    width: 0;
    height: 100%;
    color: #fff;
    text-align: center;
    background-color: #658f43;
}

/* Dashboard */
div#dashboard-chart {
    position: relative;
}

div#dashboard-chart .graph-footer {
    position: absolute;
    bottom: 0;
    left: 20px;
}

div#dashboard-chart .graph-footer h6 {
    font-size: 14px;
    font-weight: 700;
}

#dashboard-chart .apexcharts-legend-text {
    font-size: 14px !important;
}

#dashboard-chart .apexcharts-legend-series {
    margin: 0 15px !important;
}

/* #dashboard-chart .apexcharts-legend-series .apexcharts-legend-marker {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-right: 6px;
    border-style: solid;
    padding: 6px 15px;
} */

.apexcharts-legend-series.apexcharts-inactive-legend .apexcharts-legend-text {
    text-decoration: line-through;
}

/* Generalization */
.panel.box1 {
    padding: 16px;
}

.panel.box1 button {
    background-color: #eef2e9;
    border-radius: 10px;
    width: 100%;
    padding: 32px;
    color: #658f43;
    font-size: 20px;
    border: 4px solid #d9e6cf;
}

/* .panel.box1 button.active, */
.panel.box1 button:hover {
    background-color: #d2e7c3;
    border: 4px solid #a8d187;
}

.ul-frequency {
    padding-left: 0rem;
    margin-bottom: 0;
}

.ul-frequency li {
    display: inline-block;
    margin: 5px 5px 5px 0px;
}

.ul-frequency .frequency-btn li.active,
.ul-frequency .frequency-btn li:hover {
    border: 1px solid #4fadcdcc;
    padding: 10px 20px;
    border-radius: 10px;
}

.ul-frequency .frequency-btn li {
    border: 1px solid #D0D5DD;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    min-width: 182px;
}

.ul-frequency .frequency-btn li .form-check-input {
    margin-right: 8px;
    width: 18px;
    height: 18px;
}

.generalization-table th.note {
    max-width: 230px;
    min-width: 320px;
    white-space: initial;
}

.ul-frequency .frequency-btn li [type="radio"]:checked,
.ul-frequency .frequency-btn li [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.ul-frequency .frequency-btn li [type="radio"]:checked+label,
.ul-frequency .frequency-btn li [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.ul-frequency .frequency-btn li [type="radio"]:checked+label:before,
.ul-frequency .frequency-btn li [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #7c9b64;
    border-radius: 100%;
    background: #fff;
}

.ul-frequency .frequency-btn li [type="radio"]:checked+label:after,
.ul-frequency .frequency-btn li [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #658f43;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    transition: all 0.2s ease;
}

.ul-frequency .frequency-btn li [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    transform: scale(0);
}

.ul-frequency .frequency-btn li [type="radio"]:checked+label:after {
    opacity: 1;
    transform: scale(1);
}

table.table.table-bordered.table-striped.generalization-table>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: rgb(79 173 205 / 8%);
    border-bottom: 2px solid rgb(79 173 205 / 37%);
}

table.table.table-bordered.table-striped.generalization-table>tbody>tr:nth-of-type(even)>* {
    --bs-table-accent-bg: rgb(221 77 91 / 8%);
    border-bottom: 2px solid #dd4d5b5e;
}

/* color radio */
table.table.table-bordered.table-striped.generalization-table th {
    border: 2px solid rgb(153 187 125);
}

table.table.table-bordered.table-striped.generalization-table td {
    border: 2px solid rgb(79 173 205 / 37%);
}

table.table.table-bordered.table-striped.generalization-table>tbody>tr:nth-of-type(odd)>* .ul-frequency .frequency-btn li [type="radio"]:checked+label:after {
    background: #4fadcdcc;
}

table.table.table-bordered.table-striped.generalization-table>tbody>tr:nth-of-type(odd)>* .frequency-btn li [type="radio"]:not(:checked)+label:before,
table.table.table-bordered.table-striped.generalization-table>tbody>tr:nth-of-type(odd)>* .frequency-btn li [type="radio"]:checked+label:before {
    border: 1px solid #4fadcdcc;
}

table.table.table-bordered.table-striped.generalization-table>tbody>tr:nth-of-type(even)>* .ul-frequency .frequency-btn li [type="radio"]:checked+label:after {
    background: #dd4d5bad;
}

table.table.table-bordered.table-striped.generalization-table>tbody>tr:nth-of-type(even)>* .frequency-btn li [type="radio"]:not(:checked)+label:before,
table.table.table-bordered.table-striped.generalization-table>tbody>tr:nth-of-type(even)>* .frequency-btn li [type="radio"]:checked+label:before {
    border: 1px solid #dd4d5bad;
}

/* color checkbox */
table.table.table-bordered.table-striped.generalization-table>tbody>tr:nth-of-type(odd)>* .form-check-input {
    border-color: #4fadcdcc;
}

table.table.table-bordered.table-striped.generalization-table>tbody>tr:nth-of-type(odd)>* .form-check-input:checked {
    background-color: #4fadcdcc;
    border-color: transparent;
}

table.table.table-bordered.table-striped.generalization-table>tbody>tr:nth-of-type(even)>* .form-check-input {
    border-color: #dd4d5bad;
}

table.table.table-bordered.table-striped.generalization-table>tbody>tr:nth-of-type(even)>* .form-check-input:checked {
    background-color: #dd4d5bad;
    border-color: transparent;
}

td.note textarea#notesGeneralized {
    background-color: #ffffff;
    border: 1px solid rgb(79 173 205 / 37%);
    font-size: 15px;
}

.info-icon {
    position: relative;
}

.info-content {
    background: #4fadcd;
    border-radius: 6px;
    position: absolute;
    top: 40px;
    padding: 10px;
    display: none;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.12);
}

.info-content span {
    margin-bottom: 0px;
    font-size: 14px;
    color: #fff;
}

.info-img:hover .info-content {
    display: block;
    background: #4fadcd;
    z-index: 9999;
}

/* Generalization */

/* User Role */
.accordion__head {
    background-color: #a0c78194;
    padding: 15px 20px;
    border-radius: 3px;
}

.accordion__head h5 {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
}

.acnav__label {
    position: relative;
}

.acnav__label span input.selectall {
    position: absolute;
    right: 16px;
}

.nav-wrap {
    width: 100%;
}

[hidden] {
    display: none;
    visibility: hidden;
}

.acnav {
    width: 100%;
}

.acnav__list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.acnav__list--level1 {
    border: 1px solid #fcfcfc;
}

.has-children>.acnav__label::before {
    content: "";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    margin-right: 1em;
    transition: transform 0.3s;
    background-color: #c8deb69e;
    padding: 6px 8px;
    border-radius: 5px;
}

.has-children.is-open>.acnav__label::before {
    transform: rotate(135deg);
    background-color: #f5d4d400;
    color: #ef4747;
}

.acnav__link,
.acnav__label {
    display: block;
    padding: 10px 16px;
    margin: 0;
    cursor: pointer;
    color: #000000;
    background: #ffffff;
    box-shadow: inset 0 -1px #e5e7e4;
    transition: color 0.25s ease-in, background-color 0.25s ease-in;
}

.acnav__link:focus,
.acnav__link:hover,
.acnav__label:focus,
.acnav__label:hover {
    color: #000000;
    background: #eef7e6;
}

.acnav__link--level2,
.acnav__label--level2 {
    padding-left: 3em;
    background: #ffffff;
}

.acnav__link--level2:focus,
.acnav__link--level2:hover,
.acnav__label--level2:focus,
.acnav__label--level2:hover {
    background: #eef7e6;
}

.acnav__link--level3,
.acnav__label--level3 {
    padding-left: 5em;
    background: #ffffff;
}

.acnav__link--level3:focus,
.acnav__link--level3:hover,
.acnav__label--level3:focus,
.acnav__label--level3:hover {
    background: #eef7e6;
}

.acnav__link--level4,
.acnav__label--level4 {
    padding-left: 7em;
    background: #ffffff;
}

.acnav__link--level4:focus,
.acnav__link--level4:hover,
.acnav__label--level4:focus,
.acnav__label--level4:hover {
    background: #c8deb6;
}

.acnav__list--level2,
.acnav__list--level3,
.acnav__list--level4 {
    display: none;
}

.is-open>.acnav__list--level2,
.is-open>.acnav__list--level3,
.is-open>.acnav__list--level4 {
    display: block;
}

.role-permission {
    margin: 20px 0;
}

/* percentage css */
.percentage-section {
    padding: 15px;
    border: 1px solid #7cab55;
    border-radius: 10px;
    background: #f3f7eb;
}

.percentage-section p {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    background-color: #c4dab2;
    color: #000000;
    margin: -15px -15px 0px -15px;
    border-radius: 10px 10px 0px 0px;
    padding: 10px;
}

.percentage-section button.increment-btn {
    border: 1px solid #658f43;
    background-color: #658F43;
    padding: 9px 26px;
    border-radius: 5px;
    color: #ffffff;
}

.percentage-section button.decrement-btn {
    padding: 9px 26px;
    border-radius: 5px;
    color: #ffffff;
    background-color: #dd4d5b;
}

.percentage-section button.cancel-btn {
    border: 1px solid #BAB5B5;
    padding: 9px 26px;
    border-radius: 5px;
    color: #666;
    font-size: 16px;
}

div#programMaintenanceNames {
    background-color: #f3f7eb;
    padding: 15px;
    border: 1px solid #7cab55;
    border-radius: 10px;
}

/* Reports Module */
.clinical-card {
    margin: 10px 0;
}

.clinical-card .card {
    border-radius: 10px;
}

.clinical-card .icon img {
    width: 50%;
    margin-left: 20px;
}

.clinical-card .data h5 {
    margin-bottom: 0px;
}

.clinical-card .content button.skill-btn {
    font-size: 14px;
}

/* new card */
.card .doc-icon {
    position: relative;
    border-radius: 50%;
    display: block;
    margin: 10px auto 10px;
    height: 100px;
    width: 100px;
    text-align: center;
    border: 1px solid #658f43;
}

.card .doc-icon img {
    width: 50%;
    position: absolute;
    top: 18px;
    right: 28px;
    transform: translate(3px, 3px);
}

.list-head {
    margin: 20px 0px;
    background-color: #f9f7f7;
    padding: 10px;
    border-radius: 5px;
}

.list-head h6 {
    margin-bottom: 0;

}

/* TA Data */
.ta-content-section {
    background-color: #f3f7eb;
    padding: 15px;
    border: 1px solid #7cab55;
    border-radius: 5px;
    margin-bottom: 10px;
}

table.table.table-bordered.table-striped.ta-data-table th {
    border: 1px solid rgb(153 187 125);
}

table.table.table-bordered.table-striped.ta-data-table td {
    --bs-table-accent-bg: rgb(79 173 205 / 8%);
    border: 1px solid rgb(79 173 205 / 37%);
}

table.table.table-bordered.table-striped.ta-data-table button.btn.save-btn {
    background: #4fadcd;
    padding: 9px 9px 9px;
    border-radius: 5px;
    color: #fff;
}

table.table.table-bordered.table-striped.ta-data-table button.btn.stop-btn {
    background: #dd4d5b;
    padding: 14px 9px 14px;
    border-radius: 5px;
    color: #fff;
}

table.table.table-bordered.table-striped.ta-data-table .active-btn {
    background-color: var(--main-color);
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 14px;
    color: #ffffff;
    border: 1px var(--main-color);
}

textarea.form-control::placeholder {
    font-size: 14px;
    color: #c9c9c9;
}

table.table.table-bordered.table-striped.ta-data-table textarea.form-control {
    max-width: 70%;
    min-width: 250px;
}

.intervalduration {
    text-align: center;
    color: red;
    font-size: 17px;
}

.select2-container--open {
    z-index: 9999;
}

.notification {
    background-color: #555;
    color: white;
    text-decoration: none;
    padding: 15px 26px;
    position: relative;
    display: inline-block;
    border-radius: 2px;
}

.notification .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 5px 10px;
    border-radius: 50%;
    background-color: red;
    color: white;
    z-index: 0;
}

/* Nandan P  09/19/2024 starts */

.inboxsearchicon {

    margin-left: 330px;


}

.staffemail-form {
    border-radius: 6px;
    border: 1px solid #e0e6ed;
    box-shadow: 0 0 40px 0 rgba(94, 92, 154, .06);

}

.staffemail-form h5 {
    color: #3b3f5c;
    margin: 4px 8px 40px 8px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

.staffemail-form label {
    font-size: 15px;
    color: #888ea8;
    letter-spacing: 1px;
    padding-top: 0;
    margin-bottom: .5rem;
}

.staffemail-form :is(.form-select, .form-control) {
    height: 40px;
    border: 1px solid #bfc9d4;
    color: #3b3f5c;
    font-size: 15px;
    padding: 8px 10px;
    letter-spacing: 1px;
    padding: .25rem 1rem;
    border-radius: 6px;
    line-height: 19px;
}

.staffemail-form .card-body button {
    background-color: var(--primary-color);
    color: #ffffff;
}

.staffemail-form .form-button button:last-child {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.staffemail-form .form-button button:last-child:hover {
    box-shadow: 0 10px 20px -10px var(--primary-color);

}


.staffemail-form .form-button button:first-child {
    background-color: #ffffff;
    color: #777777;
    border-color: #e3e3e3;
}

.staffemail-form .form-button button:first-child:hover {
    box-shadow: 0 10px 20px -10px #979797;

}

.staffemail-form :is(.form-select:focus, .form-control:focus) {
    border-color: var(--primary-color);
    background-color: #fdfff7;
}

.staffemail-form textarea.form-control {
    height: auto;
    padding: .75rem 1rem;
}

/* Nandan P  09/19/2024 ends */
/* Nandan P  09/18/2024 starts */

.apexcharts-toolbar {
    right: 31px !important;
}

.toggle-edit {
    top: 24px;
    right: 24px;
    padding: 1px 6px;
    margin-top: -50px;
    ;
}

.toggle-edit i {
    font-size: 16px;
    font-weight: 500;
    color: #6e8192;
}


.tab-content-tab .card-body.current .dashboardchart {
    display: none;
}

.tab-content-tab .card-body.current .charteditor {
    display: block;
}



.charteditor .heading {
    text-align: center;
    color: #212121;
    font-weight: 600;
    height: 38px;
    padding: 9px 16px;
    margin-bottom: 0px;
    margin-right: 8px;
    border: 1px solid #e3e3e3;
    background-color: #fdfff7;
    border-radius: 4px;
}

.charteditor ul li.append {
    font-size: 14px;
}

.dashboardchart-btn,
.dashboardchart-btn:hover {
    color: var(--main-color);
    width: fit-content;
    bottom: 8px;
    right: 8px;
}


.tab-content-tab textarea {
    resize: none;
    /* Disables resizing */
}

.charteditor :is(.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active) {
    background-color: var(--main-color);
    color: #ffffff;
}

.charteditor .nav-link {
    color: var(--fonts-color1);
}

.charteditor .list-group {
    max-height: 300px;
    overflow: scroll;
    overflow-x: hidden;
}

.charteditor-keyboard input {
    padding-right: 50px;
}



.ui-keyboard {
    margin-top: 4px;
}

.ui-keyboard-button {
    background-color: #ffffff;
    border: none;
    color: #000000;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: 0px 0px 4px #00000015;
}


.ui-keyboard-button:focus-within {
    background-color: #f0ffe4;
}

/* .apexcharts-toolbar {
    display: none !important;
} */



/* Nandan P  09/18/2024 ends */

/* Nandan P 09/28/2024 */
.inboxstaff,
.inboxstaff h6,
.inboxstaff button,
.inboxstaff .dropdown-toggle {
    font-size: 13px;
}

.inboxstaff .email-inbox {
    width: 236px;
    padding: 20px;
}

.email-rightbar {
    width: calc(100% - 260px);
}

.inboxstaff .email-inbox,
.email-rightbar .card {
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 .75rem 1.5rem #12263f08;
}

.inbox-header {
    padding: 20px;
    padding-bottom: 0px;
}

.inbox-msg {
    padding-block: 20px;
    font-weight: 500;
}

.inbox-msg li a,
.inbox-msg li .teaser {
    color: #74788d;

}

.inbox-msg li span {
    color: #495057;
}

.inbox-msg li .badge {
    color: #ffffff;
}

.inbox-msg li {
    padding: 4px 20px;

}

.inbox-msg li:hover,
.inbox-msg li.asread {
    background-color: #f8f9fa;
}



.inboxstaff :is(.chart_header, .chart_box) {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.inboxstaff .nav-tabs-custom {
    border-bottom: 2px solid #eff2f7;
}

.inboxstaff .nav-tabs-custom .nav-item .nav-link {
    position: relative;
    border: none;
    color: #495057;
    font-weight: 500;
}


.inboxstaff .nav-tabs-custom .nav-item .nav-link:after {
    content: "";
    background: var(--primary-color);
    height: 2px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -1px;
    transition: all .25s ease 0s;
    transform: scale(0)
}

.inboxstaff .nav-tabs-custom .nav-item .nav-link.active {
    color: var(--primary-color)
}

.inboxstaff .nav-tabs-custom .nav-item .nav-link.active:after {
    transform: scale(1)
}


.inboxstaff .mail-list a {
    color: #74788d;
    line-height: 24px;
    padding: 5px 4px;
}

.inboxstaff .chat-user-box p.user-title {
    color: var(--bs-emphasis-color);
    font-weight: 500;
}

.inboxstaff .chat-user-box p {
    font-size: 12px;
    margin-bottom: 0px;
}

.inboxstaff a {
    text-decoration: none;
    color: #000000;
    padding: 8px 0px;
}

.inboxstaff .message-list {
    padding-left: 0px;
    margin-bottom: 0px;
}

.inboxstaff .checkbox-container {
    width: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.inboxstaff .checkbox-container>input {
    margin: 0px;
}

.mail-list i {
    width: 13px;
    height: 13px;
}

.message-list .checkbox-container+a.title {
    width: 150px;
}

.message-list .date {
    width: fit-content;
    text-wrap: nowrap;
    margin-left: auto;
}

.message-list .subject,
.chat-user-box p:last-child {
    flex: 1;
    padding-right: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 -18px 0;
}

.email-rightbar input[type="text"] {
    height: auto;
    font-size: 13px;
    color: #495057;
    padding-left: 40px;
}

.email-rightbar .fa-search {
    color: #74788d;
}

.inbox-menu li:hover .nav-link {
    color: var(--primary-color) !important;
    cursor: pointer;
}


.inbox-labels a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.addstaff .ck-editor__main>.ck-content {
    height: 200px;
}


.addstaff .modal-body i {
    color: var(--primary-color);
}


.addstaff .ck-editor {
    display: flex;
    flex-direction: column;
}

/* Basic button styles */
.person-button {
    display: inline-block;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin: 5px;
    color: #333;
    transition: background-color 0.3s;
}

/* Unchecked button styles */
.person-button:not(:checked) {
    background-color: #f0f0f0;
}

/* Checked button styles with specific colors */
#joe-button:checked {
    background-color: #2196f3;
}

#lauren-button:checked {
    background-color: #4caf50;
}

#rj-button:checked {
    background-color: #ff9800;
}

/* Hide the default checkbox input */
/* input[type="checkbox"] { 
    display: none; 
    } */

/* Styles for the circular dot */
.dot {
    display: inline-block;
    width: 12px;
    /* Adjust for desired dot size */
    height: 12px;
    /* Adjust for desired dot size */
    border-radius: 50%;
    /* Makes it a circle */
    margin-right: 8px;
    /* Space between dot and text */
    vertical-align: middle;
    /* Aligns dot vertically */
}

.note-editor.note-frame.fullscreen {
    background: #fff !important;
}

.note-modal-footer {
    margin-bottom: 24px !important;
}


.add-note-btn {
    padding: 0;
}

.addNoteModals .modal-dialog {
    max-width: 1200px;
    width: 100%;
}

.addNoteModals .modal-dialog .input-field label {
    margin-bottom: 5px;
}

.star {
    color: #ff0000;
}

.addNoteModals th.sorting {
    background-color: #c8deb6;
}


.add-notes-section .app-input {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.add-notes-section .input-field label {
    color: #7a7a7a;
    font-weight: 400;
    text-wrap-mode: nowrap;
}

.copy-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.add-notes-section textarea {
    height: 200px;
}

.addClientNote .modal-dialog {
    max-width: 1200px;
    width: 100%;
}

.addClientNote .modal-dialog .input-field label {
    margin-bottom: 5px;
}

.star {
    color: #ff0000;
}

.addClientNote th.sorting {
    background-color: #c8deb6;
}

.red-text {
    color: red !important;
}

ol>li {
    list-style: decimal
}

.sessionTabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sessionTabs li {
    padding: 10px;
    background-color: #f6f4f4;
    border-right: 1px solid white;
    cursor: pointer;
    transition: 0.2s;
}

.sessionTabs li.active,
.sessionTabs li:hover {
    background-color: #ddd;
}

.content>div:not(:first-child) {
    display: none;
}


.user-maill .select2-container--default .select2-selection--multiple {
    border: 1px solid #ced4da;
    padding-bottom: 8px;
    width: 346px;


}

.user-email .select2-container--default .select2-selection--multiple {
    width: 452px;
}

.user-email .select2-container--default .select2-dropdown--below {
    width: 452px !important;
}


.container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    /* border: 1px solid #ccc;
  border-radius: 5px; */
}

.info {
    margin-bottom: 20px;
}

.info ul {
    list-style: none;
    padding: 0;
}

.info li {
    margin-bottom: 5px;
}

.section {
    margin-bottom: 20px;
}

.section label {
    display: block;
    margin-bottom: 5px;
}

.section textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
}

/* 13/01/2025 */

.btn-fields .btn {
    text-transform: capitalize;
}


.drop-zone {
    /* max-width: 200px;
        height: 200px; */
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    color: #cccccc;
    border: 4px dashed #009578;
    border-radius: 10px;
}

.drop-zone--over {
    border-style: solid;
}

.drop-zone__input {
    display: none;
}

.drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    position: relative;
}

.drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
}

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

.sun-icon,
.moon-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* file upload */
.btcd-f-input {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btcd-f-input>div>input::-webkit-file-upload-button {
    cursor: pointer;
}

.btcd-f-wrp {
    cursor: pointer;
}

.btcd-f-wrp>small {
    color: gray;
}

.btcd-f-wrp>button {
    cursor: pointer;
    background: #f3f3f3;
    padding: 5px;
    display: inline-block;
    border-radius: 9px;
    border: none;
    margin-right: 8px;
    height: 35px;
}

.btcd-f-wrp>button>img {
    width: 24px;
}

.btcd-f-wrp>button>span,
.btcd-f-wrp>span,
.btcd-f-wrp>small {
    vertical-align: super;
}

.btcd-f-input>.btcd-f-wrp>input {
    z-index: 100;
    width: 100%;
    position: absolute;
    opacity: 0;
    left: 0;
    height: 37px;
    cursor: pointer;
}

.btcd-f-wrp:hover {
    background: #fafafa;
    border-radius: 10px;
}

.btcd-files>div {
    display: flex;
    align-items: center;
    background: #f8f8f8;
    border-radius: 10px;
    margin-left: 30px;
    width: 91%;
    margin-top: 10px;
    height: 40px;
}

.btcd-files>div>div {
    display: inline-block;
    width: 73%;
}

.btcd-files>div>div>small {
    color: gray;
}

.btcd-files>div>img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 10px;
}

.btcd-files>div>div>span {
    display: inline-block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.btcd-files>div>button {
    background: #e8e8e8;
    border: none;
    border-radius: 50px;
    width: 25px;
    height: 25px;
    font-size: 20px;
    margin-right: 6px;
    padding: 0;
}

.btcd-files>div>button:hover {
    background: #bbbbbb;
}

.card-staff.border-0 {
    background-color: #ffffff !important;
    border-radius: 2px;
}

.green {
    background-color: #d4edda !important;
    /* Light green */
}

.yellow {
    background-color: #fff3cd !important;
    /* Light yellow */
}

.red {
    background-color: #f8d7da !important;
    /* Light red */
}

/* avinash css code */
.floating-window-content {
    width: 250px;
    height: 50px;
    background-color: #658f43;
    box-shadow: 0px 12px 45px rgba(0, 0, 0, .15);
    margin: 0 0 10px 0;
    overflow: hidden;
    opacity: 0;
    padding: 5px;
}

.floating-window-content.open {
    height: 335px;
    opacity: 1;
}

.floating-window-content.popup-ani {
    -webkit-transition: all .8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-window-btn {
    width: 60px;
    height: 60px;
    background-color: #c4c4c4;
    float: right;
    box-shadow: 0px 12px 45px rgba(0, 0, 0, .3);
    z-index: 5;
    position: relative;
    border-radius: 29px 29px;
}

.floating-window-btn .img-fab img {
    padding: 5px;
}

.floating-window-btn .img-fab img {
    width: 100%;
    height: 60px;
    padding: 10px 10px 10px 10px;
}

.floating-window-btn .wrap {
    -webkit-transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
    transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
}

.floating-window-btn .ani {
    -webkit-transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
    transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
}

.floating-window-btn .close {
    background-position: -2px 1px;
    float: none;
    opacity: 1;
}

.floating-window-wrap {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 1005;
    display: flex;
    /* flex-direction: row-reverse; */
    gap: 5px;
}

.ba-settings {
    position: absolute;
    top: -25px;
    right: 0px;
    padding: 10px 20px;
    background-color: #555;
    border-radius: 5px;
    color: #fff;
}

.floating-window-content {
    display: none;
}

.floating-window-content.open {
    display: block;
}

.floating-window-wrap .content-header {
    padding: 5px;
    height: 40px;
    display: flex;
    align-items: center;
}

.floating-window-wrap .content-header h3 {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.floating-window-content .float-tab-btn {
    background-color: #fff;
}

.floating-window-content .nav-tabs {
    padding: 5px;
}

.floating-window-content .nav-tabs .nav-item {
    width: 50%;
}

.floating-window-content .nav-tabs .nav-item button {
    width: 100%;
    padding: 0;
    border-bottom: 2px solid #fff;
}

.floating-window-content .nav-tabs .nav-item button {
    width: 100%;
    padding: 0;
    border-bottom: 2px solid #fff;
}

.floating-window-content .nav-tabs .nav-item button.active {
    border-color: #658f43;
}

.floating-window-content button.nav-link:hover {
    border: none;
    border-bottom: 2px solid #fff;
}


.floating-window-content .nav-tabs .nav-item button img {
    width: 30px;
}

.floating-window-content .tab-content {
    border: none;
    padding: 0;
    margin-top: 5px;
}

.floating-window-content .tab-left-content ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.floating-window-content .tab-left-content ul li {
    padding: 8px;
    background-color: #fff;
}

.floating-window-content .tab-left-content ul li span {
    padding: 8px;
    background-color: #fff;
    font-weight: 600;
}

.floating-window-content button.nav-link {
    border: none;
}


.floating-window-content .tab-right-content {
    max-height: 230px;
    height: 100%;
    overflow: auto;
    scrollbar-width: none;
}

.tab-right-content .content-heading h6 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    height: 30px;
}

.tab-right-content .content-heading h6 {
    margin: 0;
    padding: 5px;
    font-size: 14px;
}

.tab-right-content .right-content-body {
    margin-top: 5px;
    padding: 5px;
    background-color: #fff;
}

.tab-right-content .content-data {
    margin-bottom: 5px;
}

.tab-right-content .right-content-body {
    max-height: 80px;
    height: 100%;
    overflow: auto;
}

.tab-right-content .right-content-body .data {
    font-size: 12px;
}

.button-sections {

    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
    margin-top: -63px;
}

/* image uploade */
.file-upload-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;

}

.file-upload-box {
    position: relative;
    /* padding: 2rem; */
    text-align: center;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.file-upload-box:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.file-upload-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.upload-content {
    position: relative;
    z-index: 0;
}

.upload-icon {
    font-size: 2.5rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.file-list {
    margin-top: 1.5rem;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.file-item:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.file-icon {
    color: #6c757d;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.file-name {
    flex-grow: 1;
    color: #495057;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 1rem;
}

.file-name:hover {
    color: #007bff;
    text-decoration: none;
}

.remove-file {
    color: #dc3545;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    transition: color 0.2s ease;
    flex-shrink: 0;
    z-index: 999;
}

.remove-file:hover {
    color: #c82333;
}

.drag-over {
    background-color: #e9ecef;
    border-color: #007bff;
}

/* Add loading animation */
@keyframes upload-progress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.upload-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: #007bff;
    animation: upload-progress 1s ease-in-out;
}

.token-section h4 {
    font-weight: 600;
    font-size: 28px;
    margin: 0;
}

.token-bodys {
    border: 2px solid #658f43;
    border-radius: 20px;
    padding: 20px;
    max-width: 600px;
    width: 100%;
    margin: auto;
}

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

.token-btns .btn {
    width: 120px;
    height: 120px;
}

.token-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.token-btns .btn {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border: 1px solid #658f43;
    font-size: 28px;
    font-weight: 600;
    border-radius: 20px;
}

.token-body.token-body-second {
    border: 2px solid #658f43;
    border-radius: 20px;
    padding: 20px;
    max-width: 800px;
    width: 100%;
    margin: auto;
    position: relative;
}

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

.token-btns .btn {
    width: 120px;
    height: 120px;
}

.token-btns {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.token-btns .btn {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border: 1px solid #658f43;
    font-size: 28px;
    font-weight: 600;
    border-radius: 20px;
}

.token-btns .btn img {
    width: 100%;
}

.page-count {
    position: absolute;
    top: 20px;
    right: 20px;
}

.working-for-conteiner {
    max-width: 80%;
    width: 100%;
    margin: auto;
    padding: 40px 0;
}

.working-for-section {
    display: flex;
    align-items: center;
}

.working-img {
    width: 200px;
    /* height: 120px; */
}

.working-img img {
    /* height: 160px; */
    width: 100%;
}

.working-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.working-btns .camera-btn {
    padding: 5px;
    border-radius: 5px;
}

.working-btns .camera-btn img {
    width: 30px;
}

.token-body.fst-then-section {
    border: 2px solid #658f43;
    border-radius: 20px;
    padding: 20px;
    /* max-width: 1200px; */
    width: 100%;
    margin: auto;
}

.fst-then-content {
    padding: 0 100px;
}

.multiple-game {
    text-align: center;
    /* padding: 20px 30px; */
    border-radius: 5px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.game-count {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.game-box {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #658f43;
    padding: 8px;
    border-radius: 5px;
}

.game {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.game span {
    font-weight: 600;
}

.game .form-control {
    width: 80px;
    height: 35px;
}

.then-section {
    height: 100%;
}


.token-img {
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.token-img img {
    width: 100%;
}

.arrow {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.working-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.working-btns .camera-btn {
    padding: 5px;
    border-radius: 5px;
}

.working-btns .camera-btn img {
    width: 30px;
}

#file-input {
    display: none;
}

#video {
    width: 100%;
    max-width: 400px;
    border: 1px solid black;
}

#canvas {
    display: none;
}

.snap-reset-btn {
    padding: 3px 13px;
    border-radius: 5px;
    color: #ffffff;
    background-color: #7cab55;
}

.snap-cancel-btn {
    border: 1px solid #BAB5B5;
    padding: 3px 7px;
    border-radius: 5px;
    color: #666;
}

#video-frist {
    width: 100%;
    max-width: 400px;
    border: 1px solid black;
}

#canvas-frist {
    display: none;
}

#video-then {
    width: 100%;
    max-width: 400px;
    border: 1px solid black;
}

#canvas-then {
    display: none;
}

.toggle-switch-btn {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

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

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

.toggle-switch-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.toggle-switch-slider {
    background-color: #000000;
}

input:focus+.toggle-switch-slider {
    box-shadow: 0 0 1px #000000;
}

input:checked+.toggle-switch-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded toggle-switch-sliders */
.toggle-switch-slider.round {
    border-radius: 34px;
}

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

.camera-btn {
    border: 2px solid #2485d4;
    border-radius: 10px;
    width: 60px;
    height: 60px;
}

.camera-btn:hover {
    border: 2px solid #2485d4;
}

.camera-btn img {
    width: 100%;
}

.todo-btn {
    border: 2px solid #349e0b;
    border-radius: 10px;
    width: 60px;
    height: 60px;
}

.todo-btn:hover {
    border: 2px solid #349e0b;
}

.timer-btns .btn {
    padding: 10px 20px;
    border-radius: 0;
    font-weight: 600;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.timer-btns .reset-btn {
    background-color: #fff995;
}

#file-input-1 {
    display: none;
}

#file-input-2 {
    display: none;
}

#file-input-3 {
    display: none;
}

#file-input-4 {
    display: none;
}

#file-input-5 {
    display: none;
}

.checkedImg {
    /* margin-top: 6px; */
    
}

.colurlink {
    color: #0d6efd;
}

.submit-btn-medium {
    background-color: #ffbe05;
    border: 1px solid #ffbe05;
    padding: 2px 24px;
    border-radius: 17px;
    color: #ffffff;
}

.submit-btn-danger {
    background-color: #ff1605;
    border: 1px solid #ff1605;
    padding: 2px 24px;
    border-radius: 17px;
    color: #ffffff;
}

.submit-btn-success {
    background-color: #658f43;
    border: 1px solid #658f43;
    padding: 2px 24px;
    border-radius: 17px;
    color: #ffffff;
}

.submit-btn-orange {
    background-color: #ff6a00;
    border: 1px solid #ff6a00;
    padding: 2px 24px;
    border-radius: 17px;
    color: #ffffff;
}

.gc-designer-container .spreadWrapper .gc-ss-container {
    height: 400px;
}

.fileButton {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Incident Form */
.incidentForm input,
.incidentForm select {
    height: 40px;
}

.incidentForm input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.incidentForm input:focus,
.incidentForm select:focus,
.incidentForm textarea:focus {
    border: 1px solid var(--primary-color);
}

textarea {
    resize: none;
}


/* signature */

#canvas-wrap canvas {
    background-color: #fff;
    border-radius: 15px;
    border: 1px solid rgb(196, 196, 196);

}

#canvas-wrap {
    position: relative;

}

#download,
#clear {
    background-color: rgb(39, 138, 0);
    border: 1px solid #d4d4d4;
    color: var(--fonts-color2);
    display: block-inline;
    margin-top: 5px;
    margin-right: 5px;
    transition: .3s;
    padding: 5px 10px;
    border: 5px;
    border-radius: 10px;
}

#download,
#clearss {
    background-color: rgb(39, 138, 0);
    border: 1px solid #d4d4d4;
    color: var(--fonts-color2);
    display: block-inline;
    margin-top: 5px;
    margin-right: 5px;
    transition: .3s;
    padding: 5px 10px;
    border: 5px;
    border-radius: 10px;
}


#text {
    position: relative;
    font-weight: bold;
    left: 190px;
}

/* signature end */
.DateGroup {
    max-width: 200px;
    margin-left: auto;
}

.BtnFormSubmit {
    display: block;
    background-color: var(--primary-color);
    color: var(--fonts-color2);
    transition: .3s;
    padding: 5px 10px;
    height: 40px;
    margin-top: 20px;
    min-width: 200px;
    border: 5px;
    border-radius: 10px;
    margin-left: auto;
}

/* Incident Form end */

/* User Invite */
.user-invite .select2-container {
    min-width: 561px;
}

.user-invite .select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 12px;
    margin-left: 15px;
    padding: 0;
    max-width: 100%;
    resize: none;
    height: 27px;
    vertical-align: bottom;
    font-family: sans-serif;
    overflow: hidden;
    word-break: keep-all;
}

/* User Invite End*/
.submits-btn {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    padding: 2px 13px;
    border-radius: 5px;
    color: #ffffff;
}

.scrollable-buttons {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
}

.scrollable-buttons a {
    flex: 0 0 auto;
}

/* 14/04/2025 */
.CstmContentSpace {
    display: flex;
    justify-content: center;
    align-items: center;
}

.CstmContentSpace a {
    width: max-content;
}

.CstmContentSpace1 {
    margin: auto;
    width: max-content;
}

.main {
    height: 100vh;
    overflow: auto;
}

/* notification dropdown */
.notify-dropdown {
    width: 500px;
    /* Custom width */
    font-family: Arial, sans-serif;
    /* Custom font */
    max-height: 80vh;
    overflow: auto;
    max-width: 90vw;
}

.notify-dropdown .dropdown-header {
    font-weight: bold;
    background-color: #f8f9fa;
    /* Light background */
    padding: 10px;
    /* Spacing */
}

.notify-dropdown .dropdown-item {
    padding: 10px;
    /* Spacing */
    transition: background-color 0.3s;
    /* Hover effect */
}

.notify-dropdown .dropdown-item:hover {
    background-color: #e9ecef;
    /* Change background on hover */
}

.num-count {
    position: absolute;
    top: -5px;
    /* Positioning above */
    right: -10px;
    /* Positioning towards the right */
    background-color: red;
    /* Red color for alert */
    color: white;
    /* White text */
    border-radius: 50%;
    /* Circular badge */
    padding: 2px 5px;
    /* Padding for the badge */
    font-size: 12px;
    /* Font size */
}

.nav-user-img img.img-icon {
    margin: 0px;
}

/* notification dropdown end */


/* Nandan P starts 05/02/2025  */



.excelsheet-hive {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 670px;
}

.main {
    overflow: inherit;
}


.table-outer-section .container-fluid {
    margin-top: 0px;
    padding: 112px 30px 20px;
}

.training-modules-container .card {
    padding-inline: 16px;
    margin-bottom: 16px;
}

.training-modules-container .card:last-child {
    margin-bottom: 0px;
}

.trainingmodules-table>:not(:first-child) {
    border: none;
}

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


.trainingmodules-table>:not(caption)>*>td {
    padding: 0px .5rem .5rem;
    color: #006CE4;
}

.training-modules-container .card-text {
    width: 90%;
    color: #006CE4;
}

.training-modal .file-upload-box {
    padding: 20px;
}

.training-modal .file-upload-wrapper {
    max-width: 100%;
}

.training-modal .btcd-f-input {
    width: 100%;
}


/* Style for assigned users */


.select2-container--default .select2-results__option--disabled {
    color: #ffffff;
    background: #658f43;
}

.colorSatff {
    color: #ff1605;
}

/* ----------------Hive Sign Css Start Here------------------ */
.Subsidebar button.create-new {
    padding: 10px 5px;
    border: 2px solid #000;
    background-color: #96d35f;
    border-radius: 10px;
    color: #fff;
    width: 80%;

}

.created-template {
    display: inline-block;
    width: 90%;
    padding: 10px 20px;
    font-size: 14px;
    height: 50px;
    background-color: #96d35f;
    color: white;
    border: 2px solid #000;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
}


.SubStatus {
    padding: 20px 0;
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 20px;
    border-bottom: 2px solid #00000069;
    margin-bottom: 20px;
}

.SubStatus .status-item span {
    font-weight: 500;
}

.documents-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Icon-txtWrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
}

.documents-wrap span.Icon-txtWrap span i {
    font-size: 22px;
}

.Subsidebar {
    border: 2px solid #00000069;
    padding: 15px 10px;
}

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

.SsubheaderH {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 6px;
    border: 2px solid #0000006b;
    border-right: 0;
    border-left: 0;
}

.ImageBoxWrapH {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 6px 20px 6px;
    border-bottom: 2px solid #0000006b;
}

.NewFolderH-btn {
    background-color: transparent;
    border: 2px solid #000;
    padding: 10px 15px;
    border-radius: 10px;
}

.imageInnerWrapH .imageH {
    max-width: 100px;
    max-height: 120px;
    height: 100%;
    width: 100%;
}

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

.reciptModalLogo {
    max-width: 80px;
    max-height: 80px;
}

.trashIconWrap i {
    font-size: 30px;
    color: red;

}

/* ----------------Hive Sign Css End Here------------------ */

.training-details .select2-container--default .select2-selection--multiple {
    width: 375px;
    border: 1px solid #ced4da;
    padding-bottom: 8px;
}

.training-details .select2-container--default .select2-dropdown--below {
    width: 452px !important;
}

.paggination nav .hidden .relative {
    display: none !important;
}

.paggination nav .flex {
    text-align: end;
}

.tag {
    background: #eee;
    border-radius: 3px 0 0 3px;
    color: #999;
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 20px 0 23px;
    position: relative;
    margin: 0 10px 10px 0;
    text-decoration: none;
    -webkit-transition: color 0.2s;
}

.tag::before {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    content: '';
    height: 6px;
    left: 10px;
    position: absolute;
    width: 6px;
    top: 10px;
}

.tag::after {
    background: #fff;
    border-bottom: 13px solid transparent;
    border-left: 10px solid #eee;
    border-top: 13px solid transparent;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
}

#cstmAddQuizQues input.form-control {
    height: 32px;
}

.dropdownss {
    position: relative;
    display: inline-block;
    margin-left: 0%;


}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    border: 1px solid #ccc;
    z-index: 1;
    max-height: 200px;
    overflow-y: auto;
}

.dropdownss.open .dropdown-content {
    display: block;
}

.checkbox-container {
    padding: 5px;
}

#user-list_filter input {
    cursor: pointer;
}

.selected-count {
    font-weight: bold;
}

.form-selectss {
    height: 36px;
    font-size: 15px;
}

.hidden {
    display: none;
}

/* Style for assigned users */


.select2-container--default .select2-results__option--disabled {
    color: #ffffff;
    background: #658f43;
}

.colorSatff {
    color: #ff1605;
}

/* ----------------Hive Sign Css Start Here------------------ */
.Subsidebar button.create-new {
    padding: 10px 20px;
    border: 2px solid #000;
    background-color: #96d35f;
    border-radius: 10px;
    color: #fff;
    width: 80%;

}

.SubStatus {
    padding: 20px 0;
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 20px;
    border-bottom: 2px solid #00000069;
    margin-bottom: 20px;
}

.SubStatus .status-item span {
    font-weight: 500;
}

.documents-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Icon-txtWrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
}

.documents-wrap span.Icon-txtWrap span i {
    font-size: 22px;
}

.Subsidebar {
    border: 2px solid #00000069;
    padding: 15px 10px;
}

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

.SsubheaderH {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 6px;
    border: 2px solid #0000006b;
    border-right: 0;
    border-left: 0;
}

.ImageBoxWrapH {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 6px 20px 6px;
    border-bottom: 2px solid #0000006b;
}

.NewFolderH-btn {
    background-color: transparent;
    border: 2px solid #000;
    padding: 10px 15px;
    border-radius: 10px;
}

.imageInnerWrapH .imageH {
    max-width: 100px;
    max-height: 120px;
    height: 100%;
    width: 100%;
}

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

.reciptModalLogo {
    max-width: 80px;
    max-height: 80px;
}

.trashIconWrap i {
    font-size: 30px;
    color: red;

}

/* ----------------Hive Sign Css End Here------------------ */

.training-details .select2-container--default .select2-selection--multiple {
    /* width: 766px; */
    border: 1px solid #ced4da;
    padding-bottom: 8px;
}

.training-details .select2-container--default .select2-dropdown--below {
    width: 452px !important;
}

.fw-bold {
    font-weight: 700 !important;
    text-transform: capitalize;
}

/* ///hive doc sign  */

/* ----------------Receipt Css start Here------------------ */

.receipts-outer {
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
}

.receipts-header {
    display: flex;
    /* justify-content: end; */
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #d9d9d9;
    padding: 15px;
}

.receipts-header button {
    background-color: var(--main-color);
    padding: 10px;
    border-radius: 6px;
    color: var(--fonts-color2);
    border: none;
}

.receipts-header button:first-child {
    background-color: #a29f9f;
}

.receipts-left-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.receipts-left-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0px;
}

.receipts-left {
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    height: 100%;
}

.receipts-left-header {
    padding: 15px 10px;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 10px;
}

.receipts-left-body {
    padding: 10px;
    border-bottom: 1px solid #d9d9d9;
}

.receipts-left-body h5,
label {
    /* font-size: 16px;
    font-weight: 500; */
    color: #000;
    /* display: block; */
}

.receipts-left-body label {
    font-size: 14px;
}

.receipt-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.receipt-check input {
    width: 18px;
    height: 18px;
}

.receipt-check span {
    font-size: 14px;
    color: #a29f9f;
    font-weight: 500;
}

.receipts-left-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px 12px;
}

.receipts-left-footer button {
    background-color: var(--main-color);
    padding: 12px 10px;
    border-radius: 6px;
    color: var(--fonts-color2);
    border: none;
}

.receipts-left-footer button:hover {
    background-color: #658F43;
}


.receipt-textbox {
    width: calc(100% - 200px);
    margin: auto;
}

.receipt-textbox-outer {
    height: calc(100vh - 230px);
    overflow: auto;
}

.receipt-textbox-header {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.receipt-textbox textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #d9d9d9;
    margin-top: 10px;
    height: 250px;
}

.receipt-textbox-header select {
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    background-color: transparent;
    text-align: end;
    padding: 0px 10px;
}

.receipt-textbox-header select:focus {
    outline: none;
}

.receipt-textbox textarea:focus {
    outline: none;
}

.receipts-right {
    position: relative;
    background-color: #f1f1f1;
    height: 100%;
}

.receiptzoom-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.receiptzoom-btn button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #7cab55;
    color: #fff;
}

.receiptzoom-btn button:hover {
    background-color: #658F43;
}

.test-modal .modal-footer .btn-primary {
    background-color: var(--main-color);
    border: none;
    padding: 10px 15px;
}

.test-modal .modal-footer .btn-secondary {
    background-color: #a29f9f;
    border: none;
    padding: 10px 15px;
}

/* --- /* Outer box */
.severity-box {
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    width: 820px;
    margin: 15px auto;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
    text-align: left;
}

/* Heading */
.severity-box h5 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

/* Instruction text */
.severity-box p {
    margin: 4px 0;
    font-size: 14px;
}

/* Table for rating */
.severity-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.severity-table td {
    padding: 6px 4px;
    font-size: 14px;
}

.severity-table .options {
    text-align: right;
}

/* Radio button size */
.severity-table input[type="radio"] {
    transform: scale(1.2);
    cursor: pointer;
}

/* Save button */
.save-wrap {
    text-align: center;
    margin-top: 12px;
}

.save-btn {
    background: #9acd32;
    border: none;
    /* border-radius: 25px; */
    color: #fff;
    padding: 8px 25px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.save-btn:hover {
    background: #7aa428;
}

/* // */

.containermid {
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 10px;

    margin: 20px auto;
}

.level-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.level-row input {
    padding: 8px;
    border: 1px solid #999;
    border-radius: 12px;
    margin-right: 10px;
}

.level-row input:first-child {
    width: 120px;
    font-weight: bold;
}

.level-row input:last-child {
    flex: 1;
}

.add-btn {
    display: inline-block;
    margin-top: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: #000;
}

.add-btn:hover {
    color: #007bff;
}

.question-header {
    background-color: #f8f9fa;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

.toggle-icon {
    font-size: 18px;
}

#questionTable th,
#questionTable td {
    white-space: normal !important;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 200px;
}



/* Color dot */
.colorBox {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #ccc;
}


.folder-link-btn {
    text-decoration: none;
    /* color: #007bff; */
    background-color: #96d35f;

}

.highlight {
    background-color: #d3d3d3;
    color: #000;
}

/*12/09/2025*/
.hivesign-right button:hover {
    background-color: #96d35f;
    color: #fff;
}

.hivesign-right a:hover {
    background-color: #96d35f;
    color: #fff;
}

table#view-documentilist tbody tr td {
    text-align: left !important;
}

.Icon-txtWrap {
    width: 100%;
}

.folder-link {
    width: 100%;
}

.folder-link button {
    width: calc(100% - 20px);
    color: #000;
}

.created-folder-link {
    width: 100%;
}

.created-folder-link button {
    width: calc(100% - 20px);
    color: #000;
}

.created-folder-link-btn {
    text-decoration: none;
    background-color: #d3d3d3;
}

.highlightbtn {
    background-color: #96d35f;
}


.dropdownss {
    position: relative;
    display: inline-block;
    width: 250px;
}

.dropdownss .dropdown-content {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

.dropdownss.open .dropdown-content {
    display: block;
}

.checkbox-container label {
    display: block;
    margin-bottom: 5px;
    cursor: pointer;
}



/* ----------------Survey  Css Start Here------------------ */
.surveyMain-Box .survey-head {
    background-color: rgb(101 143 67 / 20%);
    color: #658f43;
    padding: 10px;
    font-weight: 500;
    padding: 16px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.surveyMain-Box .survey-head h1 {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 500;
}

.surveyMain-Box .survey-head p {
    font-size: 14px;
    margin: 0;
    color: #5e5e5e;
}

.surveyMain-Box .question {
    padding: 16px;
    border-bottom: 1px solid #d9d9d9;
}

.surveyMain-Box .scale {
    display: flex;
    gap: 20px;
}

.surveyMain-Box .scale input {
    display: none;
    /* Hide the default radio button */
}

.surveyMain-Box .scale label {
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: rgb(101 143 67 / 20%);
    color: #658f43;
    height: 36px;
    width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.surveyMain-Box .scale label:hover {
    opacity: 0.8;
}

.surveyMain-Box input:checked+label {
    font-weight: bold;
}

.surveyMain-Box input:checked[value="1"]+label {
    background-color: #FF4C4C;
    border: 1px solid #FF4C4C;
    color: white;
}

.surveyMain-Box input:checked[value="2"]+label {
    background-color: #FFB84C;
    border: 1px solid #FFB84C;
    color: white;
}

.surveyMain-Box input:checked[value="3"]+label {
    background-color: #FFFF4C;
    border: 1px solid #FFFF4C;
    color: black;
}

.surveyMain-Box input:checked[value="4"]+label {
    background-color: #B4FF4C;
    border: 1px solid #B4FF4C;
    color: black;
}

.surveyMain-Box input:checked[value="5"]+label {
    background-color: #008000;
    border: 1px solid #008000;
    color: #fff;
}

.surveyMain-Box {
    background-color: #fff;
    border-radius: 20px;
}

.scale-txt {
    text-align: center;
    padding: 12px 0px;
    margin: 0;
    color: #5b5b5b;
}


/* ----------------Survey  Css End Here------------------ */
.quizscrole {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 15px;
}

.learningpermission .tab-container-dropdown .tab-navigation-dropdown select.dash-select,
.learningpermission input.form-control {
    width: 125px;
}

.userlist-filter {
    width: 160px;
}


.charteditor-container {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 12px;
}



.sig-canvas {
    width: 100%;
    height: 200px;
}

.list-tbl .dataTables_scroll {
    overflow: auto;
    overflow-y: hidden;
}

.list-tbl div.dataTables_scrollHead,
.list-tbl div.dataTables_scrollBody {
    min-width: 1200px !important;
}


.trainingmodule-container h6 {
    color: #000000;
    font-weight: 500;
}

.trainingmodule-container :is(span, p) {
    color: #006CE4;
    font-weight: 500;
}

.trainingmodule-filter .active-btn {
    margin-right: 0px;
}


.trainingmodule-filter .form-search input {
    width: auto;

}


.user-email .select2-container {
    min-width: auto;
    flex-grow: 1;
}


.user-email .select2-container--default .select2-selection--multiple {
    width: auto;
}

.staffemail-form .user-email h5 {
    text-align: center;
}

.staffemail-form .note-icon-caret:before {
    display: none;

}


.staffemail-fileupload input::file-selector-button {
    height: 40px;
    width: 150px;
}

.workspace-img {
    width: 100%;
    max-width: 500px;
    object-fit: contain;
}

/* 06/11/25 */
/* .token-bodys .timer {
justify-content: center;
    display: flex;
    position: relative;
}
.token-bodys .controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.token-bodys .input-fields {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    width: 100%;
}
.token-bodys  .timer-text {
    position: absolute;
    top: 38%;
}
input#secondsInput {
    min-width: 78px;
} */
.timer-container {
    margin-top: 50px;
}

.input-fields {
    margin-bottom: 15px;
}

.input {
    width: 100px;
    padding: 8px;
    margin: 5px;
    font-size: 16px;
    text-align: center;
}

.timer {
    position: relative;
    width: 300px;
    height: 300px;
    margin: auto;
}

#timerCanvas {
    width: 100%;
    height: 100%;
    border: 4px solid black;
    border-radius: 50%;
    background: white;
}

.timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
}

.controls {
    margin-top: 20px;
    text-align: center;
}

.button {
    padding: 10px 15px;
    margin: 5px;
    font-size: 16px;
    cursor: pointer;
}

#startBtn {
    background-color: green;
    color: white;
    border: none;
}

#resetBtn {
    background-color: red;
    color: white;
    /* border: none; */
    border: 1px solid #BAB5B5;
    padding: 8px 26px;
    border-radius: 5px;
}

.cls-1 {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2px;
}

/* 12-11-2025 new css  */
.custmCardSect .clinical-card .content button {
    white-space: unset;
}

.custmCardSect .clinical-card .card {
    height: 100%;
}
.custmNav-user{
    display:flex;
    gap:6px;
    align-items: center;
}
.swal-text{
    text-align: center;
}
.activess-btn {
    background-color: var(--main-color);
    padding: 6px 20px;
    border-radius: 5px;
    color: #ffffff;
    margin-right: 10px;
    border: 1px var(--main-color);
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between cards */
}

.cards {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 16px;
    width: calc(50% - 10px); /* 2 cards per row, with gap deduction */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff; /* Card background color */
}

h3 {
    font-size: 1.1em;
    margin: 0;
}

p {
    margin: 4px 0; /* Margin for paragraph elements */
}

.no-expiration {
    color: green;
}

.active {
    /* color: green;  */
}

.icons {
    display: flex;
    justify-content: flex-end; /* Align icons to the right */
}

.icons a {
    margin-left: 10px; /* Space between icons */
}

.icon {
    width: 25px; /* Fixed width for icons */
    height: auto; /* Maintain aspect ratio */
}
.status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.status-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
}

/* Status colors */
.status-on-track {
    background-color: #2ecc71; /* green */
}

.status-needs-review {
    background-color: #f1c40f; /* yellow */
}

.status-lack-progress {
    background-color: #e74c3c; /* red */
}

/* 24-12-2025 new css  */
.camera-btn.custmCam-img {
    padding: 0;
    overflow: hidden;
    }
    .camera-btn.custmCam-img label{
        height:100%;
    }
    .camera-btn.custmCam-img label img{
        height:100%;
        width:100%;
        object-fit: cover;
    }
    .colorPicker{
        position: relative;
    }
    .colorBox{
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: inline-block;
        border: 1px solid #999;
    }
    .circleInput{
    width:0px;
    height:0px;
    border: 0;
    }
    .form-control.custmColor-f{
        width: 24px;
        height: 24px;
        border-radius: 50%;
        padding: 0;
    }
    .custm-cardInfo{
       
        position: absolute;
        top: -100%;
        /* right: 0; */
        right:calc(100% - 12px);
        z-index: 9999;
        background: #fff;
        padding: 10px 14px;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        width: 300px;
        display: none;
    }
    .custm-cardInfo span{
    white-space: normal;
    font-size: 13px;
    }
    .info-img:hover .custm-cardInfo{
        display: block;
    }
    .custmTable-select table tbody tr:last-child .custm-cardInfo{
    bottom: 100%;
    top:unset;
    }
    .info-img{
        position: relative;
    }
    


    .info-img:hover .custm-cardInfo {
        display: block;
    }
    /* .custmTable-select {
        overflow: visible !important;
    }  */
    
    .disabled-sitting {
        opacity: 0.4;
        cursor: not-allowed;
        pointer-events: none;
    }

    /* #pageLoader {
        position: fixed;
        inset: 0;
        z-index: 999999;
        display: none;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.6);
        backdrop-filter: blur(4px);
    }
    
    .loader-circle-wrapper {
        position: relative;
        width: 120px;
        height: 120px;
    }
    
    .loader-bg {
        stroke: #e5e5e5;
        stroke-width: 6;
        fill: none;
    }
    
    #loaderProgress {
        stroke: #4CAF50;
        stroke-width: 6;
        fill: none;
        transform: rotate(-90deg);
        transform-origin: 50% 50%;
        stroke-dasharray: 326;
        stroke-dashoffset: 326;
         background: rgba(255,255,255,0.6);
        backdrop-filter: blur(4px);
    }
    
    #loaderPercent {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-weight: 700;
    } */
    #pageLoader {
        position: fixed;
        inset: 0;
        background: #fff;
        display: flex;   /* always visible */
        justify-content: center;
        align-items: center;
        z-index: 99999;
        transition: opacity 0.3s ease;
        background: rgba(255,255,255,0.6);
        backdrop-filter: blur(4px);
    }
    
    
    .loader-circle-wrapper {
        position: relative;
        text-align: center;
    }
    
    .loader-bg {
        fill: none;
        stroke: #96d35f;
        stroke-width: 6;
    }
    
    #loaderProgress {
        fill: none;
        stroke: #96d35f;
        stroke-width: 6;
        stroke-linecap: round;
        transform: rotate(-90deg);
        transform-origin: 50% 50%;
    }
    
    #loaderPercent {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-weight: bold;
    }
    .fw-bold {
        font-weight: 700 !important;
        text-transform: capitalize;
    }
/* ///// */
#confetti-wrapper {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
}

.confetti {
    width: 10px;
    height: 10px;
    animation: fall 5s linear infinite;
}

@keyframes fall {
    0% { transform: translateY(-10px) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(360deg); }
}


.notify-dropdown {
    width: 360px;
    max-height: 420px;
    overflow-y: auto;
}

.notify-dropdown .dropdown-item {
    white-space: normal;
    word-break: break-word;
    font-size: 13px;
    line-height: 1.4;
}

.notify-dropdown li {
    border-bottom: 1px solid #eee;
}


#sig-canvass {
    width: 100%;
    height: 200px;
    border: 1px solid #ccc;
    touch-action: none;
}

.training-modules-containerss
{
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
    box-sizing: border-box;
}

/* DONE column box */
.camera-btn-done .todo-btn {
    width: 64px;
    height: 64px;
    padding: 0;

    border: 2px solid red;      /* client requirement */
    border-radius: 8px;
    overflow: hidden;

    background: #fff;
    display: block;
    margin: auto;
}

/* label full size */
.camera-btn-done .todo-btn label {
    width: 100%;
    height: 100%;
    display: block;
}

/* image FULL fit */
.camera-btn-done .todo-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* empty image case */
.camera-btn-done img[src=""] {
    display: none;
}


/* add new css 4th feb 2026 */
.multiple-game {
    /* padding: 16px 16px; */
    width: 164px;
    height: 164px;
}
.token-img {
    height: 100%;
    width: 100%;
}

.token-img img {
    width: 100%;
    height: 100%;
}

.wrapper-client-program table{
    width:100%;
    overflow: auto;
 }

 .notif-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}
.notification-item[data-type="birthday"] {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}
    /* Header styling */
    .dropdown-header-custom {
        padding: 10px 12px;
        border-bottom: 1px solid #eee;
        background: #f8f9fa;
    }
    
    /* Button */
    .clear-all-btn {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    /* Notification list spacing */
    .notify-dropdown {
        width: 320px;
    }
    
    /* Notification item */
    .notification-item {
        padding: 8px 12px;
    }
    
    /* Hover effect */
    .notification-item:hover {
        background: #f5f5f5;
    }
    .new-client-crile{
        width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    }

    /* Modal Background */
.birthday-modal {
    border-radius: 15px;
    overflow: hidden;
}

/* Header */
.birthday-header {
    background: linear-gradient(180deg, #4c9b25, #7fc510b8);
    color: #fff;
    padding: 12px;
    font-weight: 600;
}

/* Profile Image */
.birthday-img-wrapper {
    display: flex;
    justify-content: center;
}

.birthday-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4c9b25;
}

/* Textarea */
.birthday-textarea {
    border-radius: 10px;
    padding: 10px;
    resize: none;
}

/* Button */
.birthday-btn {
    background: linear-gradient(180deg, #4c9b25, #7fc510b8);;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    transition: 0.3s;
}

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

/* Animation */
.birthday-modal {
    animation: scaleIn 0.3s ease;
}



@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.stakeDataList{
    width:100%;
    overflow: auto;
}
.stakeDataList table tr th{
    background-color: #a0c78194;
}
/* background-color: #a0c78194; */
#behaviourDataTable th,
#behaviourDataTable td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
}

#behaviourDataTable th {
    background-color: #f0f0f0;
}


.behaviour-table-responsive {
    overflow-x: auto;
    display: block;
}
#rowAbceDataTable th,
#rowAbceDataTable td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
}

#rowAbceDataTable th {
    background-color: #f0f0f0;
}


.rowAbceDataTable-table-responsive {
    overflow-x: auto;
    display: block;
}
#domainProgramDataTable th,
#domainProgramDataTable td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
}

#domainProgramDataTable th {
    background-color: #f0f0f0;
}


.domainProgramDataTable-table-responsive {
    overflow-x: auto;
    display: block;
}
#therapyDataTable th,
#therapyDataTable td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
}

#therapyDataTable th {
    background-color: #f0f0f0;
}


.therapyDataTable-table-responsive {
    overflow-x: auto;
    display: block;
}
#sessionNotesDataTable th,
#sessionNotesDataTable td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
}

#sessionNotesDataTable th {
    background-color: #f0f0f0;
}
.sessionNotesDataTable-table-responsive {
    overflow-x: auto;
    display: block;
}
.tableWrapper{
    width: 100%;
    overflow: auto;
}
.buttonGroup .countrBtn{
width:30px;
height: 30px;
display: flex;
justify-content: center;
align-items: center;
padding: 2px;
}
#sessionNotesTable thead {
    background-color: #a0c78194;
}
#tag-list thead {
    background-color: #a0c78194;
}
#user-list thead {
    background-color: #a0c78194;
}
#client-list thead {
    background-color: #a0c78194;
}
.sdsdsd{
    height: 50px;
}

button.btn.decrementGeneralization {
    padding: 14px 26px;
    border-radius: 5px;
    color: #ffffff;
    background-color: #dd4d5b;
}
#shared-user-document thead {
    background-color: #a0c78194;
}
#autocomplete {
    width: 300px;
    padding: 10px;
    margin: 0px 0px;
}
#street-view {
    height: 125px;
    
}
#street-viewss {
    height: 125px;
}
#program-list thead {
    background-color: #a0c78194;
}
#systemAuditLogTable thead {
    background-color: #a0c78194 !important;
}
.authuser .select2-container--default .select2-selection--multiple {
    min-height: 35px;
}
#systemAuditTables thead {
    background-color: #a0c78194;
}