@import url('https://fonts.googleapis.com/css2?family=Alkatra:wght@400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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


body {
  font-family: "Lato", system-ui;
}

:root {
  --primary-color: #8ac24b;
  --primarylight-color: #ffffe6;
  --primarydark-color: #47691E;
  --secondary-color: #437A7C;
  --textprimary-color: #0D1B34;
  --textgrey-color: #575757;
  --bg-white: #ffffff;
  --sidebar-width: 280px;
  --sidebartoggle-width: 80px;
  /* --sidebar-left: -280px; */
  --togglesidebar-width: 0px;
  --togglesidebar-left: -280px;
}

/* universal css starts */

h2 {
  color: var(--textprimary-color);
}

a {
  text-decoration: none;
}
/* p{
  color: var(--textgrey-color);
} */

.modal-backdrop {
    --bs-backdrop-zindex: 0;
    --bs-backdrop-opacity: 0;
}

/* Optional: Override Bootstrap validation styles */
input:invalid {
    box-shadow: none;
    /* Remove the default shadow */
}

input:valid {
    box-shadow: none;
    /* Remove the default shadow */
}

.user-icon {
    border: 2px solid var(--primarylight-color);
    color: var(--primary-color);
    border-radius: 50%;
    padding: 5px;
}

.border-red {
    border: 1px solid red;
}

.choices {
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.choices__list--multiple .choices__item {
    display: inline-block;
    vertical-align: middle;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 3.75px;
    margin-bottom: 3.75px;
    background-color: var(--primary-color);
    border: none;
    color: var(--bg-white);
    word-break: break-all;
    box-sizing: border-box;
}

.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: var(--bg-white);
}

.patientBasicDetails {
    margin: 1%;
    font-size: 14px;
    font-weight: 600;
}

.fill-by-provider {
  color:rgb(10, 82, 120) !important;
}

.form-control {
  padding: 12px 16px;
}

.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.mb-3.is-invalid .choices__inner {
    border: 1px solid #dc3545 !important;
    border-radius: 5px;
}

.primary-btn {
  background: var(--primary-color);
  font-size: 20px;
  padding: 9px;
}

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

.primary-text {
  color: var(--primary-color);
}

/* universal css end */


/* Login css starts */

.leftside {
  height: 100vh;
  background-color: #eff0c6;
  position: relative;
}

.right-image {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  height: 100%;
  object-fit: contain;
}

.rightside {
  position: relative;

}


.login-form {
  width: 100%;
  max-width: 550px;
  padding: 32px 40px;
  border-radius: 4px;
}


.login-form img {
  width: 60px;
  object-fit: contain;
}

.sidebar-sub-li {
  background-color: blanchedalmond;
  border-radius: 5px;
}

.unauthorized-icon {
  margin: auto;
  margin-top:4%;
  width: 50%;
  background-color: var(--primarylight-color);
  border: 5px solid var(--primary-color);
  border-radius: 12px;
}
.unauthorized-icon > span {
  font-size: 250px;
  color: var(--primary-color);
}

.unauthorized-content { 
  margin: 5%;
}



/* Login css ends */



/* Dashboard css */




.page {
  /* display: flex; */
  min-height: 100vh;
  /* flex-direction: column; */
  /* justify-content: center; */
}

/* sidebar css starts */

.sidebar {
  width: var(--sidebar-width);
  position: fixed;
  left: 0;
  top: 0;
  background-color: var(--bg-white);
  height: 100vh;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.10);
  transition: all .3s ease-in;
  z-index: 3;
}


.toggle-sidebar {
  cursor: pointer;
}



.sidebarclose {
  cursor: pointer;
  color: var(--textprimary-color);
}

.sidebar.close {
  width: var(--sidebartoggle-width);
}

.sidebar.close .nav-link-heading {
  display: none;
}

.sidebar.close .dashboar-icon:hover+.nav-link-heading {
  display: block;
  position: absolute;
  right: 0px;
  white-space: nowrap;
  translate: 95% 0%;
  padding: 4px 8px;
  color: var(--bg-white);
  background: var(--textprimary-color);
  border-radius: 4px;
}



.sidebar .nav-pills .nav-link svg path {
  fill: var(--textgrey-color);
}

.sidebar .nav-pills .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--textgrey-color);
  font-weight: 400;
  /* padding: 7px 8px; */
  cursor: pointer;
  width: 100%;
  text-align: left;


}

.sidebar .nav-pills :is(.nav-link:hover, .nav-link.active) {
  background-color: var(--primary-color);
  color: var(--bg-white);
  /* font-weight: 600; */
}

.sidebar .nav-pills :is(.nav-link:hover, .nav-link.active) .dashboar-icon {
  background-color: var(--bg-white);
}

.sidebar .nav-pills :is(.nav-link:hover, .nav-link.active) svg path {
  fill: var(--bg-white);
}


.sidebar .nav-pills .nav-link .dashboar-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primarylight-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar.close .nav-pills .nav-link .dashboar-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
}

.sidebar.close .nav-pills .nav-link svg {
  width: 20px;
  height: 20px;
}


.navlink-container {
  width: 100%;
  height: 100%;
  flex-wrap: nowrap;
  gap: 10px;
}

.header .dropdown-menu {
  transform: translate3d(0px, 54px, 0px) !important;
}


.nav-link.active+.collapse:not(.show) {
  display: block;
}



/* Company logo */
.sidebar .logo {
  height: 68px;
  width: 100%;
  text-align: center;
  padding: 5px;
  border-bottom: 1px solid #e3e3e3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar .logo img {
  width: 60px;
}

.sidebar.close .logo img {
  width: 40px;
}





/* User Profile */
.user-profile-content h6 {
  color: var(--navlink-color);
  font-size: 16px;
  font-weight: 600;
}

.user-profile {
  display: flex;
  gap: 16px;
  padding: 0px;
}

.user-profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0px;
}



/* Leftside Navigation */




.sidebar .nav-link:focus {
  background: none;
  color: var(--text-white);
}





.sidebar-menu {
  overflow: auto;
}

.sidebar-menu::-webkit-scrollbar {
  display: none;
}

/* Left Sidebar  ends */


/* header Sidebar  starts */


.header {
  position: sticky;
  top: 0px;
  height: 68px;
  margin-left: var(--sidebar-width);
  padding: 13px 24px;
  transition: all .3s ease-in;
  background-color: var(--bg-white);
  box-shadow: 14px 17px 40px 4px rgba(112, 144, 176, 0.08);
  z-index: 2;
  transition: all .3s ease-in;
}

.hamberg {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  /* background-color: var(--primarylight-color); */
  display: flex;
  align-items: center;
  justify-content: center;
}


.sidebar.close+.header,
.sidebar.close~main {
  margin-left: var(--sidebartoggle-width);
  z-index: 0;
}

/* header Sidebar  ends */


/* Main content starts */


.main-content {
  background-color: #D8E3D7;
  margin-left: var(--sidebar-width);
  padding: 24px;
  z-index: 1;
  transition: all .3s ease-in;
  min-height: calc(100vh - 68px);
}

.inner-content {
  min-height: calc(100vh - 120px);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #DDE2EE;
  background: var(--bg-white);
}

/* Facility css starts*/

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

.section-header h5 {
  /* font-size: 18px; */
  color: var(--textprimary-color);
}

.section-header .primary-btn {
  font-size: 16px;
  color: var(--bg-white);
  padding: 8px 12px;
}


.status-table table {
  font-size: 14px;
  table-layout: auto;
  /* min-width: 1200px; */
}


.status-table .dataTables_filter {
  margin-bottom: 12px;
}


.status-table div.dt-container {
  width: 100%;
  margin: 0 auto;
}

.status-table thead tr th {
  white-space: nowrap;
  font-weight: 500;
}


.status-table :is(table.dataTable th.dt-type-numeric, table.dataTable th.dt-type-date, table.dataTable td.dt-type-numeric, table.dataTable td.dt-type-date) {
  text-align: left;
}

.status-table table thead tr th {
  background-color: var(--primary-color) !important;
  color: var(--bg-white);
}

.status-table .table-bordered>:not(caption)>*>* {
  border-right: 0px;
  border-left: 0px;
}

/* .status-table table tbody tr td:first-child {
  border-left: 1px solid #e3e3e3;
}

.status-table table tbody tr td:last-child {
  border-right: 1px solid #e3e3e3;
} */


.status-table .dt-search .form-control {
  padding: 4px 16px;
}

.status-table .disabled>.page-link,
.status-table .page-link.disabled {
  background-color: var(--bg-white);
}

.status-table .active>.page-link,
.status-table .page-link.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.status-table .actionbtn {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-table .actionbtn .btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* .customertable-layout table thead tr th:first-child , .customertable-layout table tbody tr td:first-child {
  width: 80px;
}

.customertable-layout table thead tr th:nth-child(n + 4), .customertable-layout table tbody tr td:nth-child(n + 4) {
 width: 200px;
}
.customertable-layout table thead tr th:last-child , .customertable-layout table tbody tr td:last-child {
  width: 180px;
} */


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


.modal-header h1 {
  color: var(--bg-white);
  font-weight: 500;
}

.custombtn {
  padding: 8px 20px;
  border-radius: 4px;
  border: 1px solid #e3e3e3;
}

.primarybutton {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: none;
}

.cancelbtn {
  border: 1px solid #e3e3e3;
  background-color: var(--textgrey-color);
  color: var(--bg-white);
}

.form-layout {
  margin-bottom: 28px;
  padding: 12px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;

}

.form-layout h6 {
  padding: 8px 16px;
  background-color: var(--primarylight-color);
}

.modal-body {
  padding: 30px 20px;
}

.requiredfield::after {
  content: "*";
  color: #FF3B41;
  margin-left: 2px;
}


.modal .form-control {
  padding: 7px 16px;
}

.modal select.form-control {
  appearance: auto;
}

/* Facility css ends */

/* Toggle Icon */
.custom-toggle {
  display: flex;
  align-items: center;
}

.custom-toggle input {
  display: none;
}

.custom-toggle .switch {
  width: 60px;
  height: 30px;
  background-color: #ccc;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s;
}

.custom-toggle .switch:before {
  content: '';
  width: 25px;
  height: 25px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
}

.custom-toggle input:checked+.switch {
  background-color: var(--primary-color) !important;
}

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


table i {
  transition: 0.3s all;
}

table i.rotate {
  transform: rotate(-180deg);
}

.cstm-accordion {
  position: sticky;
  top: 80px;
}

.closeBtn {
  border: none;
  background: none;
  font-size: 24px;
  color: white;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #4a6d36;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgb(74 109 54 / 25%);
}

.choices__inner:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #4a6d36;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgb(74 109 54 / 25%);
}

.choices__inner {
  border: none;

}

.choices__item.choices__item--choice.choices__notice.has-no-results {
  background: #ffd9d9;
  color: #ff4e4e;
}

.notes_head {
  font-weight: 500;
}


.cstm-btn.btn:focus-visible {
  background-color: var(--primary-color);
}

.backtologin {
  text-decoration: none;
  color: var(--primarydark-color);
}

.cstm-input-valide.is-invalid .pass-show-hide {
  right: 6%;
}


.exp-icon {
  background: #ffd0d0;
  padding: 5px;
  font-size: 34px;
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 36px;
  color: #ff1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-div {
  background: #ffeaea;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
}


.error-div h4 {
  color: #ff1e1e;
  font-weight: 600;
}


.error-div p {
  color: var(--textgrey-color);
}

.permission-label {
    display: flex;
    align-items: center; /* Center vertically */
    min-height: 3rem;
}

.appointment-status-icon {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  height: 50px;
  margin: 0 5px;
}
.pdf-page {
    margin: 10px 0; /* Space between pages */
}
canvas {
    width: 100%; /* Make canvas responsive */
    height: auto; /* Maintain aspect ratio */
}
.provider-not-assist {
  color: #ef0e0eff;
  border: 2px solid #ef0e0eff;
  background-color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 45px;
  padding: 10px;
  font-size: 28px;
  margin: auto 8px;
}
.leftBorder {
  border-left: 5px solid #f7b054;
}
.provider-assist {
  color: #8ac24b;
  border: 2px solid #8ac24b;
  background-color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 45px;
  padding: 10px;
  font-size: 28px;
  margin: auto 8px;
}
.fa-check {
  position: absolute;
  margin-top: 20px;
  margin-left: 7px;
  color: olivedrab;
}
.notesContainer, .formsContainer {
  border: 1px solid #8ac24b;
  border-radius: 6px;
  display: none;
  justify-content: center;
  align-items: center;
  height: 72vh;
}
.nav-container {
  display: flex; 
}
.pdf-item {
  margin-left: auto;
}
.patientPsychologyInfo {
  font-weight: 600;
  margin-bottom: 5px;
}
.psychology_notes_head {
  border-bottom: 2px solid #000;
  width: 65%;
  padding: 0 5px;
}
.pdf-item > a {
  font-size: 25px;
  color: #8ac24b;
}
#pdfNotesView, #pdfFormView {
  display: none;
}

.checkbox {
  border-color: #8ac24b;
}

#pdfFormView {
  margin-top: 18px;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  border-radius: 50%;
  background:
    linear-gradient(0deg, rgba(138, 194, 75, 0.5) 30%, rgba(138, 194, 75, 0) 0 70%, rgba(138, 194, 75, 1) 0) 50%/8% 100%,
    linear-gradient(90deg, rgba(138, 194, 75, 0.25) 30%, rgba(138, 194, 75, 0) 0 70%, rgba(138, 194, 75, 0.75) 0) 50%/100% 8%;
  background-repeat: no-repeat;
  animation: l23 1s infinite steps(12);
}
.loader::before,
.loader::after {
   content: "";
   grid-area: 1/1;
   border-radius: 50%;
   background: inherit;
   opacity: 0.915;
   transform: rotate(30deg);
}
.loader::after {
   opacity: 0.83;
   transform: rotate(60deg);
}
@keyframes l23 {
  100% {transform: rotate(1turn)}
}
.full_eye {
  display: none
}

#prsRecordTable {
    border-collapse: collapse; 
    width:100%;
    margin-top: 1%;
}

#prsRecordTable tr, 
#prsRecordTable th, 
#prsRecordTable td {
    border: 1px solid #000;
    text-align: center;
}

#prsRecordTable .prs-inside-table tr, 
#prsRecordTable .prs-inside-table th, 
#prsRecordTable .prs-inside-table td {
    border: none;
    text-align: left;
}

.form-scores {
    text-align: left; 
    font-weight: bolder; 
    padding-left:2px;
}

.prs-content .record {
  margin: 10px 0;
  padding: 10px 0;
  border-bottom: 1px dashed #000;
}
.prs-content .record:last-child {
  border-bottom: none;
}
.width-100 {
  width: 100%;
}

.prs-para {
  font-weight: 600;
  color: rgb(10, 82, 120);
  margin: 0;
}

.frm-title {
  text-align: center;
  font-weight: 600;
}