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

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

html {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

body {
  font-family: var(--outfit);
  overflow-x: hidden;
}


/* fonts */

@font-face {
  font-family: "DancingScript-Bold";
  src: url(../fonts/Dancing_Script/static/DancingScript-Bold.ttf);
}

@font-face {
  font-family: "DancingScript-Medium";
  src: url(../fonts/Dancing_Script/static/DancingScript-Medium.ttf);
}

@font-face {
  font-family: "DancingScript-Regular";
  src: url(../fonts/Dancing_Script/static/DancingScript-Regular.ttf);
}

@font-face {
  font-family: "DancingScript-SemiBold";
  src: url(../fonts/Dancing_Script/static/DancingScript-SemiBold.ttf);
}

@font-face {
  font-family: "Cocogoose-Pro-Semilight-trial";
  src: url(../fonts/Cocogoose-Pro-Semilight-trial.ttf);
}

:root {
  --Cocogoose-Pro-Semilight: "Cocogoose-Pro-Semilight-trial";
  --black: #000;
  --outfit: "Outfit", sans-serif;
  --backBg: #dddddd;
  --primaryhd: #054854;
  --imgborder: #107082;
  --lightblue: #e3f0ff;
  --lightblue2: #f3f8fe;
  --btnPrimary: #185fa1;
  --btnPrimary2: #1877f2;
  --docbg: #f5fafe;
  --ageColor: #d8eafc;
}

/* header start */
.menu-btn,
.close-btn,
.menu-btn-dashboard {
  display: none;
}

header {
  background-color: #fff;
  box-shadow: 1px 5px 9px #8888883b;
  padding: 20px;
}

.logo-img-area img {
  object-fit: contain;
  height: 50px;
}

.list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}

.list .list-item {
  list-style: none;
}

.list .list-item a {
  color: var(--black);
  font-size: 1.25rem;
  font-family: var(--outfit);
  font-weight: 500;
}

.primary-btn {
  font-size: 1.2rem;
  font-family: var(--outfit);
  font-weight: 500;
  padding: 11px 28px;
  border-radius: 5px;
  color: var(--black);
  border: 1px solid var(--black);
}

main {
  background-color: #fff;
  padding: 20px;
  position: relative;
}

.side-bar {
  width: 300px;
}

.boost-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  background-color: #107082;
  padding: 17px 20px;
  justify-content: start;
  border-radius: 10px;
  margin: 20px 0;
  color: white;
  font-family: var(--outfit);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
}

.side-nav {
  display: flex;
  justify-content: start;
  padding: 10px 20px;
  gap: 15px;
  align-items: center;
  font-size: 1.2rem;
  font-family: var(--outfit);
  transition: 0.5s;
  color: black;
  border-radius: 5px;
  margin: 10px 0;
  position: relative;
}

.side-li.active .fa-chevron-down {
  transform: rotate(180deg);
}

.side-nav .fa-chevron-down {
  font-size: 15px;
  position: absolute;
  right: 10px;
  transition: 0.5s;
}

.side-select {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--outfit);
}

.side-nav:hover {
  background-color: #054854;
  color: white;
}

.side-nav.active {
  background-color: #054854;
  color: white;
}

.side-nav.active img,
.side-nav:hover img {
  filter: brightness(0) invert(1);
}

a.side-nav i {
  /* font-size: 2rem; */
  width: 11%;
}

.opt-area-product,
.barcode-area-product {
  height: 100vh;
  width: 100%;
  background: #00000063;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
}

.product-add-opt,
.barcode-area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  height: 250px;
  width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 2px gray;
  background: #fff;
  padding: 15px;
}

.barcode-area {
  height: 120px !important;
}

.product-add-opt button,
.product-add-opt label {
  background: #054854;
  color: #fff;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 5px;
  text-align: center;
}

.close-btn-custom {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #054854;
  color: #fff;
  border: none;
  width: 30px !important;
  height: 30px !important;
  padding: 0 !important;
  border-radius: 50%;
}

.app-schedule span {
  display: flex;
  gap: 6px;
  font-size: 1.2rem;
  align-items: center;
  color: #2e3842;
  font-weight: 500;
}

.start-now {
  text-decoration: underline;
  color: black;
  font-weight: 700;
}

/* tab */
.tabs {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  gap: 0px;
  align-items: center;
}

.tab-btn {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background-color: #f1f5f9;
  border-radius: 15px;
  transition: background-color 0.3s;
  color: #334155;
}

.appoint-nmb {
  background: white;
  color: black;
  padding: 0 8px;
  border-radius: 16px;
}

.tab-btn-area {
  display: flex;
  gap: 10px;
  align-items: center;
}

.tab-btn.active {
  background-color: #054854;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  padding: 20px;
}

.tab-filter {
  display: flex;
  gap: 10px;
  align-items: center;
}

.calendar-input {
  padding: 7px;
  border: 1px solid #ededed;
  border-radius: 5px;
  display: flex;
  gap: 10px;
  align-items: center;
}

#daterange {
  outline: none;
  border: none;
}

.filter-drop {
  border: 1px solid #ededed;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* footer  */
footer {
  background-color: var(--primaryhd);
  padding: 70px 0 40px 0;
}

.footer-nav-hd {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 30px;
  font-family: var(--Cocogoose-Pro-Semilight);
  line-height: 1.3;
}

.footer-list {
  padding: 0;
  margin: 0;
}

.footer-list-item {
  font-size: 1.1rem;
  font-weight: 300;
  list-style: none;
  color: #fff;
  margin-bottom: 20px;
  font-family: var(--outfit);
}

.footer-list-item a {
  color: #fff;
}

.img-app-area.footer-qrcode>div {
  width: 50%;
}

.img-app-area.footer-qrcode {
  display: flex;
  align-items: center;
}

/* .first-nav{
    padding-left: 35px;
} */
strong {
  font-weight: 700;
}

.qrcode-area {
  background-image: url(../images/bgQrcode.png);
  padding: 5px;
  border-radius: 5px;
}

.qr-code-white {
  background-color: #fff;
  padding: 5px;
  border-radius: 5px;
}

/* copyright-sec */
.copyright-sec {
  padding: 30px 0;
}

.copyright-para {
  font-size: 1.1rem;
  color: var(--black);
  font-weight: 400;
  font-family: var(--outfit);
  margin: 0;
}

.copyright-para.text-end a {
  color: var(--black);
}

.main-area {
  background-color: #2a3c8e;
  width: 100%;
  overflow: hidden;
  padding-right: 0;
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 22px;
  border-radius: 19px;
}

.header-notif-bell {
  font-size: 20px;
  color: white;
  background-color: #346a71;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 50%;
  cursor: pointer;
  font-family: var(--outfit);
}

.notification-span {
  position: absolute;
  top: -5px;
  right: -4px;
  font-size: 14px;
  background-color: #346a71;
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  border-radius: 20px;
}

.nortification-dropdown.active {
  display: block;
}

.nortification-dropdown {
  position: absolute;
  top: 50px;
  width: 260px;
  border: 1px solid #fff;
  background-color: #f5f7fc;
  display: none;
  right: 0;
  z-index: 999;
}

.nd-hd-p {
  text-align: center;
  background: #7ecbd5;
  color: white;
  padding: 20px 0;
  font-size: 22px;
}

.not-dt-area {
  height: 400px;
  overflow-y: auto;
}

span.not-drop-det {
  display: flex;
  gap: 10px;
  padding: 10px;
  align-items: center;
  border-bottom: 1px solid #000;
}

span.not-drop-det img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.not-nme {
  width: 80%;
  color: black;
  gap: 5px;
  display: flex;
  flex-direction: column;
}

.not-nme h2 {
  font-size: 16px;
}

.not-nme span {
  font-size: 12px;
}

.not-descrip p {
  font-size: 13px;
  color: #5d646d;
}

.dashboard-main-area {
  display: flex;
  gap: 30px;
  position: relative;
  width: 100%;
}

.dashboard-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  /* border-bottom: 2px solid #e6e6e6; */
  background: #2a3c8e;
  color: #fff;
  border-radius: 10px;
}

.dashboard-heading>div {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-dropdown .btn:hover {
  color: black !important;
  background-color: transparent !important;
  border-color: none !important;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: black !important;
  background-color: transparent !important;
  border-color: none !important;
}

.user-head-img {
  display: flex;
  align-items: center;
}

.user-head-img img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.header-dropdown a {
  background-color: transparent;
  border: none;
  color: #000;
  font-family: var(--outfit);
}

.pg-hd {
  font-size: 2.7rem;
  font-family: var(--outfit);
  font-weight: 700;
  color: #fff;
}

.main-detail-area {
  padding: 25px;
}

.chart-box-area {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.chart-box {
  display: flex;
  justify-content: space-between;
  padding: 27px 20px;
  box-shadow: 1px 9px 10px #0000000d;
  border-radius: 10px;
  border: 1px solid #cdcdcd;
  align-items: center;
}

.chrt-title {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.short-p-chart {
  font-size: 1.3rem;
  font-family: var(--outfit);
  color: #334155;
}

.title-chart {
  font-size: 2rem;
  font-family: var(--outfit);
  font-weight: 700;
}

.scale-detail {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--outfit);
}

.chart-icon {
  background-color: #f3f8fe;
  /* padding: 15px 20px; */
  border-radius: 10px;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.appoint-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--outfit);
  padding-bottom: 12px;
  border-bottom: 1px solid #cdcdcd;
}

.appont-chart-select {
  width: 200px;
}

.ap-title {
  font-size: 1.8rem;
  font-weight: 600;
}

.apointment-chart {
  padding: 15px 20px;
  border: 1px solid #cdcdcd;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 1px 9px 10px #0000000d;
}

.appoint-person-area {
  display: flex;
  gap: 20px;
  padding: 20px 10px;
  flex-direction: column;
  height: 434px;
  overflow: auto;
}

.appoint-person-area tr td {
  padding-bottom: 30px;
}

.accept-reject-btns button {
  width: 40px;
  height: 40px;
  border: 1px solid;
  font-size: 17px;
}

.a-per-det {
  display: flex;
  gap: 7px;
  align-items: center;
}

.app-user-id {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #346a71;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--outfit);
}

.app-user-name {
  font-size: 1.1rem;
  color: #000;
  font-family: var(--outfit);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pateint-id {
  font-size: 0.8rem;
  color: #1d7ed8;
}

.patient-detail {
  flex-direction: column;
  align-items: self-start;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 10px;
  min-width: 180px;
  width: 100%;
}

.a-per-det img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 12px;
}

.app-person-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.app-schedule {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: var(--outfit);
  min-width: 150px;
}

.app-schedule p {
  color: white;
  background-color: #346a71;
  width: fit-content;
  padding: 4px;
  border-radius: 5px;
  font-size: 0.8rem;
}

.btns-accept {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 20px;
  border: none;
  color: white;
  background-color: transparent;
}

.accept-reject-btns {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 10px;
}

.ch-box-area {
  padding: 20px;
  border: 1px solid #cdcdcd;
  border-radius: 10px;
  box-shadow: 1px 9px 10px #0000000d;
}

.chart-link {
  color: #346a71;
  text-decoration: underline;
  font-weight: 600;
}

.pateint-box {
  padding: 10px;
  background-color: #f8fafc;
  width: fit-content;
  border-radius: 10px;
}

.pateint-ap {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pateint-box-area {
  display: flex;

  gap: 20px;
  margin: 20px 0;
  justify-content: start;
}

.upcomming-appointment-box {
  background-image: url(../images/upcomming-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  margin: 20px 0;
  border-radius: 5px;
}

.up-com-title {
  font-size: 1.4rem;
  color: white;
  font-weight: 500;
}

.recent-app-person-detail {
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #48797f;
}

.recent-ap-user-id {
  color: white;
}

.recent-ap-user-id span {
  color: white;
}

.apponit-chat-detail {
  display: flex;
  padding: 20px 0 10px 0;
  justify-content: space-between;
  align-items: center;
}

.video-ap {
  display: flex;
  gap: 10px;
  color: white;
  font-size: 1.2rem;
}

.apoint-btn-chat {
  color: black;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  font-weight: 600;
  margin: 5px;
  width: fit-content;
  display: inline-block;
}

td {
  vertical-align: middle;
}

.btns-view-eye {
  width: 40px;
  height: 40px;
  border-radius: 60px;
  border: none;
  color: #107082;
  background: transparent;
}

select.goog-te-combo {
  width: 80px;
}

a.VIpgJd-ZVi9od-l4eHX-hSRGPd {
  display: none;
}

.language-flag {
  width: 30px;
}

#languageButton {
  display: flex;
  align-items: center;
  border: none;
  gap: 5px;
  padding: 10px 5px;
}

.add-specility-area {
  display: flex;
  width: 100%;
  gap: 25px;
  align-items: center;
}

.delete-service-btn {
  background: transparent;
  border: none;
  color: red;
}

#languageButton img {
  width: 30px;
}

/* my profile */

.booking-chart-area {
  background: white;
  margin: 30px;
  padding: 20px 0px;
  box-shadow: 0px 17px 56px #0000001f;
}

.chrt-hd-area {
  display: flex;
  justify-content: space-between;
  padding: 17px 30px;
  padding-top: 0;
  border-bottom: 1px solid #e3e3e3;
}

.profile-pg-hd h3 {
  font-size: 22px;
  font-weight: bold;
}

.profile-data-area {
  padding: 0 30px;
}

.profile-detail {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  align-items: center;
  border-bottom: 1px solid #e3e4e5;
}

.profile-title {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 15px;
}

.profile-title {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 15px;
}

.user-detail input {
  border: none;
  font-size: 15px;
  color: #a4a4a4;
  padding: 5px;
  outline: none;
  width: 100%;
  font-weight: 500;
  background-color: #f5f5f5;
  padding: 10px 20px;
  border-radius: 5px;
}

.edit-profile-button {
  padding: 40px 0;
}

#edit-profile-btn:disabled {
  background-color: #107082;
}

.edit-profile-button button {
  /* width: 200px; */
  background: #107082;
  text-align: center;
  border-radius: 5px;
  padding: 19px 64px;
  text-decoration: none;
  color: white;
  border: none;
  margin-right: 24px;
}

.profile-update-area {
  margin: 30px 0 90px 0;
}

.profile-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.profile-box img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0px 6px 20px #00000030;
}

.profile-box p {
  font-size: 16px;
  color: #191919;
  font-weight: 500;
}

.img-update-btn {
  display: flex;
  justify-content: center;
  margin: 30px 0 10px 0px;
  align-items: center;
  text-align: center;
  gap: 12px;
}

input#upload-profile {
  display: none;
}

.img-update-btn label {
  background-color: #107082;
  color: white;
  padding: 12px 10px;
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  width: 140px;
}

.img-update-btn button {
  background-color: #c80001;
  color: white;
  padding: 12px 10px;
  border-radius: 5px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  width: 140px;
}

.update-pass-hd h2 {
  text-align: center;
  padding: 15px 0px 0px 0;
  font-weight: 700;
  font-size: 20px;
}

.prof-chng-pass-p {
  margin: 20px 0;
  /* padding: 0 30px; */
}

.chng-pass-input {
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  outline: none;
  border: none;
  background: #eeeeee;
  color: #a4a4a4;
}

.img-update-button {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.img-update-button button {
  width: 150px;
  background: #107082;
  text-align: center;
  border-radius: 5px;
  padding: 14px 30px;
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border: none;
}

.fa-star-of-life {
  font-size: 8px;
  position: relative;
  top: -4px;
}

.notification-user {
  display: flex;
  align-items: center;
  gap: 5px;
}

.specilty-heading {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid #cdcdcd;
  align-items: center;
}

.specialty-form-area {
  padding: 80px 10px;
}

.specilty-delete-btn {
  background: transparent;
  border: none;
  color: red;
}

.specilty-input-area {
  padding: 40px 20px;
  border: 1px solid #cdcdcd;
  border-top: 0px solid #cdcdcd;
  display: flex;
  flex-wrap: wrap;
}

.specilty-inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 31.5%;
}

.specilty-input-area {
  padding: 40px 20px;
  border: 1px solid #cdcdcd;
  border-top: 0px solid #cdcdcd;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.specil-in {
  padding: 10px;
  border-radius: 5px;
  outline: none;
  border: 1px solid #ededed;
}

.add-service-btn {
  display: flex;
  justify-content: end;
  padding: 20px 0;
  /* margin: 0 20px; */
  border-top: 1px solid #ededed;
  width: 100%;
}

.specilty-add-service-btn {
  background: transparent;
  border: none;
  color: #107082;
}

.specilty-save {
  display: flex;
  justify-content: end;
  padding: 20px;
  border-top: 1px solid #ededed;
  width: 100%;
}

.specilty-save-btn {
  background: #107082;
  border: none;
  color: white;
  padding: 15px 0px;
  border-radius: 10px;
  max-width: 250px;
  width: 100%;
}

.add-btn-hd {
  padding: 13px 30px;
  border-radius: 10px;
  border: none;
  background: #107082;
  color: white;
  font-size: 0.9rem;
  width: fit-content;
}

.dashboard-search {
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid #ededed;
  outline: none;
  min-width: 250px;
}

.pateints-box {
  padding: 20px;
  border: 2px solid #cdcdcd59;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0px 15px 22px #0000000d;
}

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

.p-age {
  padding: 10px 0;
}

.p-detail img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.p-age span {
  padding: 0 10px;
  border-right: 1px solid #ededed;
}

.p-age span:nth-last-child(1) {
  border: none;
}

.p-app-time {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px 15px;
  margin: 30px 0;
  border-radius: 10px;
  background-color: #f1f5f9;
}

.p-app-time span {
  display: flex;
  gap: 15px;
  font-size: 1.1rem;
}

.p-app-date p {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 1.1rem;
  padding-top: 20px;
  border-top: 1px solid #ededed;
  color: #334155;
}

.p-app-date p span {
  font-size: 1.2rem;
  color: #107082;
}

.view-patient-ehr {
  margin: 30px 0 10px 0;
  display: flex;
  padding: 20px 0;
  text-align: center;
  width: 100%;
  justify-content: center;
  background: #107082;
  color: white;
  border-radius: 10px;
  font-size: 1.2rem;
  border: none;
}

.pateint-sec .col-4 {
  display: none;
}

.pateint-sec .col-4:nth-child(-n + 6) {
  display: block;
}

.load-more-btn {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #346a71;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.back-arrow {
  padding: 12px;
  background: #346a71;
  color: white;
  border-radius: 10px;
}

.personal-information-title-img {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 20px;
}

.perosnal-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 5px 5px 23px -9px #00000052;
}

.perosnal-input-area {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 20px;
}

p.specil-in-p {
  font-weight: 600;
}

.refer-pop-up-back.active {
  display: flex;
}

.refer-pop-up-back {
  position: fixed;
  background-color: aqua;
  top: 50%;
  left: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  max-width: 2500px;
  transform: translate(-50%, -50%);
  /* From https://css.glass */
  background: rgb(0 0 0 / 34%);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 100vh;
  z-index: 99999999999999999999999999999;
}

.refer-popup {
  background-color: white;
  max-width: 1200px;
  position: relative;
  width: 100%;
  box-shadow: 1px 1px 32px -7px gray;
  /* border-radius: 10px; */
  margin: 0 30px;
  border: 1px solid #000;
  max-height: 80vh;
  overflow: hidden auto;
  /* height: 100%; */
}

.close-btn-refer {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  background: #054854;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 1px 1px 32px -7px gray;
}

.pop-heading h3 {
  font-size: 30px;
  padding: 20px 30px;
  font-weight: bolder;
  color: #000;
  border-bottom: 1px solid #e3e3e3;
}

.pop-book-details-area {
  padding: 30px 20px;
}

.refrel-send {
  padding: 10px;
  max-width: 200px;
  width: 100%;
  margin: 20px;
  background-color: #346a71;
  border: none;
  color: white;
  border-radius: 5px;
}

.table-area {
  padding: 40px 15px;
}

tr.tbl-head th {
  font-weight: 600;
  font-size: 1.3rem;
  padding: 21px 11px;
}

.side-submenu {
  display: none;
  /* Hide submenu by default */
  padding-left: 50px;
  /* Indent submenu */
}

.side-li.active .side-submenu {
  display: block;
  /* Show submenu when parent is active */
}

.service-box {
  display: flex;
  align-items: center;
  margin: 25px 0 25px 0px;
  gap: 15px;
  background: var(--service-box);
  padding: 30px 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 20px 38px -26px;
  height: 100px;
  background: linear-gradient(170deg,
      rgba(16, 112, 130, 1) 49%,
      rgba(5, 72, 84, 1) 49%);
}

.ser-chrt-icon {
  font-size: 24px;
  padding: 20px 0;
  border-radius: 50%;
  color: white;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #054854;
  border: 2px solid #fff;
  box-shadow: 0px 0px 12px -6px #000;
}

.d-chrt-title {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 9999;
}

.d-chrt-title p {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
}

.d-chrt-title span {
  font-size: 34px;
  color: #fff;
  font-weight: bold;
  z-index: 99;
}

.payment-card img {
  box-shadow: 20px 20px 20px #ededed;
  margin: 20px;
  border-radius: 14px;
}

.add-payment-btn {
  margin: 30px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  color: white;
  background: #107082;
  text-transform: uppercase;
}

.calendar-input input {
  outline: none;
  border: none;
}

.bt-top {
  border-top: 2px solid #e6e6e6;
}

.paid {
  background: #28a745;
  color: white;
  padding: 2px 6px;
  border-radius: 5px;
}

.unpaid {
  background: #d73131;
  color: white;
  padding: 2px 6px;
  border-radius: 5px;
}

.inprocess {
  background: #31aad7;
  color: white;
  padding: 2px 6px;
  border-radius: 5px;
}

.invoice-btn {
  text-transform: uppercase;
  background: #107082;
  color: white;
  border: none;
  padding: 7px 20px;
  border-radius: 6px;
}

.paginaion-and-showing-page {
  display: flex;
  justify-content: start;
  padding: 40px 20px;
  align-items: center;
  position: relative;
}

.paginations-btn {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.pagin-btn {
  width: 40px;
  height: 40px;
  background: #346a711f;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: none;
  flex-shrink: 0;
  color: #054854;
}

.pagin-btn.active {
  background-color: #054854;
  color: white;
}

.arrow-btn:active {
  background: #054854;
  color: white;
}

.showing-page {
  font-size: 1.1rem;
  color: #054854;
}

.table-ellipse {
  background-color: transparent;
  color: #107082;
  border: none;
  font-size: 1.3rem;
}

.table-ellipse::after {
  display: none;
}

.table-menu button {
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 10px;
  gap: 5px;
  align-items: center;
  color: #107082;
  /* border-bottom: 1px solid #ededed; */
}

.table-menu a {
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 10px;
  gap: 5px;
  align-items: center;
  color: #107082;
  /* border-bottom: 1px solid #ededed; */
}

.invoice-heading {
  display: flex;
  padding: 40px;
  justify-content: space-between;
}

.invoice-heading h3 {
  font-size: 2.4rem;
}

.invoice-logo {
  width: 130px;
  height: auto;
}

span.invoice-nmb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ededed;
  border-radius: 10px;
}

.bill-to-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.date-bill-area {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 40px;
}

.bill-to-area input {
  padding: 10px;
  border: 1px solid #ededed;
  border-radius: 10px;
}

.invoice-date-input {
  display: flex;
  align-items: center;
  gap: 15px;
}

.invoice-date-input input {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ededed;
  width: 150px;
  outline: none;
}

.dates-invoice {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  gap: 15px;
}

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

.rate-tbl-input {
  display: flex;
  align-items: center;
  border: 1px;
  padding: 10px;
  border: 1px solid #c9c9c9;
  border-radius: 10px;
  gap: 10px;
}

.rate-tbl-input input {
  border: none;
  outline: none;
}

input.tbl-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #c9c9c9;
  border-radius: 10px;
  outline: none;
}

.pop-tbl-head th {
  background: #054854;
  color: white;
  padding: 10px 20px;
}

.pop-tbl-head {
  border-radius: 5px;
}

#line-add {
  margin: 0 20px;
  padding: 10px;
  background: transparent;
  border: 1px solid #009e74;
  color: #009e74;
  border-radius: 10px;
}

.close-btn-invoice {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  background: #054854;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 1px 1px 32px -7px gray;
}

.delete-btn-invoice {
  background: transparent;
  border: none;
  color: red;
}

.notes-inpt {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* padding: 20px; */
  justify-content: space-around;
}

.note-terms-invoice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.note-terms-invoice input {
  max-width: 300px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #cdcdcd;
}

.tax-area {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  padding-right: 80px;
}

.subtotal {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.tax {
  display: flex;
  gap: 20px;
  align-items: center;
}

.tax-input {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #cdcdcd;
  padding: 10px;
  border-radius: 10px;
}

.tax-input input {
  border: none;
  outline: none;
}

.subtotal-area {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: end;
  align-items: end;
}

.save-invoice-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.2rem;
  border-radius: 10px;
  border: none;
  color: white;
  background-color: #107082;
}

.invoice-pop-up-back.active {
  display: flex;
}

.invoice-pop-up-back {
  position: fixed;
  background-color: aqua;
  top: 50%;
  left: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  max-width: 2500px;
  transform: translate(-50%, -50%);
  background: rgb(0 0 0 / 34%);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /* backdrop-filter: blur(5px); */
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 100vh;
  z-index: 99999999999999999999999999999;
}

.invoice-popup {
  background-color: white;
  max-width: 800px;
  position: relative;
  width: 100%;
  box-shadow: 1px 1px 32px -7px gray;
  margin: 0 30px;
  height: 95vh;
  overflow: hidden auto;
  border-radius: 20px;
}

.view-invoice-nmb-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 35px 40px;
}

.view-invoice-nmb-area h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.view-invoice-nmb {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: 700;
}

.view-bill-to-area input {
  padding: 0;
  font-weight: 600;
  border: none;
  font-size: 1.2rem;
  background-color: transparent;
}

.view-invoice-date-input {
  display: flex;
  justify-content: end;
  flex-direction: column;
  align-items: end;
  gap: 5px;
  font-size: 0.9rem;
  color: #60737d;
}

.view-invoice-date-input span {
  font-size: 1.2rem;
  color: #000;
}

.view-invoice-title-area {
  background-color: #f2f5f9;
  padding: 10px;
  margin: 10px;
  border-radius: 20px;
}

.invoice-tbl-head th {
  padding: 20px 10px;
  font-weight: 700;
}

.view-sub-area {
  padding: 20px;
  margin: 20px 0;
  border-top: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
}

.view-subtotal {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
}

.sub-in-view {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  background-color: #f2f5f9;
}

.sub-in-view h1 {
  font-size: 1.3rem;
  font-weight: 600;
}

.view-invoice-logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  margin-top: -60px;
}

.instruct-hd {
  padding: 10px 0;
  font-weight: 700;
}

.instruct-detail {
  line-height: 1.1;
  color: #60737d;
}

.label-detail {
  padding: 20px 0 10px 0;
  color: #60737d;
}

.checked {
  color: #ffc001;
}

.tab-filter {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  /* margin: 25px; */
  padding: 20px;
  /* border: 1px solid #E2E8F0;
    border-radius: 10px;
    box-shadow: 0px 0px 20px #00000014; */
}

.over-rating-detail {
  display: flex;
  align-items: center;
  gap: 15px;
}

.over-title h2 {
  font-size: 1.1rem;
  font-weight: 600;
}

.over-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.over-rating-detail p {
  font-size: 2rem;
  font-weight: 700;
}

.review-box-area {
  margin: 10px 25px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0px 0px 20px #00000014;
}

.review-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #ededed;
}

.review-person {
  display: flex;
  gap: 10px;
  align-items: center;
}

.reivew-person-name {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.reivew-person-name h2 {
  font-weight: 600;
}

.review-person img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 10px;
}

.reviews-pra {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 20px;
}

.reviews-pra p {
  line-height: 1.4;
}

.review-reply-btn {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reply-review-area {
  margin: 0;
  background: #f1f2f2;
  border: none;
}

h1.boost-heading {
  text-align: center;
  font-size: 6.25rem;
  color: #346a71;
  font-weight: 800;
}

.plains-short-box {
  padding: 30px;
  background: white;
  border-radius: 20px;
  border: 1px solid #000;
  width: 400px;
}

.plans-area {
  display: flex;
  justify-content: center;
  padding: 80px 0;
  align-items: center;
}

.subscript-box {
  box-shadow: 0px 0px 11px #000;
  position: relative;
  z-index: 9 !important;
}

.plains-short-box {
  padding: 30px;
  background: white;
  border-radius: 20px;
  border: 1px solid #000;
  width: 400px;
  position: relative;
  z-index: 99999;
}

.plain-price {
  font-size: 2rem;
  font-weight: 700;
  padding: 20px 0;
}

.plain-price i {
  color: #054854;
}

.ribbon-text {
  background-image: url(../images/Heading-mask.png);
  color: white;
  font-size: 1.3rem;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 10px;
  position: relative;
  left: -30px;
}

.plain-services {
  display: flex;
  gap: 10px;
  line-height: 1.2;
  color: #525960;
}

.service-para-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plain-services i {
  color: #107082;
}

.plain-btn {
  background: white;
  color: black;
  width: 100%;
  margin-top: 30px;
  padding: 15px;
  border-radius: 10px;
  border: none;
  border: 1px solid #000;
  transition: 0.3s;
}

.plain-btn:hover {
  background: black;
  color: white;
}

.subscrip-hd {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  color: #346a71;
}

.subscript-p-area {
  display: flex;
  padding: 40px 0;
  gap: 10px;
  flex-direction: column;
  /* align-items: center; */
}

.subsc-p {
  display: flex;
  align-items: start;
  gap: 20px;
}

.subscrip-continue {
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  border: none;
  color: white;
  background-color: #107082;
  font-weight: 700;
}

.customer-support-para {
  text-align: center;
  line-height: 1.4;
  padding: 20px 0;
  color: #525960;
}

.customer-support-para a {
  color: #107082;
  font-weight: 700;
}

.go-back-dashboard {
  display: flex;
  justify-content: center;
  padding: 0 0 40px 0;
}

.go-back-dashboard a {
  max-width: 400px;
  padding: 18px 0;
  background: #107082;
  width: 100%;
  text-align: center;
  color: white;
  font-weight: 700;
  border-radius: 15px;
  box-shadow: 0px 0px 4px #000;
}

.chat-selection-area {
  margin: 20px 0;
  border-radius: 0;
  /*border: 1px solid #e0e0e0;*/
  position: relative;
}

.msg-close-btn {
  display: none;
}

.chat-person-search {
    position: relative;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* border-bottom: 1px solid #e0e0e0; */
}

.chat-person-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    cursor: pointer;
    border-bottom: 1px solid #e8e8e84d;
}

.chat-person-box:hover{
    background:#f4f4f4 !important;
}


.cht-per-det {
    display: flex;
     align-items: center; 
    gap: 15px;
    width:100%;
}

.recent-chats {
    margin: 20px 12px;
    display: flex;
    flex-direction: column;
    /*gap: 15px;*/
    height: 592px;
    overflow: auto;
}

.recent-chats::-webkit-scrollbar{
    display:none;
}

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

.ch-persona-name {
    display: flex;
    flex-direction: column;
    justify-content: start;
    position: relative;
    gap: 5px;
    
}

.user-contacts-area{
        width:100%;
}

.ch-persona-active {
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: end;
  gap: 10px;
  align-items: end;
}

.ch-persona-name h1 {
    font-weight: 700;
    margin: 0;
    font-size: 15px;
    text-transform: capitalize;
    font-family: "Inter", sans-serif;
}

.ch-persona-active span {
  background-color: #2a3c8e;
  /* width: fit-content; */
  /* padding: 1px 5px; */
  align-items: center;
  display: flex;
  border-radius: 20px;
  color: white;
  width: 23px;
  height: 23px;
  justify-content: center;
  font-size: 12px;
}

.cht-per-det img {
    width: 35px;
    height: 35px;
    /* object-fit: cover; */
    border-radius: 50%;
}
.img-profile-area img{
    width: 40px;
    height: 40px;
}

.chat-main-area {
    margin: 0;
    /* border-radius: 20px; */
    /* border: 1px solid #e0e0e0; */
    padding: 0;
    position: relative;
    background: #fff;
    height: 815px;
    /* border-radius: 14px; */
}

.user-name {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    /* border-bottom: 1px solid #2a3c8e; */
}

.type-chat {
  align-items: flex-end;
}

.user-chat-p {
    margin: 0;
    padding: 15px;
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    color: #000;
    /* border-top-left-radius: 0px; */
    position: relative;
    font-family: 'Inter',sans-serif;
    word-break:break-all;
    font-size:14px;
    max-width:350px;
}

.user-chat-p:before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: -7px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 3px 16px; 
    border-color: transparent transparent transparent #ffffff;
    transform: rotate(137deg);
}

.user-chat-p strong {
  font-weight: 600;
  color: #334155;
}

.my-chat-p {
  margin: 0;
  padding: 15px;
  background-color: #f1f5f9;
  border-radius: 20px;
  color: #737373;
  position: relative;
}

.my-chat-p:before {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -9px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 3px 16px;
    border-color: transparent transparent transparent #2a3c8e;
    transform: rotate(21deg);
}

.my-chat-p strong {
  font-weight: 600;
  color: #334155;
}

.chat-type-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 15px;
    height: 650px;
    background: #f2f4ff;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 100px;
    /* height: auto; */
}
.chat-type-area::-webkit-scrollbar{
    display:none !important;
}
.mytype {
  justify-content: end;
  flex-direction: row-reverse;
}

.mytype .ch-persona-name {
  text-align: end;
}

.my-chat-p {
    margin: 0;
    padding: 15px;
    background-color: #2a3c8e;
    border-radius: 15px;
    color: #ededed;
    /* border-top-right-radius: 0px; */
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: start;
    max-width: 350px;
    word-break: break-all;
    font-size: 14px;
}

.time-font-user {
    font-size: 13px !important;
    text-align: right;
}
.upload-img {
  width: 110px !important;
  height: 100px !important;
  object-fit: cover;
  border-radius: 10px;
}

.chat-container {
  width: 100%;
  max-width: 500px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chat-input-area {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #eee;
}

.chat-input-area input[type="text"] {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 20px;
  margin-right: 10px;
  outline: none;
}

.chat-input-area button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.chat-input-area button#send-btn {
  padding: 5px 10px;
  background-color: #0e82fd;
  color: white;
  border-radius: 5px;
}

.message {
  padding: 8px;
  margin: 5px 0;
  border-radius: 10px;
  background-color: transparent;
  max-width: 70%;
  word-wrap: break-word;
}

.chat-input-area {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 30px;
}

.emoji-chat {
  color: gray;
  padding: 10px;
}

.message-section {
  padding: 50px 0;
}

.user-list-sidebar {
  padding: 40px;
  background-color: #e9e9e9cc;
  border-radius: 20px;
  width: 34.2%;
}

.message-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 15px;
}

.chat-search-area {
  padding: 8px 16px 8px 16px;
  background-color: #f5f5f5;
  height: 40px;
  display: flex;
  justify-content: start;
  gap: 16px;
  align-items: center;
  border-radius: 50px;
  margin-bottom: 34px;
}

.chat-search {
  font-size: 16px;
  color: black;
  font-family: var(--inter-font-Regular);
  outline: none;
  background-color: transparent;
  border: none;
  width: 100%;
}

.chat-search-area i {
  color: #707991;
  font-size: 20px;
}

.chat-profile-img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
}

.name-time-area a {
  text-decoration: none;
}

.chat-user-name {
  font-size: 16px;
  color: #011627;
  font-family: var(--inter-font-SemiBold);
  line-height: 1.2;
}

.chat-time {
  font-size: 12px;
  font-family: var(--inter-font-Regular);
  color: #707991;
  line-height: 1.2;
}

.chat-sidebar-msg {
  font-size: 14px;
  font-family: var(--inter-font-Regular);
  color: #707991;
  line-height: 1.2;
}

.msg-count {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--Cerulean-color);
  color: white;
  font-size: 12px;
  font-family: var(--inter-font-Regular);
}

.user-profile-area {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.user-name-msg-area {
  width: 100%;
}

.user-profile-img-area {
  max-width: 48px;
  width: 100%;
}

.user-profile-img-area {
  max-width: 48px;
  width: 100%;
}

.name-time-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}

.msg-count-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-sidebar-msg strong {
  color: #011627;
}

.user-profile-img-area a {
  text-decoration: none;
}

.img-user-alphabet {
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #78e378;
  color: white;
  font-size: 16px;
  font-family: var(--inter-font-SemiBold);
}

.users-detail-area {
  height: calc(100vh - 340px);
  overflow-y: auto;
}

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

.chat-user-img-area {
  max-width: 40px;
  width: 100%;
}

.search-btn {
  background-color: transparent;
  border: none;
  font-size: 20px;
  color: #707991;
  padding: 0;
}

.chat-header-right {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 40px;
}

.chat-header {
  border-bottom: 1px solid #d9dce0;
  padding: 8px 30px 8px 16px;
  background-color: #f0f0f0;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-chat-area {
  width: 63%;
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.message-sender-area {
    height: 75px;
    background-color: #fff;
    /* border-radius: 0px 0 10px 10px; */
    padding: 0px 20px;
    border-top: 2px solid #f2f2f2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    position:relative;
}

.first-btn {
  background-color: transparent;
  color: #cbd5e1;
  font-size: 20px;
  padding: 0;
  border: none;
}

.send-msg-btn {
    border: none;
    background-color: #2a3c8e;
    font-size: 20px;
    color: white;
    padding: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.send-msg-input {
    border: none;
    font-size: 16px;
    font-family: var(--inter-font-Regular);
    color: #011627;
    outline: none;
    /* border: 1px solid #e2e8f0; */
    background-color: #f4f4f4;
    width: 100%;
    resize: none;
    padding-top: 14px;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 0;
    vertical-align: middle;
    max-height: 50px;
    height: auto;
    border-radius: 30px;
}

.send-msg-input::placeholder {
  font-size: 16px;
  font-family: var(--inter-font-Regular);
  color: #011627;
}

.msg-sender-input {
    width: 100%;
    display: flex;
    flex: 1;
    gap: 20px;
    align-items: center;
}

.message-area {
  background-color: white;
  height: calc(100vh - 340px);
  overflow-y: auto;
  padding: 0 5px;
  margin: 10px 0;
}

.msg-day {
  font-size: 16px;
  font-family: var(--inter-font-Regular);
  color: white;
  padding: 6px 12px;
  background-color: #3d70b899;
  border-radius: 12px;
  width: fit-content;
}

.message-recieve-area {
  background-color: #f0f0f0;
  border-radius: 12px;
  max-width: 402px;
  padding: 4px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 30px;
  position: relative;
}

.react-emoji-area {
  position: absolute;
  bottom: -22px;
  right: 10px;
}

.react-count {
  height: 12px;
  width: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: black;
  background-color: #f0f0f0;
  font-family: var(--inter-font-Light);
  border-radius: 50%;
  position: absolute;
  top: -4px;
  right: -10px;
}

.cht-per-det-2 img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 10px;
  background: #cca;
}

.cht-per-det-3 img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 10px;
  background: #cca;
}

.tutorial-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 10px;
}

.tutorial-card {
  transition: all 0.3s ease-out;
}

.tutorial-card:hover {
  transform: translateY(-10px);
}

.msg-time {
  font-size: 12px;
  font-family: var(--inter-font-Regular);
  color: #011627;
}

.react-emoji {
  font-size: 14px;
  color: #f71735;
}

.check-icon {
  color: #011627;
  font-size: 12px;
}

.time_icon_area {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 4px;
}

.receive-msg-text {
  color: #011627;
  font-size: 16px;
  font-family: var(--inter-font-Regular);
  line-height: 20px;
}

.message-recieve-area.send-message {
  background-color: var(--Cerulean-color);
  position: relative;
}

.message-recieve-area.send-message .receive-msg-text {
  color: white;
}

.message-recieve-area.send-message .msg-time {
  color: white;
}

.message-recieve-area.send-message .check-icon {
  color: white;
}

.send-message-main {
  display: flex;
  justify-content: end;
}

.message-recieve-area-main {
  display: flex;
  justify-content: start;
}

.users-detail-area .user-profile-area:nth-last-child(0) {
  margin-bottom: 0;
}

.update-profile {
  background: #107082;
  border: none;
  text-align: center;
  border-radius: 5px;
  padding: 11px 26px;
  color: white;
  text-transform: uppercase;
}

.play-btn {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #054854;
  border: none;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-area-group:hover .play-btn {
  display: block !important;
}

.video-area-group video {
  width: 100%;
  height: 200px;
  background: #f1f1f1;
}

.sidebar-btn-area,
.userListCloseBtn {
  display: none;
}

.t-header-style tr th {
  background: #054854;
  color: #fff;
}

.userListCloseBtn {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 18px !important;
}

.user-list-btn,
.userListCloseBtn {
  background-color: transparent;
  border: none;
  font-size: 22px;
  color: #707991;
  padding: 0;
}

.chat-file-input {
  display: none !important;
}

.chat-file-label {
  font-size: 20px;
  cursor: pointer;
  color: #cbd5e1;
}

.emoji-btn-area {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 7%;
}

.side-menu-btn {
  display: none;
}

.side-bar-close-btn {
  display: none;
}

.close-menu-btn-header {
  display: none;
}

.side-menu-btn-header {
  display: none;
}

.mob-user-head-img {
  display: none;
}

.upcom-app-scdule span {
  color: white;
}

.chat-open-btn {
  display: none;
}

.chat-selection-area-container {
    transition: 0.8s;
    width: 388px;
    background: #fff;
    /* padding-left: 10px; */
    /* border-radius: 13px; */
    box-shadow: 2px 0px 1px #8080800a;
    z-index: 99;
}

.chat-selection-area-container.col-0 {
  /* width: 0; */
  opacity: 0;
  display: none;
}

.w-300 {
  width: 300px;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: #107082 !important;
}

.active-color {
    background: #f4f4f4!important;
    border-radius: 6px;
}

.order-detail-box {
  padding: 10px;
  box-shadow: 0px 0px 20px #0000001c;
  border: 1px solid #8089963d;
  margin: 30px 10px;
  overflow: auto;
}

.order-detail-box table tr td {
  padding-bottom: 28px;
}

.order-detail-page-sec {
  display: flex;
  gap: 20px;
}

.bill-row {
  padding: 0 40px;
}

.order-item-detail-area {
  width: 75%;
}

.paymeny-detail-area {
  width: 25%;
}

.order-nmb {
  font-size: 1.5rem;
  padding: 10px;
}

.od-tbl-hd {
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}

.od-tbl-hd th {
  padding: 14px 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #868686;
}

.ord-bt {
  border-bottom: 1px dashed #e3e3e3;
}

.sub-total-box {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.sub-d {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 360px;
  padding: 10px 15px;
}

.total-amm {
  border-top: 1px dashed #e3e3e3;
}

.sml-detail-box {
  margin: 30px 0;
  box-shadow: 0px 0px 20px #00000029;
}

.sm-hd {
  padding: 15px 14px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cfcfcf;
}

.table-area-main tr td {
  padding-bottom: 45px;
}

.sm-hd a {
  color: #346a71;
}

.sml-detail-area {
  padding: 17px;
}

.sm-cont {
  padding: 21px 0 0px 0;
}

.sm-hd h1 {
  font-weight: 600;
  color: #495057;
}

.sm-user {
  font-size: 14px;
  color: gray;
}

.send-check i {
  color: #888;
}

.no-chat-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #555;
}

.chat-messages {
  display: none;
}

.chat-messages.active {
  display: unset;
}

.no-chat-screen.active {
  display: flex;
}

.no-chat-screen img {
  width: 110px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.no-chat-screen h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.no-chat-screen p {
  font-size: 16px;
  color: #777;
  margin-bottom: 20px;
}

.start-chat-btn {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.start-chat-btn:hover {
  background-color: #0056b3;
}

.time-and-icon {
  display: flex;
  gap: 10px;
  justify-content: end;
  align-items: center;
}

.time-and-icon p, .time-and-icon i {
    font-size: 13px !important;
}

.time-and-icon.sender {
  justify-content: start;
}

.read-check i {
  color: blue;
}

.chat-area-section {
  display: flex;
  gap: 0;
  padding: 0px 21px 24px 0;
}

.chat-main-area-container {
  flex: 1;
}

.notification-box {
  width: 99%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}

.noti-det-name h1 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0;
}

.para {
  font-size: 1.2rem;
  font-weight: 400;
  color: #606060;
  line-height: 1.5;
}

.noti-det-time h1 {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
}

.noti-det {
  width: 80%;
}

.noti-det-time {
  width: 20%;
  text-align: end;
}



/* .is-typing {
  margin: 20px;
  height: 40px;
} */


.chat-bubble {
    position:absolute;
    top:-45px;
    left:40px;
    z-index:999;
  background-color: #b0befd87;
  padding: 16px 28px;
  -webkit-border-radius: 20px;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-radius: 20px;
  -moz-border-radius-bottomleft: 2px;
  border-radius: 20px;
  border-bottom-left-radius: 2px;
  display: inline-block;
}

.typing {
  align-items: center;
  display: flex;
  height: 10px;
}

.typing .dot {
  animation: mercuryTypingAnimation 1.8s infinite ease-in-out;
  background-color: #2a3c8e; //rgba( 42, 60, 142,.7);
  border-radius: 50%;
  height: 7px;
  margin-right: 4px;
  vertical-align: middle;
  width: 7px;
  display: inline-block;
}

.typing .dot:nth-child(1) {
  animation-delay: 200ms;
}

.typing .dot:nth-child(2) {
  animation-delay: 300ms;
}

.typing .dot:nth-child(3) {
  animation-delay: 400ms;
}

.typing .dot:last-child {
  margin-right: 0;
}

@keyframes mercuryTypingAnimation {
  0% {
      transform: translateY(0px);
      background-color: #2a3c8e; // rgba(42, 60, 142,.7);
  }

  28% {
      transform: translateY(-7px);
      background-color: #2A3C8E66; //rgba(42, 60, 142,.4);
  }

  44% {
      transform: translateY(0px);
      background-color: #2A3C8E33; //rgba(42, 60, 142,.2);
  }
}





.tooltip {
  position: relative;
}
.tooltip:after,
.tooltip:before {
  opacity: 0;
  pointer-events: none;
  bottom: 100%;
  left: 50%;
  position: absolute;
  z-index: 10;
  transform: translate(-50%, 10px);
  transform-origin: top;
  transition: all 0.18s ease-out 0.18s;
}

.tooltip:after {
    background-color: #000;
    box-shadow: 0 0 3px #ddd;
    content: attr(data-tooltip);
    padding: 10px;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    margin-bottom: 11px;
}
.tooltip:before {
  width: 0;
  height: 0;
  content: "";
  margin-bottom: 6px;
}

.tooltip:hover:before,
.tooltip:hover:after {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

[data-tooltip-pos="up"]:before {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #f5f5f5;
  margin-bottom: 6px;
}



[data-tooltip-length="medium"]:after {
  width: fit-content;
}

.recent-hd, .chat-primary-hd {
    font-weight: 800;
    font-size: 22px;
    margin: 6px 24px;
    line-height: 1;
    font-family: "Inter", sans-serif;
}

.chat-primary-hd-2 {
    margin: 0px 8px;
}



.chat-person-search input {
    /* color: #000; */
    -webkit-appearance: none;
    border: none;
    border-radius: 30px;
    padding: 10px 40px;
    max-width: 100%;
    background: #f4f4f4;
    box-shadow: 0px 0px 0px -7px rgba(0,0,0,0);
    font-size: 15px;
    font-weight: 600;
}
.chat-person-search input::placeholder{
    color:#b2b2b2;
} 

.msg-img {
    height: 35px !important;
    width: 35px !important;
    position: relative;
    top: -22px;
    left: 2px;
}

.input-area-group{
position:relative;
}

.abs-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    right:10px;
}

.icon-search {
    position: absolute;
    top: 68%;
    transform: translateY(-50%);
    left: 34px;
    font-size: 10px;
     color:#b2b2b2; 
}

.last-msg-para {
    font-size: 12px;
    margin: 0;
    color: #848484;
    font-family: "Inter",sans-serif;
}
.area-chat-time{
    display:flex;
    justify-content:space-between;
    align-items:center;
}


.task-date-wrapper {
    display: flex;
    justify-content: center;
}

.task-date-wrapper .task-box {
    padding: 5px 12px 6px 12px;
    border-radius: 7px;
    background-color: #e1e0e0;
    color: black;
    text-align: center;
}

.task-date-wrapper .task-box p {
    font-size: 12px;
}

.task-date-wrapper .task-box p.task-date {
    font-size: 10px !important;
}

.task-status {
    font-weight: bold;
}