h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul,
li,
a,
.btn-default,
textarea {
  margin: 0;
  padding: 0;
}
* {
  margin: 0;
  padding: 0;
}
a,
a:hover {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
body {
  font-family: "Poppins", sans-serif;
  /* font-family: 'Roboto', sans-serif; */
  /* font-family: 'Sora', sans-serif; */
  overflow-x: hidden;
  background: #F8F7FA;
}
.container {
  max-width: 1200px;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #6DC939;
}
/*************GENRAL CLASSES START*************/
/*@font-face {
     font-family: 'Circular Std-Black';
     src: url(../fonts/FontsFree-Net-CircularStd-Black.ttf);
}
*/
.relClass {
  position: relative;
}
.absClass {
  position: absolute;
}
.xy-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.xy-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.boxRadius {
  border-radius: 5px;
}
.marginAuto {
  margin: 0 auto;
}
:root {
  --black : #000;
  --white : #fff;
  --color-1 : #002047;	
  --color-2: #333333;
}
.genBtn {
  width: 205px;
  height: 55px;
  border-radius: 10px;
  background: rgb(193, 5, 5);
  background: linear-gradient(
    0deg,
    rgba(193, 5, 5, 1) 0%,
    rgba(254, 0, 0, 1) 73%
    );
  color: var(--color-3);
  transition: all 0.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  border: 0;
}
.genBtn:hover {
  color: var(--color-3);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
  rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  transform: scale(1.04);
}
/*************GENRAL CLASSES END*************/
.initial_sec_1 {
  position: relative;
  z-index: 999;
  padding: 0px 130px;
}
.initial_sec_1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/login-bg.png);
  background-repeat: no-repeat;
  z-index: -1;
}
.initial_row {
  display: flex;
  align-items: center;
}
.initial_col_left,
.initial_col_right {
  width: 50%;
  min-height: 100vh;
}
.user_initial__box {
  padding: 80px 75px 70px 75px;
  background: var(--color-1);
  border-radius: 20px;
  max-width: 750px;
  width: 100%;
  position: relative;
  margin: 40px 0px;
}
.logo_text {
  font-size: 50px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1;
  padding-bottom: 15px;
}
.sub_heading {
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}
.user_row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 500px;
  margin: 0 auto;
  padding-top: 40px;
}
.user_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  width: 210px;
  height: 210px;
  padding: 24px 0px;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.25s;
  border: 0;
}
.user_btn:hover {
  transform: scale(1.05);
}
.user_title {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  padding-top: 20px;
}
.user_btn img {
  max-width: 125px;
}
/*LOGIN FORM START*/
.user_initial__box.type2 {
  padding-bottom: 130px;
}
.login_form .form_group {
  position: relative;
  margin-bottom: 24px;
}
.gen_label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  padding-bottom: 5px;
  letter-spacing: 0.5px;
}
.gen_input {
  width: 100%;
  height: 60px;
  background: var(--white);
  padding: 12.61px 26px;
  font-size: 14px;
  color: var(--black);
  border: 0;
  border-radius: 50px;
  outline: none;
}
.gen_input::placeholder {
  color: #828282;
}
.forgot_link {
  font-size: 14px;
  color: var(--white);
  text-align: right;
  display: block;
  padding-top: 5px;
}
.forgot_link:hover {
  color: var(--white);
  text-decoration: underline;
}
.form-check-input:focus {
  border-color: #27292c;
  outline: 0;
  box-shadow: none;
}
.form-check-input:checked {
    background-color: #87d331;
    border-color: #87d331;
}
.form-check-input {
  background-color: #27292c;
  width: 18px;
  height: 18px;
}
.log_btn {
  width: 100%;
  height: 60px;
  background: #87D331;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  border: 1px solid transparent;
  transition: all 0.25s;
}
.log_btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: #35310c;
}
.routeLink {
  font-size: 14px;
  color: var(--white);
  text-align: center;
  margin: 35px 0px 0px 0px;
}
.routeLink a {
  font-weight: 700;
  color: #6DC939;
  margin-left: 5px;
}
/*LOGIN FORM END*/
/*DASHBOARD CSS START*/
.header_top {
  display: flex;
  justify-content: space-between;
}
.header_top .left_col {
  width: calc(100% - 420px);
  border-bottom: 1px solid #ccc;
  padding: 15px 20px;
}
.header_top .righgt_col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  max-width: 375px;
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding: 15px 0px;
  padding-right: 30px;
}
.logo_text_main {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #27292c;
}
.search_bar {
  position: relative;
  max-width: 300px;
  transition: all 1s;
}
.search_bar input {
  background: transparent;
  border: 1px solid #fff;
  max-width: 300px;
  width: 100%;
  height: 45px;
  padding-left: 50px;
  outline: none;
}
.search_bar .search_btn {
  width: 45px;
  height: 45px;
  border: 0;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.main_user_top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main_user_top .imgBox img {
  width: 55px;
  height: 55px;
  border-radius: 100%;
  object-fit: cover;
  object-position: center;
}
.main_user_top .title {
  font-size: 16px;
  color: #27292c;
  font-weight: 600;
}
.notification_icon {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 100%;
  transition: all 0.25s;
}
.notification_icon:hover   {
 box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.notification_counts {
    width: 17px;
    height: 17px;
    border-radius: 100%;
    background: #6dc939;
    position: absolute;
    top: 1px;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    color: #fff;
}
.content_main {
  padding: 30px 50px 30px 50px;
}
.content_row {
  display: flex;
  justify-content: space-between;
}
.left_content {
  width: calc(100% - 420px);
}
.right_content {
  max-width: 375px;
  width: 100%;
}
.welcome_card {
  width: 100%;
  background: #002047;
  padding: 40px 40px 0px 40px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  height: 230px;
  position: relative;
  margin-bottom: 24px;
}
.welcome_card .text_box {
  max-width: 375px;
  width: 100%;
  padding-top: 25px;
}
.welcome_card .img_box {
  width: calc(100% - 375px);
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}
.welcome_card .heading_top {
  font-size: 16px;
  color: var(--white);
  padding-bottom: 5px;
}
.welcome_card .heading_main {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
}
.slide_bg {
  position: absolute;
  top: 0;
  right: 370px;
  z-index: -1;
}
.gen_box_1 {
  background: #45857A;
  padding: 25px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 24px;
  position: relative;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.gen_box_1.type1 {
  background: #27292c;
}
.gen_box_1.type2 {
  background: #27292c;
}
.gen_box_1 .icon_box {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.gen_box_1 .title {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.gen_card_1 {
  padding: 25px 20px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 24px;
  background: var(--white);
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.gen_card_1 .tag {
  font-size: 14px;
  font-weight: 600;
  color: #9aa2ac;
  padding-bottom: 5px;
}
.gen_card_1 .info {
  font-size: 24px;
  font-weight: 700;
  color: #27292c;
  padding-bottom: 5px;
}
.gen_card_1 .info span {
  font-size: 16px;
}
.gen_card_1 .status {
  font-size: 14px;
  font-weight: 700;
  color: #27292c;
}
.gen_card_1 .status .session {
  font-size: 14px;
  padding-right: 40px;
}
.d_down {
  width: 17px;
  height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  font-size: 12px;
  position: absolute;
  top: 15px;
  right: 15px;
  color: #9c9c9c;
  transition: all 0.25s;
}
.d_down:hover {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
  rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  color: #9c9c9c;
}
.chart_wrap {
  padding: 15px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
  rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
#progress_chart {
  width: 100% !important;
}
.heading {
  font-size: 25px;
  font-weight: 700;
  color: #333;
}
.chart_info_bar {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.chart_info {
  display: flex;
  gap: 30px;
}
.chart_data {
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
}
.chart_data .title {
  font-size: 12px;
  font-weight: 600;
  color: #a098ae;
}
.chart_data .data_title {
  font-size: 20px;
  font-weight: 700;
  color: #303972;
  padding-left: 16px;
}
.chart_data i {
  color: #fcc43e;
  font-size: 12px;
}
.bottom_bar {
  padding-top: 30px;
}
/*JQUERY CALENDER START*/
.ui-datepicker-header {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-align: left;
}
.ui-datepicker-prev span,
.ui-datepicker-next span {
  display: none !important;
}
/*.ui-datepicker-prev:after{
     content:"<";
     font-size:2rem;
     float:left;
     margin-left:10px;
     cursor:pointer;
}
 .ui-datepicker-next:after{
     content:">";
     float:right;
     font-size:2rem;
     margin-right:10px;
     cursor:pointer;
}
*/
.ui-datepicker-calendar th {
  padding: 10px;
  color: #9aa2ac;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 15px;
}
.ui-datepicker-calendar {
  text-align: center;
}
.ui-datepicker-title {
  padding-left: 7px;
}
.ui-datepicker-calendar td {
  padding: 10px 0px;
}
.ui-datepicker-calendar .ui-state-default {
    font-size: 14px;
    text-decoration: none;
    color: var(--black);
    font-family: "Sora", sans-serif;
    padding: 10px 12px;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: block;
    margin: 0 auto;
}
.ui-datepicker-calendar .ui-state-active {
  color: #fff;
  background: #002047;
}
.calen_wrap {
  padding: 15px;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 40px;
}
/*JQUERY CALENDER END*/
.message_wrap {
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: var(--white);
}
.message_wrap .inner_wrap {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 5px;
}
.message_wrap .inner_wrap::-webkit-scrollbar {
  width: 3px;
}
.message_wrap .inner_wrap::-webkit-scrollbar-track {
  background: #fff;
}
.message_wrap .inner_wrap::-webkit-scrollbar-thumb {
  background: #eee;
}
.message_box {
  margin-bottom: 24px;
}
.message_box .top_info {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 10px;
}
.message_box .ms_img {
  width: 55px;
  height: 55px;
  border-radius: 100%;
  object-fit: cover;
  object-position: center;
}
.message_box .text_box {
  width: calc(100% - 55px);
}
.message_box .ms_name {
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  padding-bottom: 5px;
  line-height: 1;
}
.message_box .ms_tagline {
  font-size: 14px;
  color: #858688;
}
.message_box .bottom_info {
  display: flex;
  gap: 20px;
}
.message_box .text_mmsg {
  width: calc(100% - 75px);
  font-size: 14px;
  color: #5b5c5e;
}
.message_box .cmnt_img img {
  width: 65px;
  height: 65px;
  border-radius: 8px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}
.ms_time {
  font-size: 14px;
  color: #858688;
}
/*DASHBOARD CSS START*/
/*LANGUAGE THERAPY PAGE START*/
.sp_row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
  padding-top: 10px;
}
.sp_card {
  width: 220px;
  height: 220px;
  border: 1px solid #333;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--white);
}
.sp_card .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  padding-top: 20px;
  line-height: 1;
  text-transform: uppercase;
}
/*LANGUAGE THERAPY PAGE END*/
/*TARGET PAGE START*/
.target_box {
  border-radius: 10px;
  background: var(--white);
  padding: 30px;
}
.target_row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 30px;
}
.target_video {
  max-width: 250px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  display: block;
  margin: 10px 0px;
}
.target_box .target_desc {
  font-size: 18px;
  color: var(--black);
}
.target_video .img_box {
  width: 100%;
  height: 150px;
  overflow: hidden;
  position: relative;
}
.ply_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.target_video .img_box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.3;
}
.target_video .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.target_video .text_box {
  padding: 15px 5px;
  background: #efefef;
}
.target_video .text_box p {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.record_btn {
  font-size: 18px;
  color: #27292c;
}
.record_btn:hover {
  color: #27292c;
}
/*TARGET PAGE START*/
/*SESSION PAGE START*/
.session_row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 10px;
}
.session_card {
  max-width: 400px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 24px;
}
.session_card .text_box {
  background: #efefef;
  padding: 20px 25px 25px 20px;
}
.session_card .img_box {
  width: 100%;
  height: 155px;
  overflow: hidden;
}
.session_card .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}
.date_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 15px;
}
.date_item {
  font-size: 14px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.session_card .title {
  font-size: 18px;
  color: var(--black);
  max-width: 250px;
  padding-bottom: 20px;
}
.session_btn {
  font-size: 12px;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 60px;
  background: #fff;
  width: fit-content;
  text-transform: uppercase;
  border: 0;
}
.session_btn:hover {
  color: #000;
}
.session_btn.clrBlck {
  background: var(--black);
}
.session_card .btn_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/*SESSION PAGE END*/
/*TARGET MAIN PAGE START*/
.target_main_wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #fff;
  border-radius: 20px;
}
.target_inner_left {
  padding: 35px 15px 45px 50px;
  border-radius: 8px;
  max-width: 800px;
  width: 100%;
  background-color: transparent;
}
.target_nav_bar {
  padding-right: 50px;
  max-height: 400px;
  overflow-y: auto;
}
/* width */
.target_nav_bar::-webkit-scrollbar {
  width: 10px;
}
.target_nav_bar::-webkit-scrollbar-track {
  background: #d9d9d9;
  border-radius: 10px;
}
.target_nav_bar::-webkit-scrollbar-thumb {
  background: #6DC939;
  border-radius: 10px;
}
.target_nav {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #27292c;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  border-radius: 60px;
  margin: 20px 0px;
  text-transform: uppercase;
  transition: .5s all;
}
.target_nav:hover {
  background-color: #45857a;
  color: var(--white);
}
.target_card_main .text_box {
  padding: 15px 25px;
}
.target_card_main {
  max-width: 325px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.target_card_main img {
  width: 324px;
  height: 324px;
  object-fit: cover;
  object-position: center;
}
.target_card_main .tagline {
  font-size: 12px;
  font-weight: 600;
  color: #9aa2ac;
  padding-bottom: 5px;
}
.target_card_main .title {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  padding-bottom: 5px;
}
.target_card_main .status {
  font-size: 10px;
  font-weight: 600;
  color: var(--black);
}
/*TARGET MAIN PAGE END*/
/*DROPDOWNS*/
.edit_options {
  position: absolute;
  background: #fff;
  top: 18px;
  right: 34px;
  width: 100px;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  overflow: hidden;
  display: none;
  z-index: 999;
}
.edit_options .edit_line {
  font-size: 11.5px;
  font-weight: 600;
  color: #191970;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 5px 0px;
}
.notification_dropdown {
  background: #fff;
  position: absolute;
  top: 40px;
  right: -10px;
  z-index: 999;
  width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  display: none;
}
.notification_dropdown .n_inner {
  max-height: 185px;
}
.notification_dropdown .heading {
  padding: 12px 20px;
  text-align: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  font-size: 18px;
}
.notification_item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border: 0;
  border-bottom: 1px solid #eee;
  background: transparent;
}
.notification_item:last-of-type {
  border-bottom: 0;
}
.notification_item img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
  overflow: hidden;
}
.n_txt {
  font-size: 12px;
  color: #000;
  white-space: nowrap;
  width: 230px;
  overflow: hidden;
  text-overflow: ellipsis;
}
/*DROPDOWNS*/
.pass_wrap {
  position: relative;
}
.toggle_password {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #333;
  cursor: pointer;
}
/*PATIENT DASHBOARD*/
.main_row {
  display: flex;
}
.side_menu {
  max-width: 300px;
  width: 100%;
  background: var(--white);
  min-height: 100vh;
  padding: 40px 0px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}
.content_sec {
  width: calc(100% - 300px);
  min-height: 100vh;
  background: #f7f8fc;
  padding: 15px;
}
.side_abs_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.3;
  z-index: -1;
}
.nav_bar {
  padding: 30px 20px 20px 20px;
  list-style: none;
}
.logo_box .p_logo {
  color: var(--white);
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.197px;
}
.nav_item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 20px;
  transition: all 0.25s;
  color: #828282;
  border-radius: 10px;
  margin-bottom: 15px;
}
.nav_item img {
  transition: all 0.25s;
}
.nav_item:hover,
.nav_item.active {
  background: #6DC939;
  color: var(--white);
}
.nav_item:hover img,
.nav_item.active img {
  filter: brightness(0) invert(1);
}
.content_sec .header_top {
  background: var(--white);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.content_sec .header_top .left_col {
  width: calc(100% - 375px);
  border: 0;
}
.content_sec .header_top .righgt_col {
  max-width: 375px;
  border: 0;
}
.content_sec .logo_text_main {
  font-size: 24px;
  font-weight: 600;
}
.content_sec .main_user_top .imgBox img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center;
}
.inner_content_sec {
  padding: 30px 20px;
}
.data_box {
  display: flex;
  align-items: center;
  padding: 28px 24px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dfe0eb;
  width: 100%;
  background: var(--white);
  transition: all 0.25s;
  height: 120px;
}
.data_box:hover {
  border: 1px solid var(--color-1);
}
.data_box .icon_box {
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(25 25 112 / 14%);
  border-radius: 10px;
  overflow: hidden;
}
.data_box .title {
  font-size: 16px;
  font-weight: 700;
  color: #9fa2b4;
}
.data_box .count {
  font-size: 30px;
  font-weight: 700;
  color: #252733;
}
.data_box .text_box {
  width: calc(100% - 75px);
  padding-left: 20px;
}
.inner_content_sec .message_wrap {
  max-width: 380px;
  width: 100%;
  padding: 20px 20px;
}
.inner_content_sec .message_box .top_info {
  gap: 12px;
}
.inner_content_sec .message_box .ms_name {
  font-size: 16px;
}
.inner_content_sec .message_box .ms_tagline {
  font-size: 12px;
}
.inner_content_sec .message_box .ms_img {
  width: 45px;
  height: 45px;
}
.inner_content_sec .message_box .cmnt_img img {
  width: 55px;
  height: 55px;
}
.inner_content_sec .message_box .text_mmsg {
  width: calc(100% - 75px);
  font-size: 13px;
}
.gen_table td {
  padding: 30px 0px !important;
}
.table_row {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.table_box .top_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
.table_box .heading {
  font-size: 22px;
  color: #252733;
}
.filter_btn_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.filer_btn {
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #4b506d;
}
.table_heading {
  font-size: 14px;
  font-weight: 700;
  color: #9fa2b4;
}
.table_col_max {
  display: flex;
  align-items: center;
}
.table_col_max .text_wrap {
  width: calc(100% - 45px);
  padding-left: 10px;
}
.table_col_max img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
  overflow: hidden;
}
.table_col_max .r_name {
  font-size: 13px;
  font-weight: 400;
  color: #252733;
  padding-bottom: 5px;
}
.table_col_max .r_date {
  font-size: 11px;
  font-weight: 400;
  color: #c5c7cd;
}
.table_col_min .r_name {
  font-size: 13px;
  font-weight: 600;
  color: #252733;
  padding-bottom: 5px;
}
.table_col_min .r_date {
  font-size: 11px;
  font-weight: 400;
  color: #c5c7cd;
}
.view_btn {
  width: 100px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333333;
  border-radius: 60px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.view_btn:hover {
  color: var(--white);
}
.page-link {
  font-size: 12px;
  color: #333333;
}
.page-link:focus {
  color: #333333;
  background-color: #e9ecef;
  box-shadow: none;
}
.user_banner {
  width: 100%;
  height: 170px;
  background: #35488b;
  border-radius: 22.289px 22.289px 0px 0px;
  position: relative;
}
.user_img {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  overflow: hidden;
  border: 5px solid var(--white);
}
.user_info {
  position: absolute;
  bottom: -55px;
  left: 34px;
}
.user_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.user_info .text_box {
  position: absolute;
  top: 25px;
  right: -185px;
}
.p_name {
  font-size: 25px;
  font-weight: 700;
  color: var(--white);
}
.p_email {
  font-size: 13px;
  color: var(--white);
}
.abs_circle {
  position: absolute;
  right: 100px;
  bottom: 0;
  z-index: 1;
}
.circle_1 {
  position: absolute;
  left: -140px;
  bottom: 0;
  z-index: -1;
}
.table_box.type1 {
  padding: 0;
  box-shadow: none;
  padding-top: 75px;
  background: transparent;
  overflow: visible;
}
.goal-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.25s;
}
.goal-card:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.set_target_box {
  background: var(--white);
  padding: 30px 40px 40px 40px;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.set_target_box .heading {
  font-size: 20px;
  padding-bottom: 20px;
}
.set_target_box .form_group label {
  font-size: 15px;
  color: var(--black);
  padding-bottom: 5px;
}
.set_target_box .form_group input {
  width: 100%;
  height: 50px;
  border: 1px solid #eaeaea;
  background: #fafafa;
  padding: 0px 25px;
  outline: none;
  border-radius: 5px;
}
.uploaded_item,
.uploaded_btn_wrap {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 25px 30px;
}
.uploaded_item .up_bar {
  width: calc(100% - 30px);
  padding-left: 15px;
}
.uploaded_item .top_row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 5px;
}
.upload_box {
  border: 1px solid #eaeaea;
  border-radius: 10px;
}
.upload_box .title {
  font-size: 16px;
  color: var(--black);
  width: 100%;
  padding: 15px 20px;
  background: #f3f1f6;
}
.file_text {
  font-size: 14px;
  color: #666;
}
.file_text i {
  color: rgba(0, 255, 71, 1);
  cursor: pointer;
}
.progress {
  height: 3px;
}
.progress-bar {
  background-color: rgba(0, 255, 71, 1);
}
.upload_btn {
  width: 100%;
  height: 60px;
  border-radius: 10px;
  border: 2px dashed #9c9c9c;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.upload_btn p {
  color: #999;
}
.upload_btn p span {
  color: #191970;
}
.upload_btn input {
  display: none;
}
.up_circle {
  width: 40px;
  height: 40px;
  background: #191970;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.set_target_row {
  padding-top: 20px;
  padding-left: 30px;
}
.set_target_box.type1 {
  margin-bottom: 30px;
}
.set_target_box_wrap {
  max-height: 615px;
  overflow-y: auto;
  padding-right: 20px;
}
.set_target_box_wrap::-webkit-scrollbar {
  width: 10px;
}
.set_target_box_wrap::-webkit-scrollbar-track {
  background: #d9d9d9;
  border-radius: 10px;
}
.set_target_box_wrap::-webkit-scrollbar-thumb {
  background: #191970;
  border-radius: 10px;
}
.set_target_btn_wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  padding: 20px;
}
.set_target_btn_wrap .session_btn {
  font-size: 15px;
  padding: 12px 36px;
}
.calen_wrap.type1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 25px;
  position: relative;
}
.calen_wrap.type1 .ui-datepicker-calendar td {
  padding: 15px 0px;
}
.calen_wrap.type1 .ui-datepicker-calendar .ui-state-default {
  font-size: 20px;
}
.calen_wrap.type1 .ui-datepicker-calendar th {
  padding: 15px;
  font-size: 20px;
}
.calen_wrap.type1 .ui-datepicker-title {
  font-size: 25px;
  padding-left: 10px;
}
.calen_wrap.type1 .ui-datepicker-prev span,
.ui-datepicker-next span {
  display: block;
  cursor: pointer;
}
.calen_wrap.type1 .ui-datepicker-prev.ui-corner-all {
  position: absolute;
  top: 25px;
  right: 55px;
}
.calen_wrap.type1 .ui-datepicker-next.ui-corner-all {
  position: absolute;
  top: 25px;
  right: 20px;
}
.calen_wrap.type1 .ui-datepicker-prev.ui-corner-all,
.calen_wrap.type1 .ui-datepicker-next.ui-corner-all {
  font-size: 26px;
  font-weight: 300;
  color: #333333;
}
.session_details_box {
  display: flex;
  align-items: center;
  max-width: 433px;
  border-radius: 10px;
  background: var(--white);
  padding: 10px;
}
.session_details_box .text_box {
  width: calc(100% - 100px);
  padding-left: 20px;
}
.session_details_box .img_box img {
  width: 115px;
  height: 115px;
  border-radius: 10px;
}
.session_details_box .dates span {
  font-size: 14px;
  color: #000;
}
.session_details_box .title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  padding-bottom: 5px;
}
.submit_btn {
  font-size: 16px;
  padding: 11px 40px;
}
.set_target_box .row {
  max-width: 1240px;
}
.logo_box {
  max-width: 175px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
.logo_box img {
  margin: 0px 0px 40px 0px;
}
.user_initial_box {
  padding: 80px 75px 130px 75px;
  background: var(--color-1);
  border-radius: 20px;
  max-width: 750px;
  width: 100%;
  position: relative;
  margin: 40px 0px; 
}
.session_box_calender {
  background-color: var(--white);
  padding: 10px;
  width: 50%;
}
.target_main_wrap_new {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.session_box_sm_box {
  border-radius: 15px;
  background: #002047;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 350px;
}
.session_box_sm_box_text ul{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0px 0px 5px 0px;
}
.session_box_sm_box_text ul li{
  font-size: 12px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 5px;
}
.session_box_sm_box_text .title{
  font-size: 14px;
  color: var(--white);
  margin: 0px 0px 10px 0px;
}
.ui-state-disabled .ui-state-default {
  color: #d3d3d3;
}
.session_box_calender .ui-datepicker-calendar {
  width: 100%;
  height: 400px;
}
.session_box_sm_box_img img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  border-radius: 15px;
}
.session_box_sm_box_text {
  width: calc(100% - 115px);
}

/*NEW DASHBOARD CSS*/
.appointment_box {
  border-radius: 20px;
  background: #FFF;
  padding: 30px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 500px;
}
.appointment_box .title {
  color: #333;
  font-weight: 600;
  position: absolute;
  top: 30px;
  left: 30px;
}
.appoint_btn {
  font-size: 14px;
  color: #35488B;
  font-weight: 700;
  border-radius: 500px;
  background: rgba(53, 72, 139, 0.10);
  display: flex;
  width: 300px;
  height: 54px;
  padding: 14.186px 25.219px;
  justify-content: center;
  align-items: center;
  gap: 7.881px;
  flex-shrink: 0;
  border: 0;
}
.appointment_box .desc {
  font-size: 14px;
  font-weight: 500;
  color: #999;
  text-align: center;
}
.payment_btn {
  display: flex;
  width: 200px;
  height: 54px;
  padding: 14.186px 25.219px;
  justify-content: center;
  align-items: center;
  gap: 7.881px;
  flex-shrink: 0;
  border-radius: 500px;
  background: #87D331;
  border: 0;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.appointment_box.type1 {
  justify-content: flex-start;
  padding-top: 70px;
  height: auto;
}
.appointment_col {
  width: 100%;
  max-height: 440px;
  overflow-y: auto;
  padding-right: 15px;
}
.appointment_col::-webkit-scrollbar {
  width: 5px;
}
.appointment_col::-webkit-scrollbar-track {
  background: #eee; 
}
.appointment_col::-webkit-scrollbar-thumb {
  background: #6DC939; 
}
.appointment_row {
  padding: 20px 0px;
  border-bottom: 1px solid #F1F1F1;
}
.appointment_detail_box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.appointment_detail_box .text_box {
  width: calc(100% - 70px;)
}
.appointment_detail_box .icon_box {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  overflow: hidden;
  background: rgba(53, 72, 139, 0.10);
}
.appointment_detail_box .date_txt  {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  padding-bottom: 5px;
}
.appointment_detail_box .title_txt  {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}
.appointment_rate {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}
.appointment_box_2 {
 border-radius: 20px;
 background: #FFF;
 padding: 30px;
 position: relative;
}
.appointment_box_2 .title {
  color: #333;
  font-weight: 700;
}
.target_box .heading {
  font-size: 16px;
  color: #333;
  font-weight: 700;
}
.profile_form {
  background: #fff;
  padding: 100px 30px 65px 30px;
}
.profile_form .gen_label {
  font-size: 14px;
  color: #333;
}
.profile_form .gen_input {
  background: #FAFAFA;
}
.profile_submit_btn {
  display: flex;
  width: 200px;
  height: 54px;
  padding: 14.186px 25.219px;
  justify-content: center;
  align-items: center;
  gap: 7.881px;
  border-radius: 500px;
  background: #87D331;
  border: 0;
  color: #fff;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}
.pass_btn {
  color: #000;
  font-size: 12px;
  font-weight: 500;
  text-align: end;
  display: block;
  text-decoration: underline;
  padding-top: 5px;
}
.pass_btn:hover {
  color: #000;
  text-decoration: underline;
}
.chat_search_bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.chat_search_bar a {
  font-size: 25px;
  color: #707991;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
}
.chat_search_bar .form_group {
  position: relative;
  width: calc(100% - 40px);
}
.chat_search_bar input {
  width: 100%;
  height: 50px;
  padding: 8px 16px;
  padding-left: 50px;
  border-radius: 22px;
  background: #F5F5F5;
  border: 0;
  outline: none;
}
.search_icon {
  font-size: 20px;
  color: #a8aebf;
  width: 50px;
  height: 50px;
  border: 0;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.chat_wrapper {
  display: flex;
  background: url(../images/chat-bg.jpg) center /cover;
}
.chat_side_bar {
  max-width: 400px;
  width: 100%;
  min-height: 100vh;
  background: #fff;
}
.chat_body {
  width: calc(100% - 400px);
  min-height: 100vh;
  position: relative;
}
.chat_item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  position: relative;
  transition: all 0.25s;
}
.chat_item:hover {
  background: #F5F5F5;
}
.chat_item .txt_box {
  width: calc(100% - 48px;)
}
.chat_item .img_box {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  overflow: hidden;
  background: #8BABD8;
}
.chat_item .img_box img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
  overflow: hidden;
}
.chat_item .title {
  color: #35488B;
  font-size: 16px;
  font-weight: 600;
}
.chat_item .desc {
  color: #707991;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  width: 180px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.chat_item .desc span {
  color: #000;
} 
.chat_time {
  color: #707991;
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  top: 10px;
  right: 15px;
}
.chat_counts {
  width: 17px;
  height: 17px;
  border-radius: 100%;
  background: #87D331;
  color: #fff;
  font-size: 10px;
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.chat_body_header {
  background: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 999;
}
.chat_user_box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat_user_box .img_box img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
  overflow: hidden; 
}
.chat_user_box .txt_box {
  width: calc(100% - 48px;)
}
.chat_user_box .title {
  color: #011627;
  font-size: 16px;
  font-weight: 600;
}
.chat_user_box .desc {
  color: #707991;
  font-size: 14px;
  font-weight: 400;
}
.chat_body_header .action_icons {
  display: flex;
  align-items: center;
  gap: 30px;
}
.chat_body_header .action_icons .ac_btn {
  background: transparent;
  border: 0;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #707991;
}
.chat_middle {
    padding: 15px 40px;
    height: calc(100% - 140px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow-y: auto;
}
.message_row {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;

}
.receive_message {
  justify-content: flex-start;
}
.sent_message {
  justify-content: flex-end;
}
.sent_message .message_item {
  background: #78E378;
}
.sent_message .msg_time {
  color: #fff;
}
.sent_message .msg_time i {
  font-size: 10px;
}
.message_item {
  padding: 8px 15px 25px 15px;
  gap: 4px;
  border-radius: 12px;
  background: #FFF;
  max-width: 400px;
  position: relative;
}
.message_item p {
  color: #011627;
  font-size: 16px;
  font-weight: 400;
}
.msg_time {
  position: absolute;
  bottom: 5px;
  right: 10px;
  font-size: 12px;
  color: #011627;
}
.chat_bottom {
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}
.write_message_group {
  padding: 0px 15px;
  position: relative;
}
.write_message_group .input_msg {
  width: 100%;
  height: 55px;
  border-radius: 12px;
  background: #FFF;
  outline: none;
  border: 0;
  color: #707991;
  font-size: 16px;
  font-weight: 400;
  padding: 0px 60px;
}
.send_btn,
.emoji_btn {
  width: 55px;
  height: 55px;
  background: transparent;
  border: 0;
  position: absolute;
  top: 0;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emoji_btn {
  right: auto;
  left: 20px;
}



/*DATA TABLE*/
table.table-bordered.dataTable th {
  font-size: 15px;
  color: #35488B;
  padding: 15px;
}
table.table-bordered.dataTable tbody td {
    font-size: 14px;
    font-weight: 500;
    color: #828282;
    padding: 15px;
}
table.table-bordered.dataTable tbody td span{
  font-size: 13px;
  font-weight: 300;
  color: #C5C7CD;
}
#table_main_length {
  display: none;
}
.dataTables_wrapper div.dataTables_filter input {
  width: 300px;
  height: 40px;
  border-radius: 60px;
  padding: 5px 20px;
}
#table_main {
  margin-top: 35px!important;
}
.table-striped>tbody>tr:nth-of-type(odd) {
  --bs-table-accent-bg: rgb(0 0 0 / 2%);
}
.dataTables_wrapper div.dataTables_info {
  font-size: 14px;
  color: #9FA2B4;
  margin-left: 30px;
}
.paginate_button {
  display: none;
}
.page-item.active .page-link {
  color: #000;
  background-color: #00000021;
  border-color: #00000021;
}
.dataTables_wrapper .dataTables_paginate ul.pagination {
  font-size: 14px;
  color: #9FA2B4;
}
.table_box {
  width: 100%;
  padding: 30px 24px;
  background: var(--white);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 8px;
  overflow: hidden;
}
.dataTables_wrapper .dataTables_filter label {
  margin-right: 30px;
  font-size: 14px;
  color: #9fa2bb;
}
.dataTables_wrapper .dataTables_paginate {
  margin-right: 30px;
}


.dataTables_wrapper div.dataTables_filter input {
  width: 300px;
  height: 40px;
  border-radius: 60px;
  padding: 5px 20px;
  border: 1px solid #ced4da;
}