
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html{
  font-family: 'Montserrat';
}
body {
  font-family: 'Montserrat';
  overflow: hidden;
}
h1,h2,h3,h4,h5,h6,p,span,strong,td,th{
  font-family: 'Montserrat';
}
a{
  text-decoration: none !important;
  ;
  font-family: 'Montserrat';
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
ul{
  margin: 0 !important;
  padding: 0 !important;
}
/* Hide scrollbar track */
::-webkit-scrollbar {
  width: 4px; /* Set width for vertical scrollbar */
  padding: 5px 0;
}

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

/* Handle on active */
::-webkit-scrollbar-thumb:active {
  background: #9f5f15;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Track on hover */
/* ::-webkit-scrollbar-track:hover {
  background: #ddd;
} */
a {
  text-decoration: none;
}

.mainContainer {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.contentBody {
  display: flex;
  flex: 1 1 100%;
  overflow: hidden;
}
.content {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  overflow: auto;
  background-color: rgba(255, 243, 237, 0.6);
  /* border: 1px solid red; */
}
.alert {
  margin: 0 auto;
  width: fit-content;
}
/* /////Header/// */
.header {
  padding: 20px 80px;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(243, 111, 43, 0.1);
  border-bottom: 2px solid #f36f2b;
}
.headerContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.userInfo {
  display: flex;
  gap: 10px;
  /* margin-right: 30px; */
  /* flex-wrap: wrap; */
  justify-content: flex-end;
  align-items: center;
}
.userInfo .name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
.userInfo img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.userInfo .name h2 {
  color: #f36f2b;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  line-height: 22.4px;
}
.userInfo .name span {
  color: #312828;
  font-size: 12px;
  font-weight: 400;
  line-height: 22.4px;
  text-transform: capitalize;
}
.userInfo .btn{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 0;
  margin-left: 20px;
}
.userInfo .btn a{
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background-color: #f36f2b;
  border-radius: 5px;
  padding: 8px 30px;
  width: fit-content;
  height: fit-content;
}

/* ///////SIDEBAR////// */

.sidebar {
  width: 260px;
  border-right: 2px solid #f36f2b;
  padding: 30px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar .navList {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  margin: 0;
}
.sidebar .navList li {
  /* border-radius: 5px; */
  transition: 0.3s ease;
  cursor: pointer;
  display: flex;
}
.sidebar .navList li:hover {
  background-color: #f36f2b;
}
.sidebar .navList li.active {
  background-color: #f36f2b;
}
.sidebar .navList li.active a {
  color: #fff;
}
.sidebar .navList li:hover a {
  color: #fff;
}
.sidebar .navList li a {
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 20px;
  width: 100%;
  line-height: 22.4px;
  transition: 0.3s ease;
}
.sidebar .navList li a[aria-expanded="true"]{
  color: #fff;
  background-color: #f36f2b;
}
.sidebar .logout {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  cursor: pointer;
}
.sidebar .logout button {
  background-color: #fff;
  border: none;
  cursor: pointer;
}
.sidebar .logout a {
  color: #312828;
  font-size: 16px;
  font-weight: 600;
  line-height: 25.6px;
}

/* ////LOGIN PAGE/// */

.loginPage {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  background-image: url("http://localhost/BD/assets/login-bg.jpg");
  background-position: center;
  height: 100vh;
}
.loginContent {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.logoContainer {
  padding: 30px 50px;
}
.LoginFormContent {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  padding: 0 100px;
}
.loginForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  width: 45%;
}
.loginForm h2 {
  color: #f36f2b;
  font-size: 30px;
  font-weight: 700;
}
.loginForm p {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
}
#login_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#login_form .field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  width: 80%;
}
#login_form .field label {
  color: #0b0f19;
  font-size: 12px;
  font-weight: 400;
  line-height: 19.2px;
}
#login_form .field input {
  border: 1px solid #d4d7e5;
  color: #0b0f19;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  padding: 10px;
  outline: none;
  border-radius: 6px;
  width: 100%;
}
#login_form .forgetPass {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#login_form .forgetPass a {
  color: #3040ff;
  font-size: 12px;
  font-weight: 400;
  line-height: 19.2px;
  cursor: pointer;
}
#login_form .passwordField {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 1px solid #d4d7e5;
  border-radius: 6px;
  padding-right: 10px;
}

.passwordField .show_pass {
  background-image: url(https://www.organizationalclinic.com/images/open-eye-icon.svg);
  background-size: contain;
}

.passwordField span {
  background-image: url(https://www.organizationalclinic.com/images/eye-close-icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 18px;
  display: flex;
  cursor: pointer;
}

#login_form .passwordField input {
  border: none;
}
#login_form .checkboxField {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#login_form .checkboxField input {
  width: 17px;
  height: 17px;
}
.LoginFormContent .loginImg{
  width: 45%;
}
.LoginFormContent .loginImg img{
  width: 100%;
}

@media only screen and (max-width:1024px) {

  .LoginFormContent{
    padding: 0 60px;
    gap: 30px;
    align-items: center;
 }
 .LoginFormContent .loginImg{
  width: 40%;
   }
   .loginForm{
    width: 60%;

   }
}
@media only screen and (max-width:768px) {

  .LoginFormContent{

    justify-content: center;
 }
 .LoginFormContent .loginImg{
  width: 40%;
  display: none;
   }
   .loginForm{
    width: 100%;

   }
}
@media only screen and (max-width:475px) {
  .LoginFormContent{
    padding: 50px 30px;
  }
  .loginForm h2{
    font-size: 30px;
    text-align: center;
  }
  .loginForm p{
    font-size: 14px;
    text-align: center;

  }
  #login_form{
    align-items: center;
  }
  #login_form .field{
    width: 100%;
  }
  .loginPage{
    height: 100%;
  }
}

.submitBtn {
  display: flex;
  justify-content: flex-start;
  width: 80%;
}
.submitBtn button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  outline: none;
  background-color: #f36f2b;
  border: 1px solid #f36f2b;
  width: 100%;
  padding: 10px 20px;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  cursor: pointer;
  transition: 0.3s ease;
}
.submitBtn button img{
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%)
  saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
.submitBtn button:hover{
  background-color: #fff;
  border: 1px solid #f36f2b;
  color: #f36f2b;
}
.submitBtn button:hover img{
  filter: none;
}
/* ////HOME PAGE/// */

.homePage {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.homeContent {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pageHeadingCont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pageHeadingCont a {
  color:  #f36f2b;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 4.395px;
  border: 1px solid #f36f2b;
  background: #fff;
  padding: 8px 26px;
  cursor: pointer;
  transition: 0.3s ease;
}
.pageHeadingCont a:hover {
  color:  #fff;
  background: #f36f2b;
}
.pageHeading {
  color: #000;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 30px;
}
.pageHeading span {
  color: #f36f2b;
  font-weight: 600;
}
.homeBoxes {
  display: flex;
  gap: 30px;
}
.homeBoxes .box {
  width: 30%;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
}
.homeBoxes .chartbox {
  /* width: 30%; */
  padding: 15px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
  display: flex;
  flex-direction: column;
}
.homeBoxes .chartbox span{
  font-size: 25px;
    font-weight: 600;
    padding-bottom: 20px;
    /* padding-left: 20px; */
}
.homeBoxes .MonthlyStats {
  width: 70%;
  /* flex: 1; */
}
.homeBoxes .OrdersStats {
  width: 30%;
}
.homeBoxes .MonthlyStats {

}


.homeBoxes .paymentBox {
  background-color: #f36f2b;
}
.homeBoxes .paymentBox .boxHeading {
  border-bottom: 2px solid #fff !important;
}
.homeBoxes .paymentBox .boxHeading span {
  color: #fff !important;
}
.homeBoxes .paymentBox .boxTotal span {
  color: #fff !important;
}
.homeBoxes .box .boxHeading {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
  padding: 0 20px 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f36f2b;
}
.homeBoxes .orgBox .boxHeading {
  padding: 0 20px 10px;
}
.homeBoxes .orgBox {
  width: 40%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
}
.homeBoxes .orgInner {
  width: 100%;
}
.homeBoxes .orgBox img {
  width: 65px;
  /* height: 65px; */
}

.homeBoxes .box .boxHeading span {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.homeBoxes .box .boxTotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 0px;
}
.homeBoxes .box .boxTotal span:first-child {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 25.6px;
}
.homeBoxes .box .boxTotal span:last-child {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  line-height: 48px;
}
.homeBoxes .paymentBox .boxTotal span:last-child {
  color: #fff;
}
.homeBoxes .orgBox .boxTotal span:last-child {
  color: #f36f2b;
}

.homeTables {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
}
.homeTables h4 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}
.homeTables .specialistTable {
  width: 62%;
}
.homeTables .specialistTable .activeTd {
  color: #008000;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.homeTables .specialistTable table {
  width: 100%;
  border-radius: 10px;
  background: var(--White, #fff);
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
  padding: 10px;
  border-collapse: separate;
  margin-top: 20px;
}
.homeTables .specialistTable table th {
  text-align: left;
  padding: 0px 16px 10px;
  font-size: 14px;
  font-weight: 600;
}

.homeTables .specialistTable table .table_row {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
  vertical-align: middle;
}

.homeTables .specialistTable table td {
  padding: 10px 16px;
  font-size: 12px;
}

.homeTables .specialistTable table img {
  padding-right: 5px;
}

.homeTables .courseTable {
  width: 40%;
  padding-bottom: 20px;
}

.homeTables .courseTable h4 {
  padding-bottom: 20px;
}

.homeTables .courseTable .course-pending {
  border-radius: 10px;
  border: 1px solid var(--orange, #f36f2b);
  background: rgba(243, 111, 43, 0.8);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 25px 32px;
  margin: 5px 0px 5px;
  color: white;
  font-size: 20px;
  font-weight: 600;
}

/* ////Specialist Page /// */

.specialistPage {
  width: 100%;
  /* height: 100%; */
  /* overflow: hidden; */
}

.manageSpecialistTables .specialistTables {
  width: 100%;
}

/* ////Check Orders Page /// */

.checkOrdersPage {
  width: 100%;
  /* height: 100%; */
  /* overflow: hidden; */
}

.checkOrdersContent .checkOrdersTables {
  width: 100%;
  margin-top: 20px;
}
.nav-tabs{
  border-bottom: none !important;
}
.nav-tabs .nav-link{
  color:  #000;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 20.8px;
}
.nav-tabs .nav-link.active{
  color:  #000 !important;
  font-weight: 600;
  background-color: transparent !important;
  border: none;
  border-bottom: 2px solid #f36f2b;
  border-color: #f36f2b !important;
}
.nav-tabs .nav-link:hover {
  color: #f36f2b !important;
  border: none !important;
}

/* ////Course Progess Page /// */

.courseProgressPage {
  width: 100%;
  /* height: 100%; */
  /* overflow: hidden; */
}

.courseProgressContent .courseProgressTables {
  width: 100%;
}


/* ////User Account Page /// */

.userAccountPage {
  width: 100%;
  /* height: 100%; */
  /* overflow: hidden; */
}

.userAccountContent .userAccountTables {
  width: 100%;
}


/* ////Service Info Page /// */

.serviceInfoPage {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.serviceInfoContent .serviceInfoTables {
  width: 100%;
}


/* //TABLE STYLES// */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 5px;
  box-sizing: border-box;
}
table th {
  text-align: left;
  padding: 15px 30px;
  font-weight: 600;
}

table th:first-child {
  border-radius: 10px 0px 0px 10px;
}
table th:last-child {
  border-radius: 0px 10px 10px 0px;
}
table thead {
  border-radius: 10px !important;
  background: var(--orange, #f36f2b);
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
  color: white;
  margin: 5px;
}

thead tr {
  border-radius: 10px;
}

table .table_row1 {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
  border-top: 10px solid rgb(243 111 43 / 4%);
}

table td {
  padding: 15px 30px;
  font-size: 14px;
  border-radius: 10px 10px 10px 10px;
}
.action_btns {
  /* display: flex; */
  /* gap: 10px; */
}

.action_btns a {
  color:#fff ;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 4.395px;
  border: 1px solid #f36f2b;
  background-color:  #f36f2b;
  padding: 8px 10px;
  cursor: pointer;
  width: 100%;
  display: block;
  transition: 0.3s ease;
}
.action_btns a:hover{
  color:#f36f2b ;
  background-color: transparent;
}
.action_btns .borderBtn {
  color: #f36f2b ;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 4.395px;
  border: 1px solid #f36f2b;
  background: #fff;
  padding: 8px 26px;
  transition: 0.3s ease;
  margin-right: 30px;
  margin-bottom: 10px;
}
.action_btns .borderBtn:hover{
  color: #fff;
  background: #f36f2b;
}

@media only screen and (max-width:1440px){
  .action_btns a {
    width: 100%;
    display: block;
  }
  .action_btns .borderBtn {
    margin-bottom: 10px;
  }
}

/* ////Generate Order Page/// */

.generateOrderPage {
  width: 100%;
}
.generateOrderContent {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.generateForm {
  border-radius: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
  flex: 1 1 100%;
}

.generateForm .formHeading {
  width: 100%;
  border-radius: 10px;
  background: #f36f2b;
  padding: 20px;
  margin-bottom: 10px;
}

.generateForm .formHeading h1 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}
.formContent {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.multipleFieldCont {
  gap: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.generateForm .fieldCont {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
#consultant-dropdown{
  display: none;
}
.generateForm label {
  color: #0b0f19;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.2px;
}

.generateForm input {
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid #aaa;
  background: #fff;
  outline: none;
  width: 100%;
}
.generateForm textarea {
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid #aaa;
  background: #fff;
  outline: none;
  width: 100%;
}

.generateForm input::placeholder {
  color: #8c8c8c;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}

.generateForm select {
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #aaa;
  background: #fff;
  outline: none;
  width: 100%;
}

.generateForm h3 {
  color: #f36f2b;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 25.6px;
  margin: 0;
}

.generateForm p {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%; /* 21px */
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
  padding: 20px;
}

.generateForm button {
  color: var(--white, #fff);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4.395px;
  border: 1px solid #f36f2b;
  background: #f36f2b;
  padding: 8px 20px;
  width: fit-content;
  cursor: pointer;
}

.generateOrderContent .generateLink {
  width: 350px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
  padding: 30px 24px;
}

.generateLink > h4 {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  border-bottom: 1px solid #cacaca;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.generateLink > span {
  color: #f36f2b;
  font-size: 16px;
  font-weight: 700;
  line-height: 25.6px;
}

.generateLink .specialistInfo {
  display: flex;
  flex-direction: row;
  padding: 20px 0px;
  align-items: center;
  border-bottom: 1px solid #cacaca;
  margin-bottom: 20px;
  border-radius: 0;
  box-shadow: none;
  background: none;
  width: 100%;
}

.generateLink .specialistInfo h4 {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%; /* 27px */
  display: flex;
  flex-direction: column;
}

.generateLink .specialistInfo span {
  color: #312828;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.2px;
}
.generateLink .orderLink {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.generateLink .orderLink h3 {
  color: #0b0f19;
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
}

.generateLink .orderLink textarea {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
  border-radius: 5px;
  border: 0.5px solid #f36f2b;
  background: #f36f2b;
  padding: 14px 23px;
}

.generateLink .orderLink button {
  color: #727272;
  font-size: 12px;
  font-weight: 500;
  line-height: 22.4px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
  padding: 14px 23px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  border: none;
  cursor: pointer;
}
.generateLink .orderLink button:hover{
  /* background-color: #f36f2b80;
   */
   border: 1px solid #f36f2b;
  /* color: #fff; */
}
.generateLink .orderLink img {
  cursor: pointer;
}

/* ////Generate Payment Page/// */

.generatePaymentPage {
  width: 100%;
}
.generatePaymentContent {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.generatePaymentContent .generateLink {
  width: 350px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
  padding: 30px 24px;
}

/* /////Edit Specialist Page/////// */

.editSpecialistPage {
  width: 100%;
}

.editSpecialistContent {
  display: flex;
  gap: 30px;
}

.specialistInfo {
  width: 330px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
  padding: 30px 24px;
  min-width: 330px;
}
.specialistInfo .editImgCont {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}
.specialistInfo #previewImg{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.specialistInfo .editImgCont span {
  width: 17px;
  height: 17px;
  cursor: pointer;
}
.specialistInfo .editImgCont span img {
  width: 100%;
}
.editFiledCont {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.editFiledCont label {
  color: #0b0f19;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  padding: 20px 0px 10px 0px;
}

.editFiledCont input ,.editFiledCont textarea {
  border-radius: 10px;
  border: 0.5px solid #f36f2b;
  background: #fff;
  width: 285px;
  padding: 14px 15px;
  color: #727272;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  width: 100%;

}

.editFiledCont select {
  border-radius: 10px;
  border: 0.5px solid #f36f2b;
  background: #fff;
  width: 285px;
  padding: 14px 15px;
  color: #727272;
  font-size: 14px;
  font-weight: 500;
  outline: none;
}
.viewFiledCont {
  display: flex;
  flex-direction: column;
}

.viewFiledCont label {
  color: #0b0f19;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  padding: 20px 0px 10px 0px;
}
.viewFiledCont input {
  border-radius: 10px;
  border: 0.5px solid #f36f2b;
  background: #f36f2b;
  width: 285px;
  padding: 14px 0 14px 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  outline: none;
}

.specialistBio {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
  padding: 30px;
  flex: 1 1 100%;
}

.specialistBio .specBioheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: solid #cacaca;
  border-width: 0px 0px 1px 0px;
  padding-bottom: 28px;
}

.specBioheader h1 {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
}
.specialistBio .specBioheader .action-btns {
  display: flex;
  align-items: center;
  gap: 15px;
}

.specialistBio .specBioheader button {
  border-radius: 4.395px;
  border: 1px solid #f36f2b;
  background: #f36f2b;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 30px;
  cursor: pointer;
}
.specialistBio .specBioheader a {
  border-radius: 4.395px;
  border: 1px solid #f36f2b;
  background: #f36f2b;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 30px;
  cursor: pointer;
}

.specialistBio h4 {
  color: #f36f2b;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid #cacaca;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.specialistBio h4 img {
  /* cursor: pointer; */
}
.specialistBio p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.specBioContent {
  margin-top: 24px;
  padding: 17px 26px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
}


/* /////View Specialist Page/////// */

.viewSpecialistPage {
  width: 100%;
}

.viewSpecialistContent {
  display: flex;
  gap: 30px;
}



/* /////Edit User Page/////// */

.editUserPage {
  width: 100%;
}

.editUserContent {
  display: flex;
  gap: 30px;
}

.editUserForm button{
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 25.6px ;
  padding: 10px 30px;
  border: 1px solid #f36f2b;
  cursor: pointer;
  background-color: #f36f2b;
  border-radius: 10px;
  margin: 20px auto 0;
  display: flex;
  transition: 0.3s ease;
}
.editUserForm button:hover{
  background-color: #fff;
  color: #f36f2b;
}
.usersInfo {
  /* width: 330px; */
  width: 50%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
  padding: 30px 24px;
}
.usersInfo .editImgCont {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}
.usersInfo .editImgCont span {
  width: 17px;
  height: 17px;
  cursor: pointer;
}
.usersInfo .editImgCont span img {
  width: 100%;
}

.userBio {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
  padding: 30px;
}

.userBio .userBioheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: solid #cacaca;
  border-width: 0px 0px 1px 0px;
  padding-bottom: 28px;
}

.userBioContent h1 {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
}
.userBio .userBioheader .action-btns {
  display: flex;
  align-items: center;
  gap: 15px;
}

.userBio .userBioheader button {
  border-radius: 4.395px;
  border: 1px solid #f36f2b;
  background: #f36f2b;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 30px;
  cursor: pointer;
}

.userBio h4 {
  color: #f36f2b;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid #cacaca;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.userBio h4 img {
  cursor: pointer;
}
.userBio p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.userBioContent {
  margin-top: 24px;
  padding: 17px 26px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
}

/* /////View User Page/////// */

.viewUserPage {
  width: 100%;
}

.viewUserContent {
  display: flex;
  gap: 30px;
}


/* ///// View Service Info Page/////// */

.viewServiceInfoPage {
  width: 100%;
}

.viewServiceInfoContent {
  display: flex;
  gap: 30px;
}
.specialistDetail,
.customerDetail {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
  padding: 20px;
  width: 100%;
}

.viewServiceInfoContent h1 {
  color: #f36f2b;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  padding: 0 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cacaca;
}
.specialistDetail .specialistInfo,
.customerDetail .planeInfo {
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  border-bottom: 1px solid #cacaca;
}
.specialistDetail .specialistName,
.specialistDetail .specialistId {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.specialistDetail .specialistName span:first-child,
.specialistDetail .specialistId span:first-child {
  color: #f36f2b;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.6px;
  text-transform: capitalize;
}
.specialistDetail .specialistId span:first-child {
  text-align: center;
}
.specialistDetail .specialistName span:last-child,
.specialistDetail .specialistId span:last-child {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}

.specialistDetail .serviceAmount {
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  border-bottom: 1px solid #cacaca;
}
.specialistDetail .serviceAmount span:first-child {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.6px;
}
.specialistDetail .serviceAmount span:last-child {
  color: #f36f2b;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
}
.specialistDetail .aboutService {
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}
.specialistDetail .aboutService span {
  color: #f36f2b;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.6px;
}
.specialistDetail .aboutService p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.6px;
}

.customerDetail .planeName,
.customerDetail .planeAmount {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.customerDetail .planeName span:first-child,
.customerDetail .planeAmount span:first-child {
  color: #f36f2b;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.6px;
}
.customerDetail .planeAmount span:first-child{
  text-align: right;
}
.customerDetail .planeAmount span:last-child {
  /* text-align: right; */
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;

}
.customerDetail .planeAmount span:last-child img{
  width: 22px;
  height: 22px;
}
.customerDetail .planeName span:last-child,
.customerDetail .planeAmount span:last-child {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}

.customerDetail .orderID {
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  border-bottom: 1px solid #cacaca;
}
.customerDetail .orderID span:first-child {
  color: #f36f2b;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.6px;
}
.customerDetail .orderID span:last-child {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}
.customerDetail .customerBio {
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}
.customerDetail .customerBio span {
  color: #f36f2b;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.6px;
}
.customerDetail .customerBio p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.6px;
}


/* /////Add User Page/////// */

.addUserPage {
  width: 100%;
}

.addUserContent {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.addUserForm {
  width: 50%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 2.777px 15px 0px rgba(243, 111, 43, 0.1);
  padding: 30px 24px;
  margin-bottom: 50px;
}

.addUserForm h1{
  color: #000;
font-size: 25px;
font-style: normal;
font-weight: 500;
line-height:  40px;
text-align: center;
padding-bottom: 20px;
border-bottom: 1px solid #cacaca;
}
.addUserForm select{
  width: 100%;
}
.addUserForm button{
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 25.6px ;
  padding: 10px 30px;
  border: 1px solid #f36f2b;
  cursor: pointer;
  background-color: #f36f2b;
  border-radius: 10px;
  margin: 20px auto 0;
  display: flex;
  transition: 0.3s ease;
}
.addUserForm button:hover{
  background-color: #fff;
  color: #f36f2b;
}

.passInput{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  border: 0.5px solid #f36f2b;
  background: #fff;
  width: 285px;
  padding: 14px 0 14px 22px;
  color: #727272;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  width: 100%;
}
.passInput input{
  border: none;
  padding: 0;
  border-radius: 0;
}
.passInput img{
  width: 17px;
  height: 17px;
  margin-right: 10px;
}
.pass_field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  border: 0.5px solid #f36f2b;
  background: #fff;
  width: 100%;
  padding: 14px 22px;
}
#password_field,#confirm_password_field{
  border: none;
  border-radius: 0px;
  padding: 0;
}
.pass_field span {
  background-image: url("https://www.organizationalclinic.com/images/eye-close-icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 18px;
  display: flex;
  cursor: pointer;
}

.pass_field .show_pass {
  background-image: url("https://www.organizationalclinic.com/images/open-eye-icon.svg");
  background-size: contain;
}
.dualbtnFormCont{
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
.dualbtnFormCont a{
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 25.6px;
    padding: 10px 30px;
    border: 1px solid #f36f2b;
    cursor: pointer;
    background-color: #f36f2b;
    border-radius: 10px;
    display: flex;
    transition: 0.3s ease;
    height: 100%;
}
.dualbtnFormCont a:hover{
  color: #f36f2b;
  background-color: #fff;
  
}
.dualbtnFormCont button{
  margin: 20px 0;
}


/* <------------PAP Agenda Page Styles --------> */
 .papAgenda{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 }
 .papAgenda .papHeading{
     border-bottom: 2px solid Black;
     margin: 40px 0;
 }
 .papAgendaTable{
  width: 100%;
 }
 .papAgendaTable table thead,.papAgendaTable table thead,.papAgendaTable table th{
  border-radius: 0px !important;
 }
.papAgendaTable table {
  width: 70%;
  margin: 0px auto 50px;
  border: 2px solid #f36f2b;
}

.papAgendaTable table td ,.papAgendaTable table th{
  text-align: center;
  font-weight: 500;
  border: 2px solid #f36f2b;
}

/* <------------PAP Agenda Page Styles End --------> */


/* <------------PAP Application Page Styles --------> */
.papApplication{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 }
 .papApplication .papHeading{
     border-bottom: 2px solid Black;
     margin: 40px 0;
 }
.papApplicationContent{
  width: 100%;
}
.papApplicationContent img{
  width: 100%;
  object-fit: contain;
}
.downloadBtn{
  display: flex;
  justify-content: flex-end;
}
.downloadBtn a{
  background-color: #f36f2b;
  color: #fff;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.downloadBtn a:hover{
  background-color: #000;
  color: #fff;
}

/* <------------PAP Application Page Styles End--------> */


/* <------------PAP Documentation Page Styles --------> */
.papDocumentation{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 }
 .papDocumentation .papHeading{
     border-bottom: 2px solid Black;
     margin: 40px 0;
 }
 .papDocumentationTable{
  width: 100%;
 }
 .papDocumentationTable table thead,.papDocumentationTable table thead,.papDocumentationTable table th{
  border-radius: 0px !important;
 }
.papDocumentationTable table {
  width: 90%;
  margin: 0px auto 50px;
  border: 2px solid #f36f2b;
}
.papDocumentationTable table td ,.papDocumentationTable table th{
  text-align: center;
  font-weight: 500;
  border: 2px solid #f36f2b;
}

/* <------------PAP Documentation Page Styles End--------> */



/* <------------PAP Description Page Styles End--------> */

.papDescription{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 }
 .papDescription .papHeading{
     border-bottom: 2px solid Black;
     margin: 40px 0;
 }
 .papDisc {
  padding-bottom: 50px;
 }
 .papDisc h3{
  margin: 30px;
    font-size: 20px;
    font-weight: 600;
 }
/* <------------PAP Description Page Styles End--------> */

/* <------------PAP Directory Page Styles End--------> */
.papDirectory{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 }
 .papDirectory .papHeading{
     border-bottom: 2px solid Black;
     margin: 40px 0;
 }
 .papDirectoryTable{
  width: 100%;
 }
 .papDirectoryTable table thead,.papDirectoryTable table thead,.papDirectoryTable table th{
  border-radius: 0px !important;
 }
.papDirectoryTable table {
  width: 100%;
  margin: 0px auto 50px;
  border: 2px solid #f36f2b;
}
.papDirectoryTable table td ,.papDirectoryTable table th{
  padding: 15px 15px;
  text-align: center;
  font-weight: 500;
  border: 2px solid #f36f2b;
}
/* <------------PAP Directory Page Styles End--------> */

/* 
.thankyouCont{
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;

}

.thankyouContent{
  width: 50%;
  border: 1px solid #f36f2b;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tytext{
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 60%;
}
.tytext h2 {
  font-family: 'Montserrat';
font-size: 35px;
font-weight: 700;
line-height: 43px;
letter-spacing: 0em;
text-align: left;
color: #f36f2b;

}
.tytext p {
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  

}
.tytext a{
  width: fit-content;
  background-color: #f36f2b;
  color: #fff;
  font-family: "Montserrat";
  text-align: center;
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 25.6px;
  padding: 15px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}
.tytext a:hover{
  background-color: #0b0f19;
}

.tyimg img{
  width: 200px;
  height: auto;
} */