﻿body {
  background: #f9f9f9;
  padding: 0px;
  margin: 0px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.04em;
}

.backgound-dash {
  background: #f4f9f9;
  background: #f4f9f9;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular-Ext.woff2') format('woff2');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.woff2') format('woff2');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Italic-Ext.woff2') format('woff2');
  font-weight: 100 1000;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Italic.woff2') format('woff2');
  font-weight: 100 1000;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Serif Display';
  src: url('../fonts/DMSerifDisplay-Italic.woff2') format('woff2'),
    url('../fonts/DMSerifDisplay-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DM Serif Display';
  src: url('../fonts/DMSerifDisplay-Regular.woff2') format('woff2'),
    url('../fonts/DMSerifDisplay-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.form-control:focus {
  box-shadow: 0 0 0 .25rem rgb(73 150 156 / 25%);
}

label {
  color: #262f40;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 6px;
}

.form-select:focus {
  box-shadow: 0 0 0 .25rem rgb(73 150 156 / 25%);
}

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

header .header .menu ul.site_menu {
  display: flex;
  gap: 0px;
  margin: 0px;
}

header .header .menu {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  width: 100%;
}

header .header .menu ul.site_menu li {
  list-style: none;
  padding: 0px 25px;
}

header .header .menu ul.site_menu li a {
  color: #000000;
  font-size: 15px;
  line-height: 21px;
  text-decoration: none;
  transition: 0.2s ease-in all;
  list-style: none;
}

header {
  width: 100%;
  padding: 0px;
}

header .container {
  background: url(../img/Header-bg.png) no-repeat;
  background-size: contain;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 10px 80px 10px;
  height: 130px;
  transition: 0.5s;
  z-index: 9999;
}

header.header-main.scrolled .container {
  position: fixed;
  width: 100%;
  max-width: 100%;
  background: #fff;
  height: auto;
  box-shadow: 0px 2px 7px 0px #49969c38;
  /* The container's `position`, `background-image`, and `height` change
     discretely between unscrolled <-> scrolled state, so a `transition`
     can't smooth them. Instead we run a one-shot slide-down animation
     when the `.scrolled` class is applied: the header drops in from above
     and fades up to fully opaque. */
  animation: header-slide-down 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: transform, opacity;
}

@keyframes header-slide-down {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

header .header .menu ul.site_menu li a:hover {
  color: #49969C;
}

header .header .menu ul.site_menu li a {
  position: relative;
  text-decoration: none;
}

header .header .menu ul.site_menu li a:not(.active):hover::after {
  width: 100%;
}

header .header .menu .buttons button#Register {
  background: transparent;
  border: 1px solid #fff;
}

header .header .menu .buttons {
  display: flex;
  gap: 8px;
}

header .header .menu .buttons button:hover {
  transform: inherit;
  transition: 0.3s ease-in all;
  background-color: #f0f6ff;
  color: #108de3;
  color: #fff;
  transform: scale(1.05);
}

header .header .menu .buttons button.active {

  transition: 0.3s ease-in all;
}

.buttons button {
  background: #49969C;
  border-radius: 36px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  padding: 16px 35px;
  border: none;
  transition: 0.3s ease-in all;
}

.buttons .dropdown-menu:after {
  content: "";
  position: absolute;
  top: -6px;
  right: 17px;
  width: 12px;
  height: 12px;
  background-color: rgb(255 255 255);
  transform: rotate(45deg);
  border-radius: 1px;
}

.buttons button:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in all;
  background: #49969C !important;
}

.buttons button.active {
  transform: scale(1.05);
  transition: 0.3s ease-in all;
}

.buttons a.dropdown-item {
  font-size: 14px;
  padding: 7px 10px;
}

.slider {
  background: url(/assets/img/slider.png) no-repeat;
  background-size: cover;
  width: 100%;
  height: 930px;
  display: flex;
  align-items: center;
  margin-top: 0px;
  position: relative;
}

.slider .row {
  align-items: center;
}

.surgmatch-content h1 {
  font-size: 72px;
  font-weight: 400;
  line-height: 76px;
  color: #fff;
  text-align: center;
  margin-bottom: 33px;
}

.surgmatch-content h1 span {
  color: #49969C;
  font-size: 72px;
  padding-bottom: 0px;
}

.surgmatch-content {
  max-width: 1000px;
}

.surgmatch-content span {
  text-align: center;
  display: block;
  color: #fff;
  padding-bottom: 33px;
  font-size: 20px;
}

.surgmatch-content h6 {
  padding: 15px 0px;
  color: #108de3;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0px;
}

.surgmatch-content p {
  padding: 0px 0px;
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
}

.findmatch-btn {
  display: flex;
  align-items: center;
  column-gap: 15px;
  justify-content: center;
}

.findmatch-btn button {
  background: #49969C;
  border-radius: 36px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  padding: 12px 16px;
  border: solid 1px #49969C;
  transition: 0.3s ease-in all;
}

.findmatch-btn button:hover {
  background: #3F8389;
  border-color: #3F8389;
  color: #FFFFFF;
  transform: scale(1.05);
}

.surgmatch-content-tt img {
  max-width: 80%;
  animation: bounce 2s infinite ease-in-out;
}

.surgmatch-content-tt {
  display: flex;
  justify-content: end;
}

.how {
  background: #F8F8F8;
  padding: 70px 0px;
}

.howtosurg-works {
  text-align: center;
}

.howtosurg-works p {
  max-width: 900px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.howtosurg-works h2 {
  font-size: 60px;
  font-weight: 300;
  line-height: 76px;
  color: #262F40;
  margin-bottom: 12px;
}

.howtosurg-works h2 span {
  color: #49969C;
}

.howtosurg-works p {
  padding: 0px 0px;
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 47px;
}

.share-needsbox {
  box-shadow: 0px 2px 7px 0px #0000001a;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}

.share-needsbox {
  box-shadow: 0px 2px 7px 0px #0000001a;
  background: #fff;
  border-radius: 20px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 9;
  height: 100%;
}

.needs-guide {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  position: relative;
  width: 200px;
}

.needs-guide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, #f5f5f5 0%, #e6e6e640 60%, #dcdcdc00 100%);
  z-index: -1;
  width: 100%;
  height: 130px;
  border-radius: 100px 100px 0px 0px;
  top: 31px;
}

.needs-guide img {
  max-height: 83px;
  min-height: 83px;
}

.needs-guide span {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  top: -13px;
  right: -16px;
}

.share-needsbox h6 {
  color: #262f40;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  padding: 24px 0px;
  margin-bottom: 0px;
}

.share-needsbox p {
  color: #525252;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: start;
}

.how .row {
  position: relative;
}

.whysurgmatch-better {
  position: relative;
}

.whysurgmatch-better span {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
  font-size: 16px;
  color: #49969C;
  font-weight: 300;
  letter-spacing: 0;
}

.whyai {
  padding: 80px 0px;
  background: #fff;
}

.whyai {
  position: relative;
}

.whyai::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/why-surgmatch-better.png) no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 1;
  left: 0px;
  background-position: right;
}

.surgmatch-care-journey h2 {
  font-size: 45px;
  font-weight: 300;
  line-height: 47px;
  color: #262f40;
  margin-bottom: 50px;
  padding-top: 20px;
}

.surgmatch-expert {
  display: flex;
  align-items: self-start;
  column-gap: 40px;
}

.surgmatch-experince p {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #525252;
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 19px;
}

.surgmatch-experince p img {
  max-width: 14px;
}

.surgmatch-experince p i {
  color: #E65A5A;
  font-size: 14px;
}

.surgmatch-experince h6 {
  color: #262F40;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
}

.surgmatch-care-journey h2 span {
  color: #49969C;
}

.result {
  background: #F8F8F8;
  padding: 80px 0px;
}

.data-point h2 {
  font-size: 47px;
  font-weight: 300;
  line-height: 47px;
  color: #262F40;
  margin-bottom: 47px;
  text-align: start;
}

.data-point h2 span {
  color: #49969C;
}

.data-point p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 60px;
}

.data-point {
  text-align: center;
}

.journey {
  padding: 90px 0px;
  background: linear-gradient(90deg, #243b6b 0%, #1a2f5a 25%, #0b2344 50%, #031a33 75%, #001126 100%);
  position: relative;
}

.journey::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 0;
  width: 255px;
  height: 430px;
  background: url(../img/navigate-bg.svg) no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
}

.journey-madeclear span {
  background: rgb(73 150 156 / 48%);
  color: #fff;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 300;
  line-height: 18px;
  border: solid 1px #49969C;
  padding: 7px 18px;
}

.journey .row {
  align-items: center;
}

.journey-madeclear .right-surgmatch p {
  display: flex;
  align-items: center;
  column-gap: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 18px;
}

.journey-madeclear .right-surgmatch p img {
  max-width: 22px;
}

.journey-madeclear h2 {
  font-size: 45px;
  font-weight: 300;
  line-height: 47px;
  color: #fff;
  margin: 30px 0px;
}

.journey-madeclear h2 span {
  color: rgba(16, 141, 227, 1);
}

.madeclaer-img {
  position: relative;
}

.madeclaer-img {
  position: relative;
  left: 60px;
}

.footer {
  background: radial-gradient(circle at 50% 0%, rgba(73, 150, 156, 0.14), transparent 55%), linear-gradient(180deg, #082030 0%, #0d2e43 100%);
  background-size: cover;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/footer-bg.png) no-repeat center;
  background-size: contain;
  opacity: 1;
  height: 100%;
  width: 100%;
  background-position: left;
  pointer-events: none;
}

.f-menu {
  display: flex;
  column-gap: 80px;
  justify-content: space-between;
}

.sub-menu h6 {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 24px;
}

.sub-menu ul {
  padding: 0px;
  margin: 0px;
}

.sub-menu ul li {
  list-style: none;
}

.sub-menu ul li a {
  text-decoration: none;
  padding: 6px 0px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
  display: block;
  transition: 0.3s ease-in all;
}

.sub-menu ul li a:hover {
  color: #49969C;
  transition: 0.3s ease-in all;
  transform: translateX(5px);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.footer-btm {
  background: #04131D;
  border-top: solid 1px #2A3C5D;
  padding: 19px 0px;
}

.footer-btm p {
  text-align: center;
  margin-bottom: 0px;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
}

.social-media {
  margin-top: 22px;
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-left: 0px;
}

.social-media a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 10%);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease-in all;
}

.social-media a:hover {
  background: #49969C;
}

.logo h1 {
  margin-bottom: 0px;
}

.bottom-arrow {
  position: absolute;
  right: 50%;
  bottom: 60px;
  animation: arrowFloat 1.8s infinite ease-in-out;
}

@keyframes arrowFloat {
  0% {
    transform: translate(-50%, 0);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, -12px);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 0);
    opacity: 0.7;
  }
}

header .header .menu ul.site_menu li a.active {
  border-bottom: solid 2px #49969C;
  color: #49969C;
}

.login::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(255 255 255 / 87%);
  z-index: 1;
}

.login>* {
  position: relative;
  z-index: 2;
}

.login-logo {
  display: flex;
  justify-content: center;
  padding: 20px 0px;
  cursor: pointer;
}

.login-logo img {
  width: 200px;
}

.login-box h2 {
  text-align: left;
  color: #49969C;
  margin-bottom: 0px;
  font-weight: 300;
  font-size: 30px;
}

.login-box label {
  color: #262f40;
  font-size: 14px;
  font-weight: 300;
}

.login-box p {
  color: #525252;
  font-size: 14px;
  margin-bottom: 0px;
  padding: 10px 0px;
  text-align: left;
}

.patient-content p {
  padding: 0px 0px;
}

.login-logo {
  position: absolute;
  top: 0;
  left: 30px;
  z-index: 999;
}

.login-box label {
  color: #262f40;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 6px;
}

.login-box input {
  background: #fff;
  border-radius: 6px;
  padding: 10px 10px;
  color: #525252;
  border: solid 1px #1f2b3e40;
  font-size: 12px;
}

.login-box input:focus {
  background: #ffffff;
  border: solid 1px #49969cba;
}

.login-box input::placeholder {
  color: #525252;
}

.login-box input[type="checkbox"] {
  accent-color: #2f8f9d;
  cursor: pointer;
}

.login-box button {
  background: #49969C;
  border-radius: 36px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding: 10px 40px;
  border: none;
  transition: 0.3s ease-in all;
  width: 100%;
  margin: 7px 0px;
  cursor: pointer;
}

.login-box button:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in all;
  background: #49969C;
}

.login-box a {
  color: #49969C;
  font-size: 13px;
}

.signup-doctor a {
  font-size: 13px;
  font-weight: 300;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #49969c;
  border-radius: 6px;
  padding: 6px 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.login-box a i {
  color: #49969C;
  font-size: 14px;
}

.login-box select {
  background: #fff;
  border-radius: 10px;
  padding: 9px 10px;
  color: #525252;
  border: solid 1px #1f2b3e40;
  font-size: 14px;
}

.login-box select:focus {
  background: #fff;
  border: solid 1px #49969c;
}

.login-box select::after {
  filter: invert(1);
  background: url("/assets/img/from-arrow.svg") no-repeat center center;
  content: "";
  position: absolute;
  top: 10px;
  right: 0px;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("/assets/img/form-arrow.svg") no-repeat center center;
  background-size: contain;
  pointer-events: none;
  filter: invert(1000);
  opacity: 0.6;
}

.submit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0px;
}

.submit button {
  display: block;
  width: auto;
}

.symptoms {
  background: url(/assets/img/slider.png) no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  margin-top: 0px;
  padding: 113px 0px 60px;
}

.symptoms::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 30% 50%, rgb(72 190 158 / 32%), #00000059 60%);
}

.sysmt-img {
  background: linear-gradient(135deg, #0d2e43, #052c36), radial-gradient(circle at top left, #0c2434, transparent 60%), #20516c;
  backdrop-filter: blur(145px);
  border-radius: 20px;
  box-shadow: 0px 2px 7px 0px #0000001a;
  padding: 21px 25px;
}

.gr-border {
  background: linear-gradient(179.78deg,
      #21d3f1 -2.02%,
      #086adc 97.96%,
      #0868dc 100%);
  padding: 1px;
  border-radius: 20px;
}

.sysmt-content h2 {
  font-size: 45px;
  font-weight: 500;
  line-height: 45px;
  color: #fff;
  margin-bottom: 0px;
}

.sysmt-content h2 span {
  color: #49969C;
}

.sysmt-content h6 {
  font-size: 16px;
  font-weight: 300;
  line-height: 100%;
  color: #49969C;
  margin-bottom: 0px;
  padding: 14px 0px;
}

.sysmt-content p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0px;
  padding-bottom: 32px;
}

.where-begin p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0px;
  padding: 91px 55px 0px;
  text-align: center;
  margin-bottom: 0px;
  position: relative;
}

.your-option-list {
  box-shadow: 0px 2px 7px 0px #0000001a;
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  border-left: solid 2px #32f8ec94 !important;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: 0.3s ease-in all;
  overflow: hidden;
  cursor: pointer;
  border: solid 1px #1e4650;
  background: linear-gradient(135deg, #0d2e43, #052c36), radial-gradient(circle at top left, #0c2434, transparent 60%), #20516c;
  backdrop-filter: blur(145px);
}

.your-option-list:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in all;
}

.your-option-list:hover::before {
  width: 100%;
  transition: 0.3 ease-in all;
  border-radius: 20px;
}

.start-body {
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.body-icon {
  background: rgba(0, 180, 160, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  filter: brightness(0) saturate(100%) invert(71%) sepia(77%) saturate(400%) hue-rotate(120deg) brightness(100%) contrast(101%);
}

.body-icon img {
  filter: invert(49%) sepia(20%) saturate(800%) hue-rotate(140deg);
  max-width: 30px;
}

.sysmt-content {
  position: relative;
}

.start-body .body-content h6 {
  padding: 0px;
  font-weight: 300;
  font-size: 20px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 5px;
}

.start-body .body-content p {
  color: rgb(255 255 255 / 71%);
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 0px;
  padding-bottom: 0px;
  letter-spacing: 0.09em;
}

.body-content {
  width: calc(100% - 72px);
}

.sysmt-content h3 {
  color: #fff;
  text-align: center;
  padding-top: 31px;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
}

.sysmt-img {
  position: relative;
}

.sysmt-img span {
  position: absolute;
  bottom: 0px;
  right: 46px;
  bottom: 40px;
  cursor: pointer;
  filter: brightness(0) invert(1);
}

.sysmt-img img {
  transition: opacity 0.3s ease;
}

.gr-border,
.sysmt-img {
  position: relative;
  overflow: visible !important;
}

.sysmt-img img {
  pointer-events: none;
  display: block;
  width: 100%;
}

.body-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.body-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.3s ease;
}

.body-hotspot.is-active {
  background: radial-gradient(circle,
      rgba(47, 143, 157, 0.28) 0%,
      rgba(189, 230, 226, 0.18) 45%,
      transparent 75%);
}

.body-hotspot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #2F8F9D, #277985);
  border: 2px solid #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  box-shadow: 0 2px 8px rgba(14, 74, 90, 0.35);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.body-hotspot.is-active::before {
  transform: translate(-50%, -50%) scale(1);
  animation: hotspot-dot-pulse 2s ease-in-out infinite;
}

.body-hotspot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #2F8F9D;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}

.body-hotspot.is-active::after {
  animation: hotspot-ripple 1.8s ease-out infinite;
}

@keyframes hotspot-dot-pulse {

  0%,
  100% {
    box-shadow:
      0 2px 8px rgba(14, 74, 90, 0.35),
      0 0 0 0 rgba(47, 143, 157, 0.55);
  }

  50% {
    box-shadow:
      0 2px 8px rgba(14, 74, 90, 0.35),
      0 0 0 6px rgba(47, 143, 157, 0);
  }
}

@keyframes hotspot-ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}

.hotspot-click-area {
  width: 45px;
  height: 45px;
  cursor: pointer;
}

.hotspot-label {
  position: absolute;
  top: -78px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 11px 18px 12px 22px;
  white-space: nowrap;
  z-index: 20;
  box-shadow:
    0 12px 32px rgba(14, 74, 90, 0.25),
    0 0 0 1px rgba(47, 143, 157, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  animation: hotspot-fade-in 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hotspot-label::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #2F8F9D, #BDE6E2);
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow:
    0 4px 12px rgba(47, 143, 157, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  z-index: 1;
}

.hotspot-label::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: 18px;
  background: linear-gradient(180deg, #2F8F9D 0%, rgba(47, 143, 157, 0) 100%);
}

.hotspot-label strong {
  display: block;
  font-size: 14px;
  font-weight: 300;
  background: linear-gradient(135deg, #0E4A5A, #2F8F9D);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

.hotspot-label small {
  display: inline-block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 300;
  color: #ffffff;
  background: linear-gradient(135deg, #2F8F9D, #4ba8b6);
  padding: 2px 9px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(47, 143, 157, 0.28);
}

@keyframes hotspot-fade-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(8px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.buttons {
  position: relative;
}

.buttons .dropdown-menu {
  position: absolute;
  top: 23% !important;
  right: 0;
  background: #fff;
  border-radius: 8px;
  min-width: 180px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.buttons .dropdown-item button {
  width: 100%;
  background: none;
  border: none;
  padding: 12px 16px;
  text-align: left;
  cursor: pointer;
  font-size: 12px;
  transition: 0.3s ease-in all;
}

.buttons .dropdown-item:hover {
  background: #108de3;
  transition: 0.3s ease-in all;
  color: #fff;
}

.upload-id {
  width: 100%;
  max-width: 320px;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #49969c0d;
  padding: 15px;
  font-size: 14px;
  color: #525252;
  font-weight: 500;
  max-width: 100%;
}

.upload-id:hover {
  border-color: #49969c91;
  background: #49969c14;
}

.upload-id p {
  margin-top: 8px;
  font-size: 14px;
  color: #2f80ed;
}

.upload-id img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.upload-icon {
  font-size: 32px;
  color: #2f80ed;
  font-weight: bold;
}

.upload-doc img {
  width: 25px;
  height: 25px;
  filter: invert(1) brightness(2);
  object-fit: inherit;
  border-radius: 0px;
}

.upload-doc {
  margin: 0px 0px 6px;
  background: #49969C;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.eyefiled {
  position: relative;
}

.eyefiled span {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  align-content: center;
  color: #262e40;
  font-size: 14px;
}

.buttons .user-profile {
  background: #64a6aba1;
  border-radius: 36px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding: 5px 6px;
  border: none;
  transition: 0.3s ease-in all;
}

.profile-dropdown {
  position: absolute;
  right: -20px;
  top: 50px;
  background: #fff;
  /* border-radius: 8px; */
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); */
  /* min-width: 150px; */
  /* overflow: hidden; */
  z-index: 1000;
  padding: 9px 0px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  min-width: 200px;
  border: solid 1px rgb(204 204 204 / 55%);
}

.profile-dropdown::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 32px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: rotate(45deg);
  box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.profile-dropdown button {
  width: 100%;
  padding: 8px 14px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: #212529;
  border-radius: 0px;
  margin: 2px 0px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.profile-dropdown button:hover {
  background-color: #49969c5c !important;
  color: #49969C !important;
  transform: inherit !important;
}

.eyefiled span#toggle i {
  font-size: 13px;
}

.forgotlink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 5px 0px;
}

.checkforgot {
  display: flex;
  align-items: center;
  column-gap: 6px;
  padding: 5px 0px;
}

.checkforgot input {
  width: 15px;
  height: 15px;
}

.registerinputlabel {
  margin-bottom: 10px;
}

.faq {
  padding: 80px 0px;
}

.help-center-content h1 {
  text-align: start;
  font-size: 40px;
  font-weight: 300;
  line-height: 76px;
  color: #262f40;
}

.help-center-content h6 {
  text-align: center;
  color: #108de3;
  font-size: 25px;
  font-weight: 500;
}

.help-center-content {
  padding: 40px 0px;
}

.questions-card {
  background: #fff;
  box-shadow: 0px 2px 7px 0px #0000001a;
  padding: 20px 30px;
  border-radius: 10px;
  border: solid 1px #e2e8ee;
  margin-top: 67px;
}

.help-center-content p {
  padding: 15px 0px 0px;
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0px;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
}

.getting-started h2 {
  color: #49969C;
  font-size: 21px;
  font-weight: 500;
  padding: 20px 0px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 0px;
}

.questions-card .accordion-body {
  font-size: 14px;
  color: #525252;
  font-weight: 400;
}

.questions-card .accordion-button:not(.collapsed) {
  background: #49969c47;
}

.questions-card .accordion-item h2 button {
  font-size: 16px;
  line-height: 100%;
  color: #262f40;
  margin-bottom: 0px;
  font-weight: 300;
}

.questions-card .accordion-button:focus {
  box-shadow: 0 0 0.25rem rgb(204 226 227) !important;
}

.getting-started span {
  background: #49969c47;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 16px;
  color: #49969C;
}

.legal-ploicy-servi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 27px;
}

.legal-ploicy-servi h6 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 0px;
  position: relative;
  z-index: 99;
}

.contact .legal-ploicy-servi p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0px;
  font-weight: 400;
  text-align: center;
  z-index: 99;
  position: relative;
}

section.policy {
  padding: 70px 0px;
}

.legeal-service h6 {
  color: #262f40;
  font-size: 23px;
  margin-bottom: 0px;
  padding: 23px 0 8px;
  font-weight: 500;
}

.legeal-service p {
  font-size: 16px;
  color: #525252;
  font-weight: 400;
  margin-bottom: 0px;
  position: relative;
  padding-left: 24px;
  padding-top: 9px;
}

.legeal-service p::after {
  position: absolute;
  content: "";
  background: #49969c;
  border-radius: 100%;
  width: 5px;
  height: 5px;
  left: 8px;
  top: 17px;
}

.legeal-service ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.legeal-service ul li {
  font-size: 16px;
  color: #525252;
  font-weight: 400;
  padding: 5px 0 5px 24px;
  position: relative;
}

.legeal-service ul li::before {
  position: absolute;
  content: "";
  background: #49969c;
  border-radius: 100%;
  width: 5px;
  height: 5px;
  left: 8px;
  top: 14px;
}

.legeal-service span {
  color: #262f40;
  font-size: 15px;
  margin: 14px 0 4px;
  padding: 0;
  font-weight: 600;
  display: block;
  letter-spacing: 0.1px;
}

section.policy .legal-ploicy-servi {
  margin: 0;
  padding: 35px 0px 0px;
  flex-direction: column;
  /* background: #108de330 url(/assets/img/slider.png) no-repeat; */
  background-position: center;
  margin-top: 35px;
}

section.contact .legal-ploicy-servi {
  margin: 0;
  padding: 70px 0px 70px;
  height: 450px;
  flex-direction: column;
  background: #108de330 url(/assets/img/contact-banner.jpg) no-repeat;
  background-position: center;
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

section.contact .legal-ploicy-servi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    url(/assets/img/surgmatch_contact_banner-after.png) center/cover no-repeat,
    linear-gradient(to right, rgba(10, 25, 60, 0.9) 0%, rgba(10, 25, 60, 0.75) 30%, rgba(10, 25, 60, 0.4) 55%, rgba(10, 25, 60, 0) 75%),
    linear-gradient(to right, rgba(29, 45, 83, 0.6) 0%, rgba(29, 45, 83, 0.3) 50%, rgba(29, 45, 83, 0.6) 100%);
  z-index: 2;
  pointer-events: none;
}

section.faq .legal-ploicy-servi {
  margin: 0;
  flex-direction: column;
  /* background: #108de330 url(/assets/img/slider.png) no-repeat; */
  background-position: center;
  margin-top: 50px;
}

.policy .legal-ploicy-servi h6 {
  color: #49969C;
}

.policy .legal-ploicy-servi p {
  color: #525252;
  margin-bottom: 0px;
  padding: 9px 0px;
}

.legeal-service {
  padding: 35px 0px;
}

.legeal-service h6+ul,
.legeal-service h6+span,
.legeal-service h6+p {
  margin-top: 6px;
}

.legeal-service h6 strong {
  font-weight: 600;
  color: #49969c;
  margin-right: 4px;
}

.faq .legal-ploicy-servi h6 {
  color: #49969C;
  font-size: 35px;
  font-weight: 300;
  margin-bottom: 0px;
}

.faq .legal-ploicy-servi p {
  color: #525252;
  margin-bottom: 0px;
  padding: 9px 0px;
}

.questions-card .accordion-item {
  border-color: #cce2e3;
}

.checkforgot label {
  margin-bottom: 0px !important;
  display: flex;
  align-items: center;
}

.registerinputlabel {
  color: #d85252;
  width: 100%;
}

main {
  min-height: calc(100vh - 359px);
}

.profile {
  padding: 75px 0px;
}

section.profile .legal-ploicy-servi {
  margin: 0;
  padding: 70px;
  flex-direction: column;
  background: #108de330 url(/assets/img/slider.png) no-repeat;
  background-position: center;
}

.profile-user {
  padding: 0px 0px 0px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 7px 0px;
  background: rgb(255, 255, 255);
  margin-top: 63px;
  /* border-bottom: solid 3px #21adee; */
}

.profile-user .tab-pane h2 {
  color: #262f40;
  font-size: 23px;
  font-weight: 300;
  margin-bottom: 0px;
  line-height: 100%;
  border-bottom: solid 1px #ddd;
  padding: 15px 20px;
}

.account-information {
  padding: 20px 20px 20px;
}

.account-information input {
  background: #fff;
  border-radius: 6px;
  padding: 10px 10px;
  color: #525252;
  border: solid 1px #1f2b3e40;
  font-size: 14px;
}

.account-information label {
  color: #262f40;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 6px;
}

.account-information select {
  background: #fff;
  border-radius: 6px;
  padding: 9px 10px;
  color: #525252;
  border: solid 1px #1f2b3e40;
  font-size: 14px;
}

.account-information textarea {
  resize: inherit;
  font-size: 14px;
}

.account-information textarea:focus {
  background: #ffffff;
  border: solid 1px #49969C;
}

.savechnages {
  display: flex;
  align-items: center;
  column-gap: 10px;
  justify-content: end;
}

.savechnages button {
  background: #49969C;
  border-radius: 36px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding: 8px 30px;
  border: none;
  transition: 0.3s ease-in all;
  margin: 7px 0px;
  cursor: pointer;
}

.savechnages button:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in all;
  background: #49969C;
}

.history-table {
  width: 100%;
  border-collapse: collapse;
  border: solid 1px #e5e7eb;
  border-radius: 0px;
  overflow: hidden;
}

.history-table thead {
  background-color: #f6f8fa;
}

.history-table th {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #262f40;
  border: 1px solid #94c1c5b3;
  padding: 10px 15px;
  font-weight: 300;
  white-space: nowrap;
}

.history-table td {
  padding: 12px;
  font-size: 14px;
  color: #525252;
  border: 1px solid #e5e7eb;
  vertical-align: middle;
  white-space: nowrap;
}

.history-table tbody tr:hover {
  background-color: #f9fafb;
}

.status-badge.progress {
  background-color: #2563EB;
  color: #FFFFFF;
  height: auto;
  white-space: nowrap;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background: #62a5aa;
}

.errorFocus {
  border-color: #df3851a3 !important;
  border: solid 1;
}

.history-wrapper h3 {
  color: #262f40;
  font-size: 19px;
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 100%;
  padding: 10px 0px;
}

.history-card {
  overflow: hidden;
  border: none;
  border-radius: 0px;
}

.help-center-contact {
  margin-top: 30px;
}

.help-center-contact ul {
  padding: 0px;
  margin: 0px 39px;
}

.help-center-contact ul li {
  font-size: 16px;
  color: #525252;
  font-weight: 400;
  padding: 5px 0px;
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.help-center-contact .getting-started h2 {
  padding: 20px 0px 3px;
}

.edit-name {
  position: relative;
}

.edit-address {
  position: relative;
}

.tabbbing-card .nav-link.active span img {
  filter: brightness(0) invert(1);
}

.service-card {
  box-shadow: 0px 2px 7px 0px #0000001a;
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  border-bottom: solid 2px #49969C;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: 0.3s ease-in all;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in all;
}

.systom-content p {
  background: #1b1b3ff5;
  border-radius: 35px;
  color: #fff !important;
  font-size: 12px !important;
  display: inline-block;
  padding: 2px 13px;
  margin-bottom: 0px;
}

.systom-content h2 {
  color: #262f40;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  padding: 8px 0px;
  margin-bottom: 0px;
}

.service-card p {
  color: #525252;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: start;
  padding-top: 8px;
}

.icon-ismart {
  width: 60px;
  height: 60px;
  background: #49969c70;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}

.systom-icon {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.systom-content {
  padding-top: 12px;
}

.icon-ismart img {
  max-width: 35px;
  filter: invert(55%) sepia(20%) saturate(500%) hue-rotate(140deg) brightness(90%) contrast(90%);
}

.contact-from {
  box-shadow: 0px 2px 7px 0px #0000001a;
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  border-bottom: solid 2px #49969C;
  margin-bottom: 0px;
  align-items: self-start;
  /* justify-content: space-between; */
  position: relative;
  transition: 0.3s ease-in all;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
}

.contact-from:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in all;
}

.contact-from h2 {
  color: #262f40;
  font-size: 25px;
  font-weight: 300;
  line-height: 100%;
  padding: 15px 0px;
  margin-bottom: 0px;
}

.contact-from iframe {
  width: 100%;
  height: 100%;
}

.body-icon i {
  font-size: 19px;
  color: #49969C;
}

.contact .start-body .body-content p {
  font-size: 14px;
}

.contact .your-option h2 {
  color: #262f40;
  font-size: 25px;
  font-weight: 300;
  line-height: 100%;
  padding: 15px 0px;
  margin-bottom: 15px;
}

.contact .your-option-list {
  border: solid 1px #49969c47;
  box-shadow: none;
  background: #fff;
  border-left: solid 2px #49969C !important;
}

.contact .start-body .body-content h6 {
  color: #49969C;
}

.contact .start-body .body-content p {
  color: #525252;
}

.contact .body-icon {
  filter: inherit;

}

.contact .contact-info-card-wrap {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  cursor: default;
}

.contact .contact-info-card-wrap:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in all;
}

.contact .contact-info-lead {
  font-size: 14px;
  color: #525252;
  line-height: 1.75;
  margin: 0 0 18px;
  padding-bottom: 0;
}

.contact .contact-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(73, 150, 156, 0.12), rgba(73, 150, 156, 0.04));
  border: 1px solid rgba(73, 150, 156, 0.28);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  margin-bottom: 22px;
  color: inherit;
  width: 100%;
}

.contact .contact-info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(73, 150, 156, 0.6);
}

.contact .contact-info-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(73, 150, 156, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #49969c;
  font-size: 20px;
}

.contact .contact-info-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.contact .contact-info-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #6b7280;
  font-weight: 500;
}

.contact .contact-info-card-value {
  font-size: 16px;
  color: #1f2937;
  font-weight: 500;
  word-break: break-word;
  line-height: 1.35;
}

.contact .contact-info-illustration {
  margin-top: 28px;
  padding: 8px 4px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.contact .contact-info-illustration svg {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  overflow: visible;
}

.contact .contact-info-illustration .cti-bubble {
  transform-box: fill-box;
  transform-origin: center;
  animation: cti-float 5.2s ease-in-out infinite;
  will-change: transform;
}

.contact .contact-info-illustration .cti-bubble-1 {
  animation-duration: 5.4s;
  animation-delay: 0s;
}

.contact .contact-info-illustration .cti-bubble-2 {
  animation-duration: 6s;
  animation-delay: 0.7s;
}

.contact .contact-info-illustration .cti-bubble-3 {
  animation-duration: 4.8s;
  animation-delay: 1.4s;
}

.contact .contact-info-illustration .cti-typing circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: cti-dot 1.2s ease-in-out infinite;
}

.contact .contact-info-illustration .cti-typing circle:nth-child(1) {
  animation-delay: 0s;
}

.contact .contact-info-illustration .cti-typing circle:nth-child(2) {
  animation-delay: 0.18s;
}

.contact .contact-info-illustration .cti-typing circle:nth-child(3) {
  animation-delay: 0.36s;
}

.contact .contact-info-illustration .cti-spark {
  transform-box: fill-box;
  transform-origin: center;
  animation: cti-twinkle 3.4s ease-in-out infinite;
}

.contact .contact-info-illustration .cti-spark-2 {
  animation-delay: 0.8s;
  animation-duration: 4s;
}

.contact .contact-info-illustration .cti-spark-3 {
  animation-delay: 1.6s;
  animation-duration: 4.6s;
}

@keyframes cti-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes cti-dot {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }

  50% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@keyframes cti-twinkle {

  0%,
  100% {
    transform: scale(0.85);
    opacity: 0.35;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {

  .contact .contact-info-illustration .cti-bubble,
  .contact .contact-info-illustration .cti-typing circle,
  .contact .contact-info-illustration .cti-spark {
    animation: none;
  }
}

.surg-dfty {
  margin: 47px 0px;
}

.doctor-slider {
  position: relative;
  background: linear-gradient(135deg, #367fc7, #2da2f7);
  color: #fff;
  overflow: hidden;
  height: 650px;
  position: relative;
  display: flex;
  align-items: center;
}

.doctor-content {
  position: relative;
  z-index: 9;
}

.doctor-content h1 {
  font-size: 50px;
  font-weight: 300;
  line-height: 50px;
  color: #fff;
  margin-bottom: 0px;
}

.doctor-content h1 span {
  color: #fff;
}

.doctor-content p {
  padding: 0px 0px;
  color: rgb(255 255 255 / 78%);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0px;
  padding: 20px 0px;
}

main {
  min-height: calc(100vh - 359px);
}

.doctor-slider:after {
  position: absolute;
  content: "";
  width: 95%;
  height: 1px;
  background: url(../img/doctor-bg.svg);
  bottom: 66px;
  left: 29px;
  right: 0px;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
}

.doctor-slider .row {
  align-items: center;
  position: relative;
  z-index: 99;
}

.doctor-profile-img {
  width: 500px;
  display: flex;
  justify-content: end;
  align-items: center;
}

.doctor-profile-img {
  position: relative;
  z-index: 9;
}

.doctor-profile-img img {
  border-radius: 10px;
}

.doctor-profile-img:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(16 141 227 / 14%);
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 999;
  border-radius: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.doctor-content .findmatch-btn button:hover {
  background: #1b1b3f;
  border-color: #fff;
}

.header-dashboard {
  background: #fff;
}

.header-dashboard {
  background: #fff;
  padding: 15px;
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 99;
  border-bottom: solid 1px #e5e7eb;
}

.profile-dropdown-das .dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(../img/arrow-down.svg) no-repeat center;
  background-size: 9px;
  vertical-align: middle;
  border: none;
  pointer-events: none;
  filter: invert(0) brightness(0);
}

.profile-dropdown-das .dropdown-menu {
  position: relative;
}

.profile-dropdown-das .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 39px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: rotate(45deg);
  box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.profile-dropdown-das .dropdown-menu li {
  position: relative;
  z-index: 9999;
}

.dropdown-item:focus,
.dropdown-item:focus {
  outline: none;
}

.profile-dropdown-das .profile-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 4px;
  background: #fff;
  border: none !important;
  padding: 0px;
}

.logo img {
  height: 60px;
}

.profile-dropdown-das .profile-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: solid 2px #18afea73;
  border-radius: 100%;
}

.profile-dropdown-das .profile-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.profile-dropdown-das .profile-name {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-color);
  line-height: 20px;
}

.profile-dropdown-das .profile-role {
  font-size: 12px;
  font-weight: 500;
  color: #77777f;
  text-transform: uppercase;
  line-height: 14px;
}

.profile-dropdown-das .dropdown-menu {
  border-radius: 6px;
  min-width: 200px;
  margin-top: 12px !important;
}

.profile-dropdown-das .dropdown-item:hover {
  background-color: #f5f5f5;
}

.profile-dropdown-das .profile-btn:focus {
  outline: none;
  box-shadow: none;
  border: 0;
}

.profile-dropdown-das .btn.show,
.profile-dropdown-das .btn:active,
.profile-dropdown-das .btn:focus {
  border: none;
  box-shadow: none;
}

.profile-dropdown-das .dropdown-menu a {
  padding: 10px 15px;
  border-bottom: solid 1px #ddd;
  transition: 0.3s ease-in-out;
  font-size: 13px;
  font-weight: 500;
  color: #77777f;
  line-height: 14px;
}

.profile-dropdown-das .dropdown-menu a:last-child {
  border-bottom: none;
}

.profile-dropdown-das .dropdown-menu a:hover {
  background: var(--blue);
  color: var(--white);
}

.dropdown.profile-dropdown-das {
  display: flex;
  justify-content: end;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 96%;
  width: 250px;
  padding: 0;
  background-color: #ffffff;
  transition: var(--tran-05);
  z-index: 100;
  margin: 20px;
  box-shadow: 0 0 40px #0000000d;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.5s;
}

.sidebar.close {
  width: 80px;
}

.sidebar header {
  position: relative;
  border-bottom: 1px solid #ccc;
  padding: 0 0 10px;
}

.sidebar .icon {
  min-width: 60px;
  border-radius: 6px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sidebar .text,
.sidebar .icon {
  color: var(--text-color);
  transition: var(--tran-03);
}

.sidebar.close span.toggle span.two {
  right: auto;
  left: 0;
}

.sidebar .text {
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  color: #636363;
  width: 100%;
  transition: 0.5s ease-in all;
  opacity: 1;
  visibility: visible;
}

.sidebar.close .text {
  opacity: 0;
  visibility: hidden;
  width: 1px;
  transition: 0.5s ease-in all;
}

.sidebar header {
  position: relative;
  border-bottom: 1px solid #ccc;
  padding: 0px 0 15px;
  margin: 0 0 20px;
}

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

header .image-text .name {
  margin-top: 2px;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.sidebar header .image {
  margin-right: 10px;
}

header .image-text .profession {
  font-size: 20px;
  margin-top: -10px;
  display: block;
  font-weight: 200;
  color: #fff;
}

.sidebar header .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar header .image img {
  width: 160px;
  border-radius: 0px;
}

span.toggle {
  position: relative;
  width: 25px;
  height: 18px;
  cursor: pointer;
}

span.toggle span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #636363;
  border-radius: 5px;
  top: 0;
  right: 0;
}

span.toggle span.two {
  top: 8px;
  width: 80%;
}

span.toggle span.three {
  top: 16px;
}

body.dark .sidebar header .toggle {
  color: var(--text-color);
}

.sidebar .menu {
  margin-top: 10px;
}

.sidebar li a {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-decoration: none;
  transition: 0.3s ease-in all;
  gap: 5px;
  padding: 10px 15px;
}

.sidebar header {
  margin: 15px;
}

.sidebar .menu-bar .menu {
  padding: 0 15px;
}

.sidebar .menu-bar li.nav-link.Sign_Out {
  margin: 0px 15px;
  background: #49969C;
  padding: 0px;
}

.sidebar .menu-bar li.nav-link.Sign_Out a i {
  color: #fff;
}

.sidebar .menu-bar li.nav-link.Sign_Out a span.text {
  color: #fff;
}

.sidebar li a i {
  font-size: 18px;
  color: #636363;
}

.sidebar li.active a i {
  color: #ff173d;
}

.sidebar li a img {
  margin-right: 0px;
  width: 20px;
  filter: invert(45%) sepia(9%) saturate(906%) hue-rotate(179deg) brightness(89%) contrast(86%);
  transition: 0.3s;
}

.sidebar li.nav-link:hover a img,
.sidebar li.nav-link.active a img {
  filter: brightness(0) invert(1);
}

.sidebar li.active a .text {
  color: #108de3;
  font-weight: 500;
}

.sidebar .menu-links li.nav-link a i.nav-icon-rmx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  font-size: 18px;
  color: #636363;
  transition: color 0.3s;
}

.sidebar .menu-links li.nav-link:hover a i.nav-icon-rmx,
.sidebar .menu-links li.nav-link.active a i.nav-icon-rmx {
  color: #fff;
}

.sidebar .menu .menu-links.menu-links--secondary {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e6ebef;
}

.site_header .header-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 12px;
  border-radius: 50%;
  background: #f4f7fa;
  color: #525252;
  text-decoration: none;
  transition: all 0.2s ease;
}

.site_header .header-bell:hover {
  background: #E8F7F6;
  color: #2F8F9D;
}

.site_header .header-bell i {
  font-size: 18px;
}

.site_header .header-bell__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ff5b6c;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

body.dark .sidebar li a:hover .icon,
body.dark .sidebar li a:hover .text {
  color: var(--text-color);
}

.sidebar .menu-bar {
  height: calc(100% - 90px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: scroll;
}

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

.sidebar.close~.Right_part {
  left: 76px;
  height: 100vh;
  width: calc(100% - 96px);
}

.sidebar .menu ul.menu-links {
  padding: 0;
  margin: 0;
}

.sidebar.close header .image-text span.image {
  opacity: 1;
  visibility: visible;
  min-width: 0;
  width: auto;
  margin: 0 6px 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sidebar.close header .image-text span.image img {
  width: 36px;
  height: auto;
  max-width: 36px;
}

.sidebar.close header .image-text {
  justify-content: center;
  gap: 4px;
}

.sidebar li.nav-link {
  padding: 0;
  margin: 0 0 5px;
  transition: 0.3s ease-in all;
  border-radius: 5px;
}

.sidebar li.nav-link:hover {
  background: #49969C;
  color: #fff;
}

.sidebar li.nav-link:hover span {
  color: #fff;
}

.sidebar li.nav-link:hover svg {
  color: #fff;
}

.sidebar .text {
  font-size: 14px;
  margin-left: 10px;
  width: calc(22px - 100%);
}

.sidebar {
  width: 250px;
}

.sidebar .menu ul.menu-links li svg {
  color: #a8b0bc;
  height: 22px;
  width: 22px;
}

.Right_part {
  position: absolute;
  top: 0;
  top: 0;
  left: 270px;
  width: calc(100% - 290px);
  transition: var(--tran-05);
  padding: 0px 20px 0px 10px;
  margin: 20px;
  min-height: 95vh;
  max-height: 95vh;
  overflow: auto;
  transition: 0.5s;
}

.Right_part .text {
  font-size: 30px;
  font-weight: 500;
  color: var(--text-color);
  padding: 12px 60px;
}

.sidebar.close~.Right_part {
  left: 100px;
  height: 100vh;
  width: calc(100% - 120px);
}

.Right_part .main {
  min-height: calc(100vh - 228px);
  margin-right: 0px;
  padding: 0px 0 0;
  margin-top: 24px;
}

.Right_part {
  left: 280px;
  width: calc(100% - 300px);
  overflow-x: hidden;
}

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

.site_header .user {
  width: 20%;
  display: flex;
  justify-content: end;
}

.site_header .Icon {
  width: 20%;
  text-align: start;
}

.site_header .user .dropdown .dropbtn {
  display: flex;
  align-items: center;
  justify-content: end;
}

.site_header .user .dropdown .dropbtn .user_icon {
  margin-right: 15px;
}

.sidebar .menu ul.menu-links {
  padding: 0;
  margin: 0;
}

.site_header .user .dropdown .dropbtn .user_name h2 {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  margin: 0;
}

.site_header .user .dropdown .dropbtn .user_name p.designation {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  color: #6c7c93;
}

.site_header .user .dropdown .dropbtn .user_name p.last_login {
  margin: 0px 0 0;
  font-size: 14px;
  color: #222222;
  font-weight: 500;
}

.site_header .user .dropdown .dropbtn .user_icon {
  position: relative;
}

.site_header .user .dropdown .dropbtn .user_icon span.user_edit {
  position: absolute;
  bottom: 0;
  display: block;
  right: -5px;
}

.site_header .Icon .icon_inner a {
  text-decoration: none;
  margin: 0 0 0 5px;
  transition: 0.3s;
  color: #222;
}

.site_header .Icon .icon_inner a:hover img {
  transform: scale(1.05);
}

header .site_header .Icon .icon_inner a img {
  transition: 0.3s;
}

.site_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  margin: 0 0 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 40px 0px #0000000d;
  z-index: 99;
  left: auto;
  width: 100%;
  transition: 0.5s;
  position: sticky;
  top: 0;
  right: auto;
}

.user_icon {
  width: 40px;
  height: 40px;
}

.user_icon img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
  border: solid 2px rgb(73 150 156 / 59%);
}

.icon_inner h2 {
  color: #262f40;
  font-size: 25px;
  margin-bottom: 5px;
  font-weight: 400;
  white-space: nowrap;
}

.icon_inner h6 {
  color: #6c7c93;
  font-size: 14px;
  margin-bottom: 0px;
  font-weight: 400;
}

.user_name h2 span {
  color: #262f40;
  font-weight: 400;
}

.profile-verfication-card {
  box-shadow: 0px 2px 7px 0px #0000001a;
  background: #fff;
  border-radius: 20px;
  padding: 31px 15px;
  border-left: solid 2px #49969C;
  margin-bottom: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  position: relative;
  transition: 0.3s ease-in all;
  overflow: hidden;
  cursor: pointer;
  margin-top: 0px;
}

.profile-verification {
  width: 80px;
  height: 80px;
}

.profile-verification img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.profile-using-dash {
  display: flex;
  align-items: self-start;
  column-gap: 21px;
}

.profile-using-dash .under-review h6 {
  color: #262f40;
  font-size: 19px;
  margin-bottom: 0px;
  padding-top: 5px;
}

.editprofile-doctor button {
  background: #49969C;
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding: 8px 10px;
  border: solid 1px #49969C;
  transition: 0.3s ease-in all;
  display: flex;
  align-items: center;
  column-gap: 5px;
  justify-content: center;
}

.editprofile-doctor button:hover {
  transform: scale(1.05);
}

.editprofile-doctor button svg {
  height: 16px;
}

span.approvde {
  border-radius: 10px;
  background: #f3e8ce9e;
  color: #dd9e01;
  padding: 2px 14px 2px 23px;
  border-radius: 35px;
  font-size: 12px;
  position: absolute;
  top: 15px;
  right: 15px;
}

span.approvde::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #fbbd23;
  left: 12px;
  top: 9px;
  border-radius: 100%;
}

.profile-using-dash p {
  padding: 0px 0px;
  color: #525252;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  max-width: 800px;
}

.profile-viewrs {
  border: solid 2px #fff;
  box-shadow: 0px 5px 10px 0px #00000014;
  background: #108de345;
  border-radius: 20px;
  padding: 15px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: self-start;
  justify-content: space-between;
  position: relative;
  transition: 0.3s ease-in all;
  overflow: hidden;
  cursor: pointer;
  margin-top: 10px;
  flex-direction: column;
}

.profile-viewrs:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in all;
}

.profile-viewrs h2 {
  color: #262f40;
  font-size: 45px;
  margin-bottom: 0px;
  padding: 0px 0px 10px;
  font-weight: 300;
}

.profile-viewrs span {
  color: #108de3;
  font-size: 15px;
  font-weight: 300;
}

li.nav-link.active {
  background: #49969C;
  color: #fff;
}

header.d-header {
  background: none;
}

.user {
  position: relative;
  cursor: pointer;
}

.dropbtn {
  padding: 0px 0px;
  border-radius: 12px;
  transition: 0.3s;
  margin-right: 0px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.dropbtn:focus,
.dropbtn:active,
.dropbtn:hover {
  background: transparent;
  box-shadow: none;
  outline: none;
}

.profile-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.site_header .user .dropdown .dropbtn .profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #e5eeed;
  box-shadow: none;
}

.user_name h2 {
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

.user_name .designation {
  font-size: 13px;
  color: #6c757d;
}

.user-dropdown {
  border-radius: 12px;
  box-shadow: none;
  padding: 8px 0;
  min-width: 200px;
  border: solid 1px rgb(204 204 204 / 32%);
  margin-top: 9px !important;
}

.user-dropdown .dropdown-item {
  padding: 10px 16px;

  font-size: 14px;

  transition: 0.2s;

  display: flex;

  align-items: center;

  column-gap: 8px;
}

.user-dropdown .dropdown-item img {
  width: 18px;
}

.user-dropdown .dropdown-item:hover {
  background-color: #49969c5c;
  color: #49969C;
}

.user-dropdown .dropdown-item:hover img {
  filter: invert(53%) sepia(28%) saturate(623%) hue-rotate(140deg) brightness(92%) contrast(90%);
}

.user-dropdown::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 28px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: rotate(45deg);
  box-shadow: none;
  border-top: 1px solid rgb(204 204 204 / 32%);
  border-left: 1px solid rgb(204 204 204 / 32%);
  z-index: 999;
}

.sidebar .menu ul.menu-links li.active svg a svg {
  color: #fff;
}

.sidebar .menu-bar .menu ul.menu-links li.nav-link.active a svg {
  color: #fff;
}

.sidebar .menu-bar .menu ul.menu-links li.nav-link.active a span.text.nav-text {
  color: #fff;
  font-weight: 300;
}

.sidebar .menu-bar .menu ul.menu-links li.nav-link:hover a svg {
  color: #fff;
}

header.d-header {
  margin: 0;
  padding: 15px;
}

.footer-dash {
  border-radius: 8px;
  padding: 12px 0px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0px;
  margin-top: 30px;
  background: linear-gradient(90deg, #223F73 0%, #122C52 40%, #0A1F3F 70%, #06172E 100%);
}

.footer-dash p {
  color: #fff;
  text-align: center;
  margin-bottom: 0px;
  font-size: 12px;
}

.under-review span {
  color: #49969C;
  font-size: 14px;
  display: block;
  padding: 5px 0px;
}

.dash-doctor-profile {
  padding: 15px;
  margin: 0 0 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 40px 0px #0000000d;
  margin-right: 0px;
  z-index: 99;
  margin-top: 0px;
}

.dcotr-profile-img-d {
  display: flex;
  align-items: start;
  column-gap: 20px;
  align-items: center;
  margin-bottom: 33px;
}

.doctr-dashboard-profile {
  width: 90px;
  height: 90px;
  position: relative;
}

.doctr-dashboard-profile img {
  width: 100%;
  height: 100%;
}

.profile-dashboard-content h6 {
  color: #262f40;
  font-size: 21px;
  margin-bottom: 3px;
  font-weight: 500;
}

.profile-dashboard-content p {
  color: #6c7c93;
  font-size: 14px;
  margin-bottom: 0px;
}

span.upload-doctor-profile {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: #49969C;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  /* font-size: 9px; */
}

span.upload-doctor-profile svg {
  height: 16px;
}

.account-information input:focus {
  background: #ffffff;
  border: solid 1px #49969C;
}

.document-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  max-width: 100%;
  margin: 8px auto;
  height: 100%;
}

.document-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0px;
}

.document-info {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.document-icon {
  width: 45px;
  height: 45px;
  background: #e6f9f0;
  color: #22c55e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.document-text h4 {
  color: #262f40;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  padding: 5px 0px;
  margin-bottom: 0px;
}

.document-text p {
  color: #525252;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: start;
}

.file-name {
  font-size: 15px;
  color: #000000;
  font-weight: 400;
}

.status-badge.approved:after {
  background: #10B981;
}

.status-badge.rejected:after,
.status-badge.failed:after {
  background: #EF4444;
}

.status-badge.pending {
  background: #FEF3C7;
  color: #F4A261;
}

.status-badge.approved {
  background: #D1FAE5;
  color: #10B981;
}

.status-badge.rejected,
.status-badge.failed {
  background: #FEE2E2;
  color: #EF4444;
}

.upload-wrapper {
  border: 2px dashed #d1d5db;
  border-radius: 14px;
  padding: 0px;
  text-align: center;
  position: relative;
  transition: 0.3s ease;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload-wrapper:hover {
  border-color: #49969c91;
  background: #49969c14;
}

.file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  font-size: 22px;
  color: #525252;
  margin-bottom: 8px;
}

.upload-content p {
  margin: 5px 0;
  font-size: 15px;
}

.upload-content small {
  font-size: 12px;
  color: #9ca3af;
}

.medical-license .document-icon {
  background: #e7f1f9;
}

.medical-license .document-icon svg {
  color: #49969C;
}

.upload-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.upload-icon {
  font-size: 22px;
  color: #525252;
  margin-bottom: 8px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  background: #49969C;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 100%;
}

.document-card.medical-license p {
  margin-bottom: 0px;
  color: #525252;
  font-size: 12px;
  font-weight: 400;
  text-align: start;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

p.preview-pdf span i {
  font-size: 70px;
  /* color: #fe6565; */
}

.dash-doctor-profile h6 {
  color: #262f40;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 6px;
}

.dash-doctor-profile.procedures .area-experties {
  margin-bottom: 0px;
}

.dash-doctor-profile.procedures h6 {
  margin-bottom: 14px;
}

.document-card.medical-license .account-information {
  padding: 0px 0px 0px;
}

.upload-icon svg {
  width: 16px;
}

.add-procedure {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 27px;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 40px 0px #0000000d;
  border-radius: 10px;
  padding: 15px;
}

.device-names label {
  color: #262f40;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 6px;
}

.device-names {
  display: flex;
  column-gap: 20px;
  width: 75%;
  align-items: center;
}

.search-withfilters {
  width: 100%;
  margin-top: 29px;
}

.search-withfilters input {
  background: #fff;
  border-radius: 6px;
  padding: 10px 10px;
  color: #525252;
  border: solid 1px #1f2b3e40;
  font-size: 14px;
}

.search-withfilters input:focus {
  background: #ffffff;
  border: solid 1px #49969C;
}

.device-names .select-wrapper {
  background: #fff;
  border-radius: 6px;
  padding: 0px 0px;
  color: #525252;
  /* border: solid 1px #1f2b3e40; */
  font-size: 14px;
  transition: 0.3s ease-in all;
  min-width: 250px;
}

.device-names .select-wrapper select {
  font-size: 14px;
  padding: 10px;
}

.device-names select:focus {
  background: #ffffff;
  border: solid 1px #49969C;
}

.add-procedure button {
  background: #49969C;
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 8px 20px;
  border: solid 1px #49969C;
  transition: 0.3s ease-in all;
  display: flex;
  align-items: center;
  column-gap: 5px;
  justify-content: center;
  white-space: nowrap;
}

.add-procedure button:hover {
  transform: scale(1.05);
}

.submission-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  color: #1f2a37;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.submission-table thead {
  background: #f6f8fa;
}

.submission-table thead th {
  text-align: left;
  font-size: 14px;
  font-weight: 300;
  color: #262f40;
  border-left: 1px solid #e5e7eb;
  border-top: solid 1px #e5e7eb;
  padding: 10px 15px;
  white-space: nowrap;
}

.submission-table tbody td {
  padding: 10px 15px;
  font-size: 14px;
  color: #262f40;
  border-left: 1px solid #e5e7eb;
  border-top: solid 1px #e5e7eb;
  white-space: nowrap;
}

.submission-table tbody tr:last-child td {
  border-bottom: 1px solid #e5e7eb;
}

.submission-table tbody tr:hover {
  background: #fafbfc;
}

.submission-table thead th:first-child {
  border-top-left-radius: 10px;
}

.submission-table thead th:last-child {
  border-top-right-radius: 10px;
}

.submission-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.submission-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.submission-table thead th:first-child,
.submission-table tbody td:first-child {
  padding-left: 35px;
}

.submission-table thead th:last-child,
.submission-table tbody td:last-child {
  padding-right: 35px;
  border-right: 1px solid #e5e7eb;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 400;
}

.status.approved {
  background-color: #D1FAE5;
  color: #10B981;
}

.status.pending {
  background-color: #FEF3C7;
  color: #F4A261;
}

.status.rejected,
.status.failed,
.status.declined {
  background-color: #FEE2E2;
  color: #EF4444;
}

.status.in-progress,
.status.in_progress,
.status.review {
  background-color: #DBEAFE;
  color: #2563EB;
}

.status.active,
.status.completed {
  background-color: #D1FAE5;
  color: #10B981;
}

.status .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: currentColor;
}

.custom-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  animation: pt-fade-in 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.custom-modal {
  background: #fff;
  width: 700px;
  padding: 20px;
  border-radius: 10px;
  animation: scaleIn 0.5s ease;
}

.custom-modal h5 {
  margin: 0;
}

button.submit-btn {
  background: #49969C;
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 8px 17px;
  border: solid 1px #49969C;
  transition: 0.3s ease-in all;
  display: flex;
  align-items: center;
  column-gap: 5px;
  justify-content: center;
  /* display: inline-block; */
  margin: 0 auto;
}

button.submit-btn:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in all;
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.custom-modal-overlay .account-information {
  padding: 0px;
}

.custom-modal-overlay .modal-header {
  position: relative;
  margin-bottom: 11px;
  border-bottom: solid 1px rgb(221 221 221 / 73%);
  padding-bottom: 12px;
}

.custom-modal-overlay .modal-header h4 {
  color: #262f40;
  font-size: 21px;
  margin-bottom: 0px;
  font-weight: 300;
  white-space: nowrap;
}

.custom-modal-overlay button.close-btn {
  position: absolute;
  right: 0px;
  background: none;
  border: none;
  top: 0px;
}

button.close-btn img {
  width: 11px;
}

.custom-modal-overlay .account-information label {
  font-weight: 400;
}

.device-details {
  padding: 0px;
  margin: 0 0 0px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 40px 0px #0000000d;
  margin-right: 0px;
  z-index: 9;
  border: solid 1px rgb(73 150 156 / 40%);
  border-bottom: solid 3px #49969C;
  transition: 0.3s ease-in all;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.device-details:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in all;
}

.device-text-details {
  padding: 15px;
}

.device-img {
  width: 100%;
  height: 220px;
  background: #ffffff;
  padding: 10px;
  overflow: hidden;
  border-radius: 10px;
}

.device-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  overflow: hidden;
  transition: 0.3s ease-in all;
}

.device-img img:hover {
  transform: scale(1.1);
  overflow: hidden;
}

.device-text-details {
  padding: 10px;
}

.device-text-details-sound h6 {
  font-weight: 400;
  margin-bottom: 7px;
  font-size: 17px;
}

.device-text-details-sound p {
  font-size: 14px;
  color: #6c757d;
  font-weight: 400;
  margin-bottom: 0px;
}

.view-details-sop {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-top: 18px;
}

.view-details-sop p {
  background: #eef2f6;
  border-radius: 6px;
  padding: 5px 10px;
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0px;
  font-weight: 400;
}

.view-details-sop a {
  text-decoration: none;
  background: #49969C;
  border-radius: 6px;
  padding: 8px 14px;
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  column-gap: 2px;
  font-weight: 400;
}

.view-details-sop a svg {
  width: 16px;
}

span.device-approvie {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 12px;
  background: rgb(171 241 208 / 88%);
  padding: 2px 10px 2px 18px;
  border-radius: 35px;
  color: #16a34a;
  font-weight: 400;
  z-index: 9999;
}

span.device-approvie:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #16a34a;
  left: 9px;
  top: 8px;
  border-radius: 100%;
}

span.device-approvie.pending {
  background: #f3e8ce9e;
  color: #e9aa0e;
}

span.device-approvie.pending:after {
  background: #fbbd23;
}

.submit-approvial {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

button.submit-btn.cancel {
  background: #fff;
  border-radius: 36px;
  border: solid 1px #108de3;
  color: #108de3;
}

.submit-approvial button {
  transition: 0.3s ease-in all;
}

.submit-approvial button:hover {
  background: #108de3;
  color: #fff;
  transform: scale(1.05);
}

.submission-table thead {
  background: #f6f8fa;
}

span.status.pending span.dot {
  background: #f59e0b;
}

.area-experties.dash-doctor-profile .area-experties {
  margin-bottom: 0px;
}

.insurance-plan {
  padding: 30px;
  margin: 0 0 20px;
  background-color: #fff;
  border-radius: 10px;
  margin-right: 0px;
  z-index: 99;
  margin-top: 0px;
}

.insurance-plan h6 {
  color: #262f40;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 10px;
}

.insurance-status {
  padding: 20px;
  margin: 0 0 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 40px 0px #0000000d;
  margin-right: 0px;
  z-index: 99;
  margin-top: 30px;
  border: solid 1px #108de352;
  border-bottom: solid 3px #108de3;
  transition: 0.3s ease-in all;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.insurance-status:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in all;
}

.insurance-heading h6 {
  color: #262f40;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 0px;
  padding: 20px 0px;
}

.insurance-status h6 {
  color: #262f40;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 0px;
  padding: 0px 0px;
}

.insurance-status span.device-approvie {
  top: 20px;
  right: 20px;
}

.legal-ploicy-servi.legal-ploicy-servi-back {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-direction: row !important;
}

.legal-ploicy-servi.legal-ploicy-servi-back ul.breadcrumb {
  font-size: 14px;
}

.legal-ploicy-servi.legal-ploicy-servi-back li.breadcrumb-item {
  color: #525252;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
}

.legal-ploicy-servi.legal-ploicy-servi-back li.breadcrumb-item a {
  color: #49969C;
  text-decoration: none;
}

.custom-modal-overlay.termcondition .modal-body.account-information {
  height: 500px;
  overflow: auto;
  overflow-x: hidden;
}

.custom-modal-overlay.termcondition .modal-body.account-information .legeal-service {
  padding: 0px 15px;
}

.custom-modal-overlay.termcondition .modal-body.account-information .legeal-service h6 {
  font-size: 15px;
  padding: 11px 0px 5px;
}

.custom-modal-overlay.termcondition .modal-body.account-information .legeal-service ul li {
  font-size: 14px;
}

.custom-modal-overlay.termcondition .modal-body.account-information .legeal-service ul {
  padding: 0px;
  margin: 0px 37px;
}

.custom-modal-overlay.termcondition .modal-body.account-information::-webkit-scrollbar {
  width: 6px;
}

.custom-modal-overlay.termcondition .modal-body.account-information::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.custom-modal-overlay.termcondition .modal-body.account-information::-webkit-scrollbar-thumb {
  background: #49969c5c;
  border-radius: 10px;
}

.custom-modal-overlay.termcondition .modal-body.account-information::-webkit-scrollbar-thumb:hover {
  background: #0c6fb3;
}

.custom-modal-overlay.termcondition .custom-modal.large {
  width: 800px;
}

.custom-modal-overlay.termcondition .custom-modal.large button.submit-btn {
  width: auto;
  margin: 5px 0px 0px;
}

.custom-modal-overlay.termcondition .modal-footer button.disable-submit {
  background: #49969C;
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 8px 17px;
  border: solid 1px #49969C;
  transition: 0.3s ease-in all;
  display: flex;
  align-items: center;
  column-gap: 5px;
  justify-content: center;
  opacity: 0.5;
}

.custom-modal-overlay.termcondition .modal-footer {
  display: flex;
  justify-content: center;
  padding: 10px 0px 0px;
  border-top: solid 1px rgb(221 221 221 / 31%);
  margin-top: 11px;
  width: calc(100% + 42px);
  margin-left: -21px;
}

.custom-modal-overlay.termcondition .modal-footer .terms-accept-btn button:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in all;
  background: #108de3;
}

.terms-link {
  color: #49969c;
  cursor: pointer;
  font-weight: 400;
  text-decoration: underline;
}

.terms-accept-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.profile-dropdown button img {
  max-width: 17px;
}

hr.divider {
  margin: 5px 0px;
  border-color: #848181;
}

.profile-wrapper button.user-profile:hover {
  background: #64a6aba1 !important;
}

.swal-confirm-btn,
.swal-cancel-btn {
  width: 85px;
}

.legal-ploicy-servi p {
  margin-bottom: 0px;
  padding: 7px 0px;
  color: #525252;
  font-size: 15px;
  font-weight: 400;
}

.patient-details {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.keyinstruction .your-option {
  width: 100%;
}

.keyinstruction .body-icon {
  width: calc(75px - 15px);
}

.keyinstruction .body-icon p {
  width: calc(100% - 75px);
}

#tooltip {
  position: absolute;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  width: 250px;
  font-size: 12px;
}

.sysmt-img {
  position: relative;
}

.profile-wrapper button.user-profile img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.profile-wrapper button.user-profile {
  width: 40px;
  height: 40px;
  padding: 1px;
}

.procedure-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.procedure-header h5 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.divider {
  height: 1px;
  background: #eee;
  margin: 15px 0;
}

.procedures-body p {
  background: #f5f7f8;
  border-radius: 5px;
  padding: 10px;
  margin-top: 10px;
  font-size: 12px;
  color: #525252;
  font-weight: 400;
  border: solid 1px #dddddd1f;
  margin-bottom: 6px;
}

.procedures-body label {
  color: #262f40;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;

}

.view-procedures {
  background: #49969C;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border: none;
}

.prcode-tabing div#nav-tab {
  border-bottom: none;
  display: flex;
  align-items: center;
  column-gap: 7px;
  margin-bottom: 20px;
}

.prcode-tabing .nav-tabs .nav-link.active {
  background: #49969C;
  color: #fff;
  border-bottom: 2px solid #49969C;
}

.prcode-tabing .nav-tabs .nav-link {
  /* border: solid 1px #cfecff; */
  border-radius: 5px;
  padding: 5px 18px;
  font-size: 15px;
  transition: 0.3s ease-in all;
  border-radius: 5px;
  color: #49969C;
  background: #ffffff;
  border: none;
  border-bottom: solid 2px #49969C !important;
}

.prcode-tabing .nav-tabs .nav-link:hover {
  background: #49969C;
  color: #fff;
  border-bottom: solid 2px #49969C !important;
  border: none;
}

.custom-page-btn {
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #dcdcdc;
  background-color: #f8f9fa;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-page-btn:hover:not(:disabled) {
  background-color: #49969C;
  color: #fff;
}

.custom-page-btn:disabled {
  background-color: #f1f1f1;
  color: #b5b5b5;
  cursor: not-allowed;
  border-color: #e0e0e0;
}

.pagenation-demo {
  display: flex;
  align-items: center;
  column-gap: 0px;
}

.pagenation-demo ul {
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.pagenation-demo ul li {
  list-style: none;
  background: #49969c9e;
  height: 35px;
  width: 35px;
  border-radius: 5px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  transition: 0.3s ease-in all;
  cursor: pointer;
}

.pagenation-demo ul li:hover {
  background: #49969C;
  color: #fff;
}

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

.pagination-list li {
  cursor: pointer;
  margin: 0 5px;
  padding: 6px 12px;
  border-radius: 4px;
  background: #eee;
}

.pagination-list li.active-page {
  background: #49969C;
  color: #fff;
}

.remove-btn {
  background: none;
  border: none;
  color: red;
  cursor: pointer;
}

.file-preview-list {
  margin-top: 0px;
  height: 125px;
  width: 100%;
}

.file-preview-item {
  position: relative;
  margin-bottom: 10px;
  padding: 0px 10px;
  background: none;
  border-radius: 6px;
  height: 100%;
  width: 100%;
  border-radius: 5px;
}

.preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.remove-btn {
  position: absolute;
  top: -3px;
  right: 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  background: #fe6565;
  border-radius: 100%;
  color: #fff;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rd-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  animation: pt-fade-in 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.rd-modal-box {
  width: 500px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  animation: rdFade 0.3s ease;
}

.rd-modal-header {
  background: #49969c42;
  padding: 15px;
  display: flex;
  justify-content: space-between;
}

.rd-device-head {
  display: flex;
  gap: 15px;
}

.rd-device-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding: 5px;
}

.rd-device-title h2 {
  color: #262f40;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 6px;
}

.rd-device-title p {
  color: #525252;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 400;
}

.rd-modal-body {
  padding: 15px;
}

.rd-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.rd-info-item label {
  padding: 0px 0px;
  color: #525252;
  font-size: 14px;
  font-weight: 400;
}

.rd-info-item p {
  color: #262f40;
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  padding: 5px 0px;
  margin-bottom: 0px;
}

@keyframes rdFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.rd-info-item {
  position: relative;
  padding-right: 20px;
}

.rd-info-item::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background: #e2e8f0;
}

.rd-info-item:nth-child(2n)::after {
  display: none;
}

.rd-device-icon img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.rd-modal-box {
  position: relative;
}

.rd-modal-box button {
  position: absolute;
  right: 8px;
  background: #fff;
  border: none;
  border-radius: 100%;
  top: 8px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pg-approved {
  margin-right: 30px;
}

.custom-dropdown-select small {
  font-size: 14px !important;
  color: #ffc107;
  padding-top: 10px;
}

.custom-dropdown-select__control {
  border: solid 1px #cdcfd3;
}

.custom-dropdown-select__option {
  display: flex !important;
  align-items: center !important;
  background: #cee2e5 !important;
  margin: 10px 0px !important;
  width: calc(100% - 20px) !important;
  margin: 7px auto !important;
  border-radius: 0px !important;
  color: #2f777f !important;
  font-size: 14px !important;
}

.custom-dropdown-select__option--is-selected {
  background: #4d9ca1 !important;
  color: #fff !important;
}

.custom-dropdown-select__option:hover {
  background-color: #49969C !important;
  color: #fff !important;
}

.filter-device {
  width: 100%;
}

.custom-dropdown-select__menu {
  /* position: relative; */
  z-index: 9999 !important;
}

.custom-dropdown-select__option input[type="checkbox"] {
  background: #71c1c5;
  width: 20px;
  height: 20px;
  appearance: none;
}

.custom-dropdown-select__option input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-dropdown-select__option input[type="checkbox"] {
  border-radius: 5px;
}

.custom-dropdown-select__option input[type="checkbox"]:checked {
  transform: scale(1.1);
}

.custom-dropdown-select__menu-list {
  z-index: 9999 !important;
  max-height: 200px;
  overflow-y: auto;
}

.custom-dropdown-select__menu-list::-webkit-scrollbar {
  width: 6px;
}

.custom-dropdown-select__menu-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.custom-dropdown-select__menu-list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.custom-dropdown-select__menu-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.custom-dropdown-select__single-value {
  font-size: 14px;
  color: #87888a;
}

.custom-dropdown-select__placeholder {
  font-size: 14px;
  color: #87888a;
}

.custom-dropdown-select__menu {
  overflow: hidden !important;
}

.document-text {
  min-height: 70px;
  width: calc(100% - 60px);
}

.upd-drag .upload-wrapper {
  width: 70%;
  padding: 15px;
  margin: 0 auto;
}

.upd-drag {
  margin-bottom: 30px;
}

.document-card.medical-license.pdf-converter .upload-wrapper {
  width: 70%;
}

.upload-preview-image {
  display: flex;
  justify-content: start;
  column-gap: 10px;
}

.preview-pdf {

  display: flex;
  flex-direction: column;
  font-size: 12px;
  row-gap: 10px;
}

.edit-btn {
  position: absolute;
  top: -3px;
  right: 44px;
  border: none;
  cursor: pointer;
  background: #49969C;
  border-radius: 100%;
  color: #fff;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}

.document-card.medical-license.pdf-converter .upload-preview-image {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0px 10px;
}

.document-card.medical-license.pdf-converter .upload-preview-image .upload-wrapper {
  width: calc(25% - 15px);
}

.upload-wrapper.gvt-id .edit-btn {
  right: 0px;
}

.upload-wrapper.medi-certif .edit-btn {
  right: 32px;
}

.upload-wrapper.medi-certif button.remove-btn {
  right: 0px;
}

.document-card.medical-license.pdf-converter .upload-preview-image::-webkit-scrollbar {
  width: 6px;
}

.document-card.medical-license.pdf-converter .upload-preview-image::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.document-card.medical-license.pdf-converter .upload-preview-image::-webkit-scrollbar-thumb {
  background: #49969c5c;
  border-radius: 10px;
}

.custom-dropdown-select__control {
  height: 43px;
  border-radius: 6px !important;
}

.custom-dropdown-select__control:focus {
  background: #ffffff;
  border: solid 1px #49969C;
  box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.custom-dropdown-select__control {
  min-height: 41px;
  max-height: 41px;
  overflow: auto;
}

.pagination .text-muted {
  font-size: 14px;
}

.button-action {
  display: flex;
  gap: 10px;
}

.body-wrist {
  display: flex;
  width: 100%;
  justify-content: space-between;
  column-gap: 10px;
}

.procedures-body {
  width: 100%;
}

.no-device-founddetails {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.no-device-founddetails p {
  margin-bottom: 0px;
  text-align: center;
}

.no-device-founddetails img {
  max-width: 300px;
}

.no-device-founddetails p {
  color: #6c7c93;
  margin-bottom: 0px;
  font-size: 16px;
}

.device-text-details h6 {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 6px;
}

.vedty-data p {
  padding: 0px 0px 20px;
  color: #525252;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
}

.vedty-data {
  border-bottom: solid 1px #dddddd94;
}

.clear-filters-btn {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-top: 29px;
}

.add-procedure .prcode-tabing div#nav-tab {
  margin-bottom: 0px;
}

table.submission-table th span img {
  max-width: 12px;
  margin-bottom: 2px;
  cursor: pointer;
}

.search-filters-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.search-procd {
  position: relative;
}

.search-procd input {
  background: #fff;
  border-radius: 6px;
  padding: 10px 10px;
  color: #525252;
  border: solid 1px #1f2b3e40;
  font-size: 14px;
}

.search-procd input:focus {
  background: #ffffff;
  border: solid 1px #49969C;
}

.search-procd span {
  position: absolute;
  top: 11px;
  right: 16px;
  color: #49969C;
  cursor: pointer;
}

.ftr-dash p {
  margin-bottom: 0px;
  color: #49969C;
  font-size: 12px;
  padding: 10px;
  text-align: center;
}

button.clear-ftil {
  background: #dbdbdb;
  color: #5a6069;
  border-color: #eff1f3;
}

.add-procedure.add-procedure-filters {
  column-gap: 10px;
}

.recvery-timeline {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 10px;
}

.bottom-arrow img {
  filter: invert(54%) sepia(20%) saturate(300%) hue-rotate(140deg) brightness(90%) contrast(90%);
}

.evidance-based {
  background: #fff;
  padding: 80px 0px;
}

.evidance-data {
  position: relative;
}

.stat-card-lite {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #64aab1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}

.stat-copy h4 {
  font-size: 35px;
  line-height: 50px;
  color: #273047;
  margin: 0 0 0px;
  font-weight: 300;
}

.stat-copy p {
  margin: 0;
  color: #525252;
  font-size: 16px;
  line-height: 30px;
}

.stat-divider {
  width: 2px;
  height: calc(100% - 20px);
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 12px;
  right: 0px;
}

.stat-circle img {
  max-width: 32px;
}

.share-needsbox span {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #F1F5F9;
  font-size: 55px;
  line-height: 100%;
}

.what-offer-card {
  background: #FFFFFF;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px;
  position: relative;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.offer-icon {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(73 150 156 / 28%);
  border-radius: 100%;
  margin: 0px 0px 45px;
}

.what-offer-card h6 {
  color: #262F40;
  font-size: 23px;
  font-weight: 300;
  line-height: 23px;
  margin-bottom: 13px;
}

.what-offer-card p {
  color: #525252;
  font-size: 14px;
  font-weight: 300;
  line-height: 19px;
}

.what-offer-card span {
  position: absolute;
  top: 0px;
  right: 0px;
}

section.smarter-way-faq {
  display: flex;
  align-items: center;
  column-gap: 63px;
}

.faq-media::before {
  content: "Patient / Doctor Placeholder";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6d7a8f;
  font-size: 30px;
  font-weight: 300;
  text-align: center;
  padding: 20px;
}

.faq-wrap h2 {
  font-size: 42px;
  font-weight: 300;
  line-height: 26px;
  color: #262F40;
  margin-bottom: 47px;
}

.faq-wrap h2 span {
  color: #49969C;
}

.faq-questions .accordion-item {
  border: none;
  border-bottom: 1px solid #d9d9d9;
  border-radius: 0 !important;
  background: none;
}

.faq-questions .accordion-button {
  padding: 23px 0;
  font-weight: 300;
  color: #000;
  background: none;
  box-shadow: none !important;
  font-size: 20px;
  border-bottom: solid 1px #000000;
  border-radius: 0px !important;
}

.faq-questions .accordion-button:not(.collapsed) {
  background: transparent;
  color: #111;
  border-bottom: none;
}

.faq-questions .accordion-body {
  padding: 0 0 20px;
  color: rgb(0 0 0 / 65%);
  line-height: 1.7;
  border-bottom: solid 1px #000;
  font-size: 18px;
}

.faq-wrap {
  padding-right: 53px;
}

.faq-wrap h2.accordion-header {
  margin-bottom: 0px;
}

.faq-img {
  width: 50%;
}

.faq-questions {
  width: 50%;
}

.faq-img img.img {
  max-width: 100%;
}

.faq-questions .accordion-button::after {
  background-image: url(../img/Vector-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  transform: rotate(0deg);
  margin-right: 10px;
}

.faq-questions .accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
}

.testimonial-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/testimonails-bg.png) no-repeat left center;
  background-size: 60%;
  z-index: 0;
  pointer-events: none;
  background-position: center;
}

.testimonial-section .title {
  font-size: 42px;
  font-weight: 300;
  color: #262F40;
  margin-bottom: 5px;
  line-height: 42px;
}

.title span {
  color: #49969C;
}

.testimonial-section .subtitle {
  color: #5C5C5C;
  margin-bottom: 70px;
  font-size: 20px;
  font-weight: 300;
}

.testimonial-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.testimonial-wrapper .swiper-wrapper {
  width: 100%;
}

.testimonial-card {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(77, 150, 153, 0.3)
}

.stars {
  color: #FF7F22;
  font-size: 16px;
  display: flex;
  justify-content: end;
  align-items: center;
  column-gap: 2px;
}

.testimonial-card h4 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 300;
  color: #262F40;
  margin-bottom: 0px;
}

.testimonial-card p {
  font-size: 16px;
  color: #5C5C5C;
  margin: 20px 0;
  line-height: 1.6;
}

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

.user span {
  font-size: 16px;
  color: #000;
  font-weight: 300;
}

.testimonial-card .user img {
  width: 63px;
  height: 63px;
  border-radius: 50%;
  border: solid 1px #49969C;
  object-fit: cover;
}

.user span {
  font-weight: 500;
}

.testimonial-card::after {
  right: 0px;
  content: "";
  position: absolute;
  bottom: -1px;
  right: 50px;
  width: 88px;
  height: 16px;
  background: transparent;
  border-radius: 0 0 10px 10px;
  border: 1px solid rgba(77, 150, 153, 0.3);
  border-top: none;
  transform: rotate(180deg);
}

.testimonial-section .nav-btns {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
}

.btn {
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.prev {
  background: rgb(76 150 153 / 70%);
  color: #fff;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 300;
}

.next {
  background: #4C9699;
  color: #fff;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 300;
}

button.btn.prev:hover {
  background: #49969C;
  color: #fff;
}

button.btn.next img.img-fluid {
  transform: rotate(180deg);
}

button.btn.next:hover {
  background: #49969C;
  color: #fff;
}

.feedback-user-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.provider-hero {
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  background: url(../img/providers-bg.png) no-repeat;
  background-size: cover;
  background-position: right;
  height: 700px;
}

.provider-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.provider-hero-content {
  position: relative;
  z-index: 2;
}

.provider-hero-content h1 {
  font-size: 52px;
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
  z-index: 9999;
}

.provider-hero-content h1 span {
  color: #49969C;
}

.provider-hero-content p {
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}

.provider-join-btn {
  display: inline-block;
  background: #49969C;
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease-in all;
}

.provider-join-btn:hover {
  color: #fff;
  transform: scale(1.05);
}

.provider-hero-img-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.provider-hero-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.provider-trusted {
  background: #f5f5f7;
  padding: 40px 0;
  position: relative;
}

.provider-trusted::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: url(../img/trusted-surgmatch.svg);
  bottom: 0px;
  left: 0px;
  contain-intrinsic-block-size: auto 100px;
  height: 100%;
  opacity: 1;
  pointer-events: none;
  right: 0px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.provider-trusted-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  flex-direction: column;
}

.provider-trusted-text {
  font-size: 45px;
  font-weight: 300;
  line-height: 50px;
  color: #262f40;
  margin-bottom: 12px;
  text-align: center;
}

.provider-trusted-text strong {
  color: #49969C;
}

.provider-trusted-avatars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.provider-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  margin-left: -20px;
}

.provider-trusted-avatars .provider-avatar:first-child {
  margin-left: 0;
}

.provider-avatar-count {
  background: #49969C;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  /* padding: 4px 10px; */
  border-radius: 20px;
  margin-left: -20px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #fff;
}

.provider-why {
  background: #fff;
  padding: 90px 0;
}

.provider-why-title {
  font-size: 38px;
  font-weight: 300;
  color: #1b2840;
  line-height: 1.2;
  margin-bottom: 36px;
}

.provider-why-title span {
  color: #49969C;
}

.provider-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.provider-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.provider-why-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #e6f7f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.provider-why-item h6 {
  font-size: 16px;
  font-weight: 300;
  color: #1b2840;
  margin: 0 0 6px;
}

.provider-why-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.provider-why-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}

.provider-why-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

.provider-exp-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #49969C;
  color: #fff;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(26, 74, 78, 0.35);
  z-index: 10;
}

.provider-exp-number {
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.provider-exp-label {
  font-size: 11px;
  text-align: center;
  line-height: 1.3;
  opacity: 0.85;
}

.provider-cta-banner {
  padding: 50px 0;
  background: url(../img/right-proc.png) no-repeat;
  background-size: cover;
  position: relative;
}

.provider-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.provider-cta-inner p {
  color: #fff;
  font-size: 35px;
  font-weight: 400;
  line-height: 46px;
  margin-bottom: 0px;
}

a.provider-cta-btn {
  background: #fff;
  border-radius: 36px;
  color: #49969C;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  padding: 10px 40px;
  border: solid 1px #49969C;
  transition: 0.3s ease-in all;
  text-decoration: none;
  white-space: nowrap;
}

a.provider-cta-btn:hover {
  background: #49969C;
  color: #fff;
  transform: scale(1.05);
}

.provider-testimonials {
  background: #f5f7f8;
  padding: 90px 0;
}

.provider-test-title {
  font-size: 40px;
  font-weight: 300;
  color: #1b2840;
  text-align: center;
  margin-bottom: 10px;
}

.provider-test-title span {
  color: #49969C;
}

.provider-test-sub {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}

.provider-test-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.provider-test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.provider-test-stars {
  color: #f5a623;
  font-size: 14px;
  display: flex;
  gap: 4px;
}

.provider-test-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.provider-test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.provider-test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e6f7f6;
}

.provider-test-author strong {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #1b2840;
}

.provider-test-author span {
  font-size: 12px;
  color: #49969C;
}

.surg-hero {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: url(../img/why-surgmatch-banner.png) no-repeat;
  height: 700px;
  object-fit: cover;
  background-position: center;
  background-size: cover;
}

.surg-hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.surg-blob-1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(121, 171, 185, .18) 0%, transparent 70%);
}

.surg-blob-2 {
  width: 340px;
  height: 340px;
  bottom: -60px;
  left: -60px;
  background: radial-gradient(circle, rgba(27, 111, 200, .1) 0%, transparent 70%);
}

.surg-blob-3 {
  width: 220px;
  height: 220px;
  top: 30%;
  right: 15%;
  background: radial-gradient(circle, rgba(121, 171, 185, .12) 0%, transparent 70%);
  animation: surgBlobFloat 7s ease-in-out infinite;
}

@keyframes surgBlobFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-18px)
  }
}

.surg-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(121, 171, 185, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(121, 171, 185, .08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.surg-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.surg-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.48px;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  background: rgb(73 150 156 / 54%);
  border: 1px solid #49969C;
  padding: 5.6px 16px;
  border-radius: 99px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.surg-hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.surg-hero-title {
  font-size: 52px;
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
  z-index: 9999;
}

.surg-hero-title em {
  color: #49969C;
  font-style: normal;
}

.surg-hero-sub {
  color: #fff;
  margin: 0px auto 20px;
  font-weight: 400;
  font-size: 16px;
}

.surg-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.surg-btn-primary {
  background: #fff;
  border-radius: 36px;
  color: #49969C;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding: 10px 40px;
  border: solid 1px #49969C;
  transition: 0.3s ease-in all;
}

.surg-btn-primary:hover {
  background: #49969C;
  color: #fff;
  transform: scale(1.05);

}

.surg-btn-outline {
  background: #49969C;
  border-radius: 36px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding: 10px 40px;
  border: solid 1px #49969C;
  transition: 0.3s ease-in all;
}

.surg-btn-outline:hover {
  background: #49969C;
  color: #fff;
  transform: scale(1.05);
}

.surg-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.surg-hero-illustration {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  position: relative;
  margin-top: 80px;
  margin-left: 6px;
}

.surg-hi-circle-outer {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: surgBlobFloat 8s ease-in-out infinite;
}

.surg-hi-circle-mid {
  width: 82%;
  height: 82%;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--surg-sh-md);
}

.surg-hi-center-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #76f0e7, #086f6b);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--surg-sh-accent);

}

.surg-hi-float {
  position: absolute;
  background: #fff;
  border-radius: var(--surg-r-md);
  padding: 8px 12px;
  box-shadow: var(--surg-sh-md);
  border: 1px solid var(--surg-gray-200);
  display: flex;
  align-items: center;
  gap: 9.6px;
  font-size: 13px;
  font-weight: 300;
  color: #262F40;
  white-space: nowrap;
  animation: surgBlobFloat 6s ease-in-out infinite;
  border-radius: 20px;
}

.surg-hi-float:nth-child(2) {
  top: 8%;
  left: -2%;
  animation-delay: 1s;
}

.surg-hi-float:nth-child(3) {
  top: 44%;
  right: -10%;
  animation-delay: 2.5s;
}

.surg-hi-float:nth-child(4) {
  bottom: 10%;
  left: 2%;
  animation-delay: 1.8s;
}

.surg-hif-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.6px;
}

.login-doctor {
  display: flex;
  align-items: center;
  background: #fdfdfd;
}

.login-img {
  width: 40%;
  position: relative;
}

.login-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(73, 150, 156, 0.0) 0%,
      /* top light */
      rgb(73 150 156 / 42%) 50%,
      /* mid */
      rgb(73 150 156 / 0%) 100%
      /* bottom dark */
    );
}

.login-img img {
  max-width: 100%;
  height: 100vh;
  object-fit: cover;
  background-position: center;
  object-position: center;
}

.login-account {
  width: 60%;
  padding: 40px;
  max-width: px;
  margin: 0 auto;
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* width: 100%; */
}

.login-account::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: url(../img/login-trusted-bg.png);
  bottom: 0px;
  left: 0px;
  contain-intrinsic-block-size: auto 100px;
  height: 100%;
  pointer-events: none;
  left: 0px;
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100%;
  top: 0px;
  background-size: cover;
  opacity: 0.6;
}

.login-box {
  width: 500px;
  border-radius: 20px;
  background: #fff;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  padding: 25px;
  z-index: 99;
  border: solid 1px #49969c52;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

p.dont-have {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  font-size: 14px;
}

p.dont-have::before,
p.dont-have::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.signup-doctor {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
}

.login-doctor.as-signup .login-box {
  width: 80%;
}

.patient-details-new {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 15px;
}

.patient-signup {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(47, 143, 157, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.patient-signup i {
  color: #2f8f9d;
  font-size: 22px;
}

.have-account {
  display: flex;
  align-items: center;
  column-gap: 20px;
  justify-content: center;
}

.have-account p {
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.have-account p span i {
  color: #49969C;
  font-size: 14px;
}

.whysurgmatch-banner {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: url(../img/why-surgmatch-banner-1.png) no-repeat;
  height: 700px;
  object-fit: cover;
  background-position: center;
  background-size: cover;
}

.stats-bar {
  background: #203656;
  padding: 28px 60px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.stat-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0px;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

h1.smarter-decsion {
  font-size: 52px;
  line-height: 56px;
}

.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(63, 189, 176, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #1d5973;
}

.stat-icon i {
  color: #3fbdb0;
  font-size: 17px;
}

.stat-num {
  font-size: 21px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #8fa8c4;
  font-weight: 300;
  margin-top: 2px;
}

.crictical-life {
  background: #F8F8F8;
  padding: 70px 0px;
}

.custom-card {
  box-shadow: 0px 2px 7px 0px #0000001a;
  background: #fff;
  border-radius: 20px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  position: relative;
  z-index: 9;
  height: 100%;
  height: 100%;
  transition: 0.3s ease-in all;
}

.custom-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease-in all;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 10px;
}

.card-icon.blue {
  background: #1d59732e;
  color: #49969C;
}

.card-icon.purple {
  background: #e5e9f4;
  color: #9696d2;
}

.card-icon.teal {
  background: rgba(0, 180, 160, 0.1);
  color: #49969C;
}

.card-icon img {
  width: 26px;
  height: 26px;
}

.custom-card h3 {
  color: #262f40;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  padding: 15px 0px;
  margin-bottom: 0px;
}

.custom-card p {
  color: #525252;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: start;
}

.info-section {
  padding: 70px 0;
  background: #fff;
  position: relative;
}

.info-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/why-surgmatch-better.png) no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 1;
  left: 0px;
  background-position: right;
}

.left-content .tag {
  background: #dbeff2;
  color: #49969C;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
}

.left-content h2 {
  font-size: 40px;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.left-content h2 span {
  color: #49969C;
}

.left-content .desc {
  color: #666;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  align-items: flex-start;
  box-shadow: 0px 2px 7px 0px #0000001a;
  transition: 0.3s ease-in all;
  border-bottom: solid 2px transparent;
  border-left: solid 2px #49969c;
  cursor: pointer;
}

.info-item:hover {
  border-bottom: solid 2px #49969C;
  transform: translateY(-10px);
}

.info-item .icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 180, 160, 0.1);
  color: #49969c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 21px;
}

.info-item h5 {
  color: #262f40;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  padding: 5px 0px;
  margin-bottom: 0px;
}

.info-item p {
  color: #525252;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: start;
}

.right-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 9;
}

.card-image img {
  max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-content p {
  margin-bottom: 20px;
  color: #333;
  font-weight: 500;
}

.right-card .btn-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.main-btn {
  background: #49969C;
  border: none;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
}

.dot-btn {
  width: 61px;
  height: 38px;
  border-radius: 35px;
  border: none;
  background: #e5f0f2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #49969c;
  font-size: 21px;
}

.reduce-anxiety {
  width: calc(100% - 65px);
}

.confidence-hero {
  background: linear-gradient(180deg, #dfebf000 0%, #eaf3f5 60%, #49969c47 100%);
  padding: 70px 0px;
}

.confidence-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.confidence-box h2 {
  font-size: 60px;
  font-weight: 300;
  line-height: 76px;
  color: #262F40;
  margin-bottom: 12px;
}

.confidence-box h2 span {
  color: #49969C;
}

.confidence-box p {
  padding: 0px 0px;
  color: #525252;
  font-size: 16px;
  font-weight: 400;
}

.confidence-buttons {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.confidence-buttons button {
  background: #49969C;
  border: none;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
}

.confidence-buttons button:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in all;
  background: #49969C !important;
  color: #fff;
}

.card-image {
  width: 100%;
}

button.works-dots {
  border: solid 1px #49969C;
  background: #fff;
  color: #49969c;
}

.login-icons {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(47, 143, 157, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.login-icons i {
  color: #2f8f9d;
  font-size: 22px;
}

.as-signup .submit {
  width: 300px;
  margin: 4px auto;
}

.as-signup .submit button {
  width: 100%;
}

.as-signup p.dont-have::before {
  width: 46%;
}

.as-signup p.dont-have::after {
  width: 46%;
}

.provider-signup-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.patient-details-new-journey a {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #49969C;
  margin-bottom: 0px;
  font-size: 14px;
  text-decoration: none;
}

.sm-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sm-tooltip::before,
.sm-tooltip::after {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 1080;
}

.sm-tooltip::before {
  content: attr(data-tooltip);
  background: #49969C;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(73, 150, 156, 0.25);
  letter-spacing: 0.2px;
  max-width: 240px;
}

.sm-tooltip::after {
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
}

.sm-tooltip-top::before {
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
}

.sm-tooltip-top::after {
  bottom: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border-top-color: #49969C;
}

.sm-tooltip-bottom::before {
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
}

.sm-tooltip-bottom::after {
  top: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  border-bottom-color: #49969C;
}

.sm-tooltip-left::before {
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%) translateX(4px);
}

.sm-tooltip-left::after {
  right: calc(100% + 3px);
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  border-left-color: #49969C;
}

.sm-tooltip-right::before {
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
}

.sm-tooltip-right::after {
  left: calc(100% + 3px);
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
  border-right-color: #49969C;
}

.sm-tooltip:hover::before,
.sm-tooltip:hover::after,
.sm-tooltip:focus-within::before,
.sm-tooltip:focus-within::after {
  opacity: 1;
  visibility: visible;
}

.sm-tooltip-top:hover::before,
.sm-tooltip-top:focus-within::before {
  transform: translateX(-50%) translateY(0);
}

.sm-tooltip-top:hover::after,
.sm-tooltip-top:focus-within::after {
  transform: translateX(-50%) translateY(0);
}

.sm-tooltip-bottom:hover::before,
.sm-tooltip-bottom:focus-within::before {
  transform: translateX(-50%) translateY(0);
}

.sm-tooltip-bottom:hover::after,
.sm-tooltip-bottom:focus-within::after {
  transform: translateX(-50%) translateY(0);
}

.sm-tooltip-left:hover::before,
.sm-tooltip-left:focus-within::before,
.sm-tooltip-left:hover::after,
.sm-tooltip-left:focus-within::after {
  transform: translateY(-50%) translateX(0);
}

.sm-tooltip-right:hover::before,
.sm-tooltip-right:focus-within::before,
.sm-tooltip-right:hover::after,
.sm-tooltip-right:focus-within::after {
  transform: translateY(-50%) translateX(0);
}

@media (hover: none) {

  .sm-tooltip::before,
  .sm-tooltip::after {
    display: none;
  }
}

.edit-btn.sm-tooltip,
.remove-btn.sm-tooltip,
.upload-doctor-profile.sm-tooltip,
.custom-modal-overlay button.close-btn.sm-tooltip,
.rd-modal-box button.close-btn.sm-tooltip {
  position: absolute;
}

.device-details:has(.sm-tooltip:hover),
.device-details:has(.sm-tooltip:focus-within),
.file-preview-item:has(.sm-tooltip:hover),
.file-preview-item:has(.sm-tooltip:focus-within),
.sidebar:has(.sm-tooltip:hover),
.sidebar:has(.sm-tooltip:focus-within),
.sidebar .menu-bar:has(.sm-tooltip:hover),
.sidebar .menu-bar:has(.sm-tooltip:focus-within),
.pt-shell:has(.pt-sidebar .sm-tooltip:hover),
.pt-shell:has(.pt-sidebar .sm-tooltip:focus-within),
.pt-shell__sidebar:has(.sm-tooltip:hover),
.pt-shell__sidebar:has(.sm-tooltip:focus-within),
.pt-sidebar:has(.sm-tooltip:hover),
.pt-sidebar:has(.sm-tooltip:focus-within),
.pt-sidebar__menu-bar:has(.sm-tooltip:hover),
.pt-sidebar__menu-bar:has(.sm-tooltip:focus-within) {
  overflow: visible;
}

.sm-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.sm-stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  /* box-shadow: 0px 2px 7px 0px #0000001a; */
  border: 1px solid #e5eeed;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in all;
}

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

.sm-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2F8F9D, #BDE6E2);
  border-radius: 4px 4px 0 0;
}

.sm-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sm-stat-icon.teal {
  background: #e8f7f6;
}

.sm-stat-icon.purple {
  background: #EDE9FE;
}

.sm-stat-icon.blue {
  background: #EFF6FF;
}

.sm-stat-label {
  font-size: 14px;
  color: #525252;
  font-weight: 500;
  margin-bottom: 2px;
}

.sm-stat-value {
  font-size: 18px;
  font-weight: 300;
  color: #262f40;
  line-height: 1.2;
}

.sm-stat-sub {
  font-size: 12px;
  color: #262f40;
  margin-top: 2px;
}

.sm-stat-pending {
  color: #f4a261;
  font-weight: 300;
  font-size: 18px;
}

.sm-stat-progress {
  height: 5px;
  background: #e5eeed;
  border-radius: 99px;
  margin-top: 6px;
  overflow: hidden;
}

.sm-stat-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2F8F9D, #BDE6E2);
  border-radius: 99px;
}

.sm-stat-arrow {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #e5eeed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #525252;
}

.sm-welcome-banner {
  position: relative;
  background: linear-gradient(120deg, #2F8F9D 0%, #3FA9A2 55%, #5BBFB6 100%);
  border-radius: 22px;
  padding: 28px 32px;
  margin-bottom: 22px;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 10px 28px -12px rgba(47, 143, 157, 0.45);
}

.sm-welcome-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sm-welcome-bubbles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.sm-welcome-bubbles .b1 {
  width: 220px;
  height: 220px;
  top: -90px;
  right: -60px;
  background: rgba(255, 255, 255, 0.10);
}

.sm-welcome-bubbles .b2 {
  width: 130px;
  height: 130px;
  bottom: -50px;
  right: 120px;
  background: rgba(255, 255, 255, 0.08);
}

.sm-welcome-bubbles .b3 {
  width: 70px;
  height: 70px;
  top: 40px;
  right: 240px;
  background: rgba(255, 255, 255, 0.10);
}

.sm-welcome-bubbles .b4 {
  width: 40px;
  height: 40px;
  top: 90px;
  right: 60px;
  background: rgba(255, 255, 255, 0.18);
}

.sm-welcome-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.sm-welcome-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.6px;
  padding: 5px 12px;
  border-radius: 99px;
  backdrop-filter: blur(6px);
}

.sm-welcome-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
}

.sm-welcome-title {
  margin: 14px 0 6px;
  font-size: 28px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
}

.sm-welcome-sub {
  margin: 0 0 0px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.sm-welcome-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sm-welcome-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.sm-welcome-btn.primary {
  background: #ffffff;
  color: #2F8F9D;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.15);
}

.sm-welcome-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.22);
}

.sm-stat-card.sm-stat-card-v2 {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 18px 18px 16px;
  cursor: pointer;
}

.sm-stat-card.sm-stat-card-v2 .sm-stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.sm-stat-card.sm-stat-card-v2 .sm-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.sm-stat-icon.orange {
  background: #fef0e6;
}

.sm-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 300;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.2px;
}

.sm-stat-badge svg {
  flex-shrink: 0;
}

.sm-stat-badge.ok {
  background: #e6f7ee;
  color: #10B981;
}

.sm-stat-badge.warn {
  background: #fff1e3;
  color: #F4A261;
}

.sm-stat-badge.muted {
  background: #f1f3f5;
  color: #525252;
}

.sm-stat-card.sm-stat-card-v2 .sm-stat-label {
  font-size: 13px;
  color: #525252;
  font-weight: 500;
  margin: 6px 0 0;
}

.sm-stat-value-lg {
  font-size: 24px;
  font-weight: 300;
  color: #1f2a37;
  line-height: 1.1;
  margin-top: 2px;
}

.sm-stat-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}

.sm-stat-link {
  font-size: 12px;
  font-weight: 500;
  color: #2F8F9D;
  white-space: nowrap;
}

.sm-stat-card.sm-stat-card-v2:hover .sm-stat-link {
  text-decoration: underline;
}

.sm-mini-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
  width: 70px;
  opacity: 0.85;
}

.sm-mini-bars span {
  flex: 1;
  border-radius: 2px;
  min-height: 4px;
  transition: opacity 0.25s ease;
}

.sm-stat-card.sm-stat-card-v2:hover .sm-mini-bars {
  opacity: 1;
}

.sm-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 320px;
  gap: 18px;
}

.sm-section-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 22px;
  /* box-shadow: 0px 2px 7px 0px #0000001a; */
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in all;
  border: 1px solid #e5eeed;
}

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

.sm-section-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2F8F9D, #BDE6E2);
  border-radius: 4px 4px 0 0;
}

.sm-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.sm-section-title {
  font-size: 18px;
  font-weight: 300;
  color: #262f40;
}

.sm-section-sub {
  font-size: 12px;
  color: #525252;
  margin-bottom: 18px;
}

.sm-qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sm-qa-item {
  background: #fff;
  border: 1px solid #e5eeed;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.sm-qa-item:hover {
  background: #E6F4F3;
  border-color: #BDE6E2;
  box-shadow: 0 4px 12px rgba(47, 143, 157, 0.08);
}

.sm-qa-item.full {
  grid-column: 1 / -1;
}

.sm-qa-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sm-qa-icon.green-bg {
  background: #DCFCE7;
}

.sm-qa-icon.purple-bg {
  background: #EDE9FE;
}

.sm-qa-icon.orange-bg {
  background: #FEF3C7;
}

.sm-qa-icon.blue-bg {
  background: #EFF6FF;
}

.sm-qa-icon.teal-bg {
  background: #E6F4F3;
}

.sm-qa-label {
  font-size: 15px;
  font-weight: 300;
  color: #262f40;
}

.sm-qa-desc {
  font-size: 11px;
  color: #525252;
  margin-top: 2px;
}

.sm-qa-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #525252;
}

span.sm-qa-arrow svg {
  height: 20px;
  width: 20px;
}

.sm-activity-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sm-activity-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #E5E7EB;
  position: relative;
}

.sm-activity-item:last-child {
  border-bottom: none;
}

.sm-activity-item::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 52px;
  bottom: -1px;
  width: 1.5px;
  background: #E5E7EB;
}

.sm-activity-item:last-child::before {
  display: none;
}

.sm-act-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  background: #e8f7f6;
}

.sm-qa-label {
  font-size: 15px;
  font-weight: 300;
  color: #262f40;
}

.sm-act-sub {
  font-size: 12px;
  color: #525252;
  margin-top: 2px;
}

.sm-act-time {
  font-size: 11px;
  color: #525252;
  margin-left: auto;
  flex-shrink: 0;
}

.sm-view-all-btn {
  width: 100%;
  margin-top: 16px;
  padding: 11px;
  background: transparent;
  border: 1.5px solid #2F8F9D;
  border-radius: 100px;
  color: #2F8F9D;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
}

.sm-view-all-btn:hover {
  background: #49969C;
  color: #fff;
}

.sm-completion-pct {
  font-size: 15px;
  font-weight: 300;
  color: #2F8F9D;
  margin-left: auto;
}

.sm-comp-bar {
  height: 7px;
  background: #E5E7EB;
  border-radius: 99px;
  margin: 12px 0 6px;
  overflow: hidden;
}

.sm-comp-bar-fill {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, #2F8F9D, #BDE6E2);
  border-radius: 99px;
  transition: width 1s cubic-bezier(.4, 0, .2, 1);
}

.sm-comp-sub {
  font-size: 12px;
  color: #525252;
  margin-bottom: 16px;
}

.sm-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.sm-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.sm-check-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sm-check-circle.done {
  background: #22C55E;
}

.sm-check-circle.pending-c {
  background: #FEF3C7;
  border: 2px solid #F59E0B;
}

.sm-check-circle.empty-c {
  background: transparent;
  border: 2px solid #E5E7EB;
}

.sm-clipboard-deco {
  display: flex;
  justify-content: flex-end;
  margin-top: 0px;
  margin-bottom: 8px;
}

.sm-tips-card {
  background: #E6F4F3;
  border-radius: 8px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}

.sm-tips-card:hover {
  background: #BDE6E2;
}

.sm-tips-icon {
  width: 36px;
  height: 36px;
  background: #2F8F9D;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sm-tips-title {
  font-size: 15px;
  font-weight: 300;
  color: #262f40;
}

.sm-tips-sub {
  font-size: 11px;
  color: #525252;
  margin-top: 2px;
}

.sm-tips-arrow {
  margin-left: auto;
  color: #525252;
  flex-shrink: 0;
}

.blogs-section {
  background: #fff;
  padding: 80px 0px;
  position: relative;
  overflow: hidden;
}

.blogs-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/login-trusted-bg.png);
  background-size: cover;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.blogs-section>* {
  position: relative;
  z-index: 1;
}

.blogs-section .howtosurg-works p {
  margin-bottom: 0px;
  padding-bottom: 47px;
}

.blog-card {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px);
}

.blog-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.blog-card--healthcare::after {
  background: linear-gradient(90deg, #49969C, #0D9488);
}

.blog-card--iot::after {
  background: linear-gradient(90deg, #2563EB, #1a2f5a);
}

.blog-card--fintech::after {
  background: linear-gradient(90deg, #8B5CF6, #7C3AED);
}

.blog-card-img-wrapper {
  position: relative;
  width: 100%;
  /* Responsive band; image always fills via absolute + object-fit */
  height: clamp(200px, 30vw, 240px);
  height: 150px;
  overflow: hidden;
  background: #f1f5f5;
  flex-shrink: 0;
}

.blog-card-img-wrapper img.blog-card-thumb,
.blog-card-img-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img-wrapper img.blog-card-thumb,
.blog-card:hover .blog-card-img-wrapper img {
  transform: scale(1.05);
}

.blog-card-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 6px 14px;
  color: #fff;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.blog-card--healthcare .blog-card-badge {
  background: #49969c;
}

.blog-card--iot .blog-card-badge {
  background: #1a2f5a;
}

.blog-card--fintech .blog-card-badge {
  background: #7C3AED;
}

.blog-card-icon {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.blog-card--healthcare .blog-card-icon {
  background: #49969C;
}

.blog-card--iot .blog-card-icon {
  background: #1a2f5a;
}

.blog-card--fintech .blog-card-icon {
  background: #8B5CF6;
}

.blog-card-body {
  padding: 20px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.blog-card-date {
  font-size: 13px;
  color: #525252;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-card-date i {
  font-size: 13px;
}

.blog-card--healthcare .blog-card-date i {
  color: #49969C;
}

.blog-card--iot .blog-card-date i {
  color: #2563EB;
}

.blog-card--fintech .blog-card-date i {
  color: #8B5CF6;
}

.blog-card-author {
  font-size: 13px;
  font-weight: 400;
  color: #49969c;
}

.blog-card-title {
  color: #1f2937;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  margin-bottom: 12px;
}

.blog-card-excerpt {
  color: #525252;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 16px;
  flex: 1;
}

.blog-read-more {
  font-weight: 300;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: gap 0.2s ease, color 0.2s ease;
  align-self: flex-start;
}

.blog-read-more i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.blog-card--healthcare .blog-read-more {
  color: #0D9488;
}

.blog-card--healthcare .blog-read-more:hover {
  color: #49969C;
  gap: 12px;
}

.blog-card--iot .blog-read-more {
  color: #1a2f5a;
}

.blog-card--iot .blog-read-more:hover {
  color: #2563EB;
  gap: 12px;
}

.blog-card--fintech .blog-read-more {
  color: #7C3AED;
}

.blog-card--fintech .blog-read-more:hover {
  color: #8B5CF6;
  gap: 12px;
}

.blogs-section.all-blogs-page {
  padding: 120px 0px 90px;
}

.blogs-section .nedts {
  margin-bottom: 28px;
}

.blog-detail-page {
  background: #ffffff;
  padding-top: 0;
  padding-bottom: 80px;
}

.blog-detail-page .blog-detail-body {
  padding-top: 32px;
}

.blog-detail-page .blog-section+.blog-section {
  margin-top: 4px;
}

.blog-detail-page .blog-section--hero {
  margin-bottom: 0;
}

.blog-detail-page .blog-side-card+.blog-side-card {
  margin-top: 0;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #49969C;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(73, 150, 156, 0.08);
  transition: background 0.2s ease, gap 0.2s ease, color 0.2s ease;
}

.blog-back-link:hover {
  background: rgba(73, 150, 156, 0.16);
  color: #0d9488;
  gap: 12px;
}

.blog-back-link i {
  font-size: 12px;
}

.blog-toc-list .blog-toc-item button {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 14px 0;
  text-align: left;
  cursor: pointer;
  color: #0f172a;
  transition: color 0.18s ease;
}

.blog-toc-list .blog-toc-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  background: #ffffff;
  transition: border-color 0.18s ease, color 0.18s ease,
    background 0.18s ease;
}

.blog-toc-list .blog-toc-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1px;
}

.blog-toc-list .blog-toc-item button:hover .blog-toc-text,
.blog-toc-list .blog-toc-item.is-active button .blog-toc-text {
  color: var(--toc-accent, #0f7a82);
}

.blog-toc-list .blog-toc-item button:hover .blog-toc-num,
.blog-toc-list .blog-toc-item.is-active button .blog-toc-num {
  border-color: var(--toc-accent, #0f7a82);
  color: var(--toc-accent, #0f7a82);
  background: rgba(73, 150, 156, 0.08);
}

.blog-toc-list .blog-toc-item:focus-within button .blog-toc-num {
  outline: 2px solid rgba(73, 150, 156, 0.35);
  outline-offset: 2px;
}

.blog-share-card .blog-share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease,
    color 0.18s ease, box-shadow 0.18s ease;
}

.blog-share-btn:hover {
  background: #49969C !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(73, 150, 156, 0.25);
}

.blog-share-btn i {
  font-size: 15px;
  line-height: 1;
}

@keyframes sm-shimmer {
  0% {
    background-position: -480px 0;
  }

  100% {
    background-position: 480px 0;
  }
}

@keyframes sm-fadein {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sm-fadein {
  animation: sm-fadein 0.35s ease-out both;
}

.sm-skel {
  display: block;
  background: linear-gradient(90deg,
      #eef5f6 0%,
      rgba(73, 150, 156, 0.18) 50%,
      #eef5f6 100%);
  background-size: 480px 100%;
  background-repeat: no-repeat;
  animation: sm-shimmer 1.4s infinite linear;
  border-radius: 6px;
}

.sm-skel--circle {
  border-radius: 50%;
}

.sm-skel--pulse {
  animation: sm-shimmer 1.6s infinite linear,
    sm-pulse 2s infinite ease-in-out;
}

@keyframes sm-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.blog-card-skeleton {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card-skeleton::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #49969C, #0D9488);
  opacity: 0.5;
}

.blog-card-skeleton__img {
  width: 100%;
  min-height: 200px;
  display: block;
}

.blog-card-skeleton__body {
  padding: 20px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-detail-skeleton__hero {
  background: linear-gradient(135deg, #0a1f44 0%, #0f2a5e 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.blog-detail-skeleton__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 200px at 20% 20%, rgba(73, 150, 156, 0.18), transparent 70%),
    radial-gradient(500px 200px at 80% 80%, rgba(73, 150, 156, 0.12), transparent 70%);
  pointer-events: none;
}

.blog-detail-skeleton__hero .sm-skel {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(73, 150, 156, 0.45) 50%,
      rgba(255, 255, 255, 0.06) 100%);
  background-size: 480px 100%;
  background-repeat: no-repeat;
  animation: sm-shimmer 1.4s infinite linear;
}

.blog-detail-skeleton__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 16px;
}

.blog-detail-skeleton__side {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
}

.chat-shell {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  margin-top: 0;
  background: #f4f8f9;
  position: relative;
  overflow: hidden;
}

.chat-shell--loading {
  align-items: center;
  justify-content: center;
}

.chat-shell__loader {
  color: #49969c;
  font-weight: 500;
}

.chat-sidebar {
  width: 290px;
  flex-shrink: 0;
  background: #f7f7f8;
  color: #0d2e43;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e7eaec;
  transition: width 0.25s ease, transform 0.25s ease, opacity 0.2s ease;
  z-index: 30;
  overflow: hidden;
}

.chat-sidebar.is-collapsed {
  width: 60px;
}

.chat-sidebar.is-collapsed .chat-sidebar__brand-logo,
.chat-sidebar.is-collapsed .chat-sidebar__nav-item span,
.chat-sidebar.is-collapsed .chat-sidebar__nav-item-arrow,
.chat-sidebar.is-collapsed .chat-sidebar__search,
.chat-sidebar.is-collapsed .chat-sidebar__context,
.chat-sidebar.is-collapsed .chat-sidebar__history,
.chat-sidebar.is-collapsed .chat-sidebar__action span {
  display: none;
}

.chat-sidebar.is-collapsed .chat-sidebar__top {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 8px 8px;
  gap: 4px;
}

.chat-sidebar.is-collapsed .chat-sidebar__brand {
  margin: 0;
  padding: 0;
}

.chat-sidebar.is-collapsed .chat-sidebar__nav {
  padding: 8px 6px;
  align-items: center;
}

.chat-sidebar.is-collapsed .chat-sidebar__nav-item {
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  border-radius: 10px;
}

.chat-sidebar.is-collapsed .chat-sidebar__nav-item i {
  font-size: 18px;
  margin: 0;
}

.chat-sidebar.is-collapsed .chat-sidebar__footer {
  padding: 10px 6px;
  align-items: center;
}

.chat-sidebar.is-collapsed .chat-sidebar__action {
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  border-radius: 10px;
}

.chat-sidebar.is-collapsed .chat-sidebar__action i {
  margin: 0;
  font-size: 17px;
}

.chat-sidebar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 14px 8px;
}

.chat-sidebar__brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  text-decoration: none;
  border-radius: 8px;
  padding: 4px 6px;
  margin-left: -6px;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.chat-sidebar__brand:hover {
  opacity: 0.85;
}

.chat-sidebar__brand-logo {
  height: 36px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.chat-sidebar__collapse {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #6b7c83;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.chat-sidebar__collapse:hover {
  background: rgba(73, 150, 156, 0.12);
  color: #0d2e43;
}

.chat-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 8px 4px;
}

.chat-sidebar__nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #0d2e43;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s ease, color 0.18s ease;
}

.chat-sidebar__nav-item i {
  font-size: 17px;
  color: #49969c;
  flex-shrink: 0;
  transition: color 0.18s ease;
}

.chat-sidebar__nav-item:hover {
  background: rgba(73, 150, 156, 0.10);
  color: #0d2e43;
}

.chat-sidebar__nav-item:hover i {
  color: #2f7177;
}

.chat-sidebar__nav-item.is-active {
  background: rgba(73, 150, 156, 0.16);
  color: #0d2e43;
}

.chat-sidebar__nav-item.is-active i {
  color: #2f7177;
}

.chat-sidebar__nav-item span {
  flex: 1;
}

.chat-sidebar__nav-item-arrow {
  font-size: 14px !important;
  opacity: 0.6;
}

.chat-sidebar__search {
  margin: 6px 12px 4px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e7eaec;
  border-radius: 10px;
}

.chat-sidebar__search i {
  font-size: 15px;
  color: #6b7c83;
}

.chat-sidebar__search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #0d2e43;
  font-size: 13px;
}

.chat-sidebar__search input::placeholder {
  color: #9aa9af;
}

.chat-sidebar__context {
  margin: 8px 12px 4px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e7eaec;
}

.chat-sidebar__context-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2f7177;
  margin-bottom: 6px;
  font-weight: 300;
}

.chat-sidebar__context-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chat-sidebar__context-body strong {
  font-size: 14px;
  font-weight: 300;
  color: #0d2e43;
}

.chat-sidebar__context-body span {
  font-size: 12px;
  color: #6b7c83;
}

.chat-sidebar__history {
  flex: 1;
  overflow-y: auto;
  padding: 14px 8px 8px;
}

.chat-sidebar__history::-webkit-scrollbar {
  width: 6px;
}

.chat-sidebar__history::-webkit-scrollbar-thumb {
  background: #d6dbde;
  border-radius: 3px;
}

.chat-history-section-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #273047;
  padding: 6px 14px 8px;
  font-weight: 300;
}

.chat-history-group+.chat-history-group {
  margin-top: 12px;
}

.chat-history-group__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a979c;
  padding: 8px 14px 4px;
  font-weight: 500;
}

.chat-history-group__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chat-history-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #2c4453;
  transition: background 0.18s ease, color 0.18s ease;
  position: relative;
  margin-bottom: 1px;
}

.chat-history-item:hover {
  background: rgba(73, 150, 156, 0.10);
  color: #0d2e43;
}

.chat-history-item.is-active {
  background: rgba(73, 150, 156, 0.16);
  color: #0d2e43;
}

.chat-history-item__title {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
}

.chat-history-item.is-active .chat-history-item__title {
  font-weight: 500;
}

.chat-history-item__delete {
  background: transparent;
  border: none;
  color: #6b7c83;
  font-size: 14px;
  padding: 2px 4px;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.chat-history-item:hover .chat-history-item__delete,
.chat-history-item.is-active .chat-history-item__delete {
  opacity: 1;
}

.chat-history-item__delete:hover {
  color: #d24747;
  background: rgba(210, 71, 71, 0.10);
}

.chat-sidebar__empty {
  padding: 24px 12px;
  font-size: 13px;
  color: #8a979c;
  text-align: center;
}

.chat-sidebar__footer {
  border-top: 1px solid #e7eaec;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chat-sidebar__action {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #2c4453;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.chat-sidebar__action:hover {
  background: rgba(73, 150, 156, 0.12);
  color: #0d2e43;
}

.chat-sidebar__action i {
  font-size: 15px;
  color: #6b7c83;
}

.chat-sidebar__action:hover i {
  color: #2f7177;
}

.chat-sidebar__action--danger:hover {
  background: rgba(210, 71, 71, 0.10);
  color: #d24747;
}

.chat-sidebar__action--danger:hover i {
  color: #d24747;
}

.chat-sidebar__toggle {
  display: none;
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 40;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(73, 150, 156, 0.4);
  background: #ffffff;
  color: #0d2e43;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(13, 46, 67, 0.12);
}

.chat-sidebar__overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(13, 46, 67, 0.55);
  z-index: 25;
  backdrop-filter: blur(2px);
}

.chat-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 100% 0%, rgba(33, 211, 241, 0.07), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(73, 150, 156, 0.06), transparent 40%),
    #ffffff;
  min-width: 0;
  position: relative;
}

.chat-main__messages {
  flex: 1;
  overflow-y: auto;
  padding: 36px 24px 28px;
  background: transparent;
}

.chat-main__messages::-webkit-scrollbar {
  width: 8px;
}

.chat-main__messages::-webkit-scrollbar-thumb {
  background: rgba(73, 150, 156, 0.35);
  border-radius: 4px;
}

.chat-msg {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 auto 22px;
  max-width: 880px;
}

.chat-msg--user {
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.chat-msg__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  flex-shrink: 0;
  color: #fff;
  font-size: 14px;
}

.chat-msg__avatar--bot {
  background: #e3f1ef;
  border: 1px solid #c6e1dd;
  padding: 4px;
  overflow: hidden;
}

.chat-msg__avatar--bot img {
  object-fit: contain;
  filter: none;
  max-width: 12px;
}

.chat-msg__avatar--user {
  background: #49969c;
  color: #fff;
  font-size: 17px;
}

.chat-msg__avatar--user i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chat-msg__bubble {
  background: transparent;
  padding: 0;
  max-width: 78%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg--user .chat-msg__bubble {
  align-items: flex-end;
}

.chat-msg__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #0d2e43;
  background: #e3f1ef;
  border: none;
  padding: 14px 18px;
  border-radius: 16px;
  border-top-left-radius: 4px;
  white-space: pre-wrap;
  word-break: break-word;
}

.chat-msg--user .chat-msg__text {
  background: #3a8b91;
  color: #ffffff;
  border: none;
  border-radius: 16px;
  border-top-right-radius: 4px;
  padding: 14px 18px;
}

.chat-msg__text--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  border-left: 3px solid #dc2626;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.chat-msg__error-icon {
  font-size: 16px;
  color: #dc2626;
  flex-shrink: 0;
  margin-top: 2px;
}

.chat-msg__bubble--typing {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  padding: 16px 18px;
  background: #e3f1ef;
  border: none;
  border-radius: 16px;
  border-top-left-radius: 4px;
  width: auto;
  max-width: max-content;
}

.chat-typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #49969c;
  display: inline-block;
  animation: chat-typing 1.2s infinite ease-in-out;
}

.chat-typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.chat-typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes chat-typing {

  0%,
  80%,
  100% {
    transform: scale(0.7);
    opacity: 0.5;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.chat-msg--user .chat-options {
  background: #3a8b91;
  border: none;
  padding: 12px 14px;
  border-radius: 16px;
  border-top-right-radius: 4px;
}

.chat-option {
  background: #ffffff;
  color: #49969C;
  border: 1px solid #49969C;
  border-radius: 36px;
  padding: 7px 22px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s ease-in all;
  white-space: nowrap;
}

.chat-option:hover:not(:disabled) {
  background: #49969C;
  border-color: #49969C;
  color: #ffffff;
  transform: scale(1.05);
}

.chat-option.is-selected {
  background: #49969C;
  border-color: #49969C;
  color: #ffffff;
}

.chat-option.is-selected:hover:not(:disabled) {
  background: #3F8389;
  border-color: #3F8389;
  color: #ffffff;
  transform: scale(1.05);
}

.chat-option.is-locked,
.chat-option:disabled {
  cursor: default;
  opacity: 0.92;
  transform: none;
}

.chat-msg--user .chat-option {
  cursor: default;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 500;
}

.chat-msg--user .chat-option:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  transform: none;
  box-shadow: none;
}

.chat-option-submit {
  background: #49969C;
  color: #ffffff;
  border: 1px solid #49969C;
  border-radius: 36px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s ease-in all;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chat-option-submit::after {
  content: "Ã¢â€ â€™";
  font-size: 15px;
  line-height: 1;
}

.chat-option-submit:hover:not(:disabled) {
  background: #3F8389;
  border-color: #3F8389;
  color: #ffffff;
  transform: scale(1.05);
}

.chat-option-submit:disabled {
  background: #ffffff;
  color: #9bb3b6;
  border: 1px dashed rgba(73, 150, 156, 0.4);
  cursor: not-allowed;
}

.chat-composer {
  padding: 18px 24px 22px;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  flex-shrink: 0;
}

.chat-composer__wrapper {
  position: relative;
  flex: 1;
  max-width: 880px;
  display: flex;
  align-items: center;
}

.chat-composer__input {
  width: 100%;
  border: 1.5px solid rgba(73, 150, 156, 0.3);
  border-radius: 999px;
  padding: 14px 60px 14px 22px;
  font-size: 15px;
  outline: none;
  background: #ffffff;
  color: #0d2e43;
  box-shadow: 0 2px 10px rgba(13, 46, 67, 0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.chat-composer__input::placeholder {
  color: #9bb3b6;
}

.chat-composer__input:focus {
  border-color: #49969c;
  box-shadow: 0 0 0 4px rgba(73, 150, 156, 0.15),
    0 4px 14px rgba(73, 150, 156, 0.12);
}

.chat-composer__send {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #49969c;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.chat-composer__send:hover:not(:disabled) {
  background: #3f8489;
}

.chat-composer__send:disabled {
  background: #d6e3e5;
  color: #ffffff;
  cursor: not-allowed;
}

.chat-msg--plan .chat-msg__bubble {
  max-width: 100%;
  width: 100%;
}

.chat-care-plan {
  background: #ffffff;
  border: 1px solid rgba(73, 150, 156, 0.22);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 28px rgba(13, 46, 67, 0.08);
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.chat-care-plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #49969c 0%, #233d70 100%);
}

.chat-care-plan__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.chat-care-plan__badge {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, #49969c, #2f7177);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(73, 150, 156, 0.32);
}

.chat-care-plan__heading {
  flex: 1;
  min-width: 0;
}

.chat-care-plan__title {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  color: #0d2e43;
  line-height: 1.3;
}

.chat-care-plan__subtitle {
  margin: 4px 0 0;
  font-size: 13px;
  color: #6b7c83;
  line-height: 1.4;
}

.chat-care-plan__status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(76, 175, 131, 0.14);
  color: #2e8a5d;
  font-size: 11px;
  font-weight: 300;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.chat-care-plan__status i {
  font-size: 13px;
}

.chat-care-plan__patient {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #f4faf9;
  border: 1px solid rgba(73, 150, 156, 0.15);
  border-radius: 12px;
}

.chat-care-plan__patient-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid rgba(73, 150, 156, 0.3);
  flex-shrink: 0;
}

.chat-care-plan__patient-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.chat-care-plan__patient-meta strong {
  font-size: 14px;
  font-weight: 300;
  color: #0d2e43;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-care-plan__patient-meta span {
  font-size: 12px;
  color: #6b7c83;
}

.chat-care-plan__focus-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: rgba(73, 150, 156, 0.14);
  color: #2f7177;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 300;
  text-transform: capitalize;
  flex-shrink: 0;
}

.chat-care-plan__focus-pill i {
  font-size: 13px;
}

.chat-care-plan__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.chat-care-plan__section {
  background: #fafcfc;
  border: 1px solid #ecf1f2;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-care-plan__section--full {
  grid-column: 1 / -1;
}

.chat-care-plan__section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7c83;
  font-weight: 300;
}

.chat-care-plan__section-label i {
  color: #49969c;
  font-size: 14px;
}

.chat-care-plan__value {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #0d2e43;
}

.chat-care-plan__pain {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chat-care-plan__pain::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b8c5cb;
  flex-shrink: 0;
}

.chat-care-plan__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chat-care-plan__chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  background: #ffffff;
  border: 1px solid rgba(73, 150, 156, 0.3);
  color: #0d2e43;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.chat-care-plan__chip.is-muted {
  background: transparent;
  border-style: dashed;
  border-color: rgba(155, 179, 182, 0.6);
  color: #9aa9af;
  font-style: italic;
}

.chat-care-plan__steps {
  background: linear-gradient(135deg, rgba(73, 150, 156, 0.08), rgba(35, 61, 112, 0.05));
  border: 1px solid rgba(73, 150, 156, 0.16);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-care-plan__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-care-plan__steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #0d2e43;
  line-height: 1.45;
}

.chat-care-plan__steps-list li i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #49969c;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.chat-care-plan__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #49969C;
  color: #ffffff;
  border: 1px solid #49969C;
  border-radius: 36px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s ease-in all;
}

.chat-care-plan__cta:hover {
  background: #3F8389;
  border-color: #3F8389;
  color: #ffffff;
  transform: scale(1.05);
}

.chat-care-plan__cta i {
  font-size: 15px;
  line-height: 1;
}

.sysmt-img .bodyimge {
  transition: filter 0.35s ease;
}

.sysmt-img .bodyimge.is-skin-highlight {
  filter:
    drop-shadow(0 0 6px rgba(73, 150, 156, 0.85)) drop-shadow(0 0 14px rgba(73, 150, 156, 0.55)) drop-shadow(0 0 26px rgba(73, 150, 156, 0.35));
  animation: bodySkinGlowPulse 1.8s ease-in-out infinite;
}

@keyframes bodySkinGlowPulse {

  0%,
  100% {
    filter:
      drop-shadow(0 0 6px rgba(73, 150, 156, 0.80)) drop-shadow(0 0 14px rgba(73, 150, 156, 0.50)) drop-shadow(0 0 24px rgba(73, 150, 156, 0.30));
  }

  50% {
    filter:
      drop-shadow(0 0 10px rgba(73, 150, 156, 1)) drop-shadow(0 0 22px rgba(73, 150, 156, 0.70)) drop-shadow(0 0 34px rgba(73, 150, 156, 0.45));
  }
}

@media (hover: none) {
  .sysmt-img .bodyimge.is-skin-highlight {
    animation: none;
  }
}

.body-hotspot.is-skin-area {
  z-index: 5;
  border-radius: 0;
  background: transparent !important;
  cursor: pointer;
}

.body-hotspot.is-skin-area::before,
.body-hotspot.is-skin-area::after {
  display: none !important;
}

.body-hotspot.is-skin-area .hotspot-label {
  top: -8px;
  transform: translate(-50%, -100%);
}

.pt-shell {
  background: #F4F9F9;
  height: 100vh;
  overflow: hidden;
  color: #262f40;
  position: relative;
}

.pt-shell__sidebar {
  position: fixed;
  top: 20px;
  left: 20px;
  bottom: 20px;
  width: 250px;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 0 40px #0000000d;
  overflow: hidden;
  z-index: 100;
  transition: 0.5s;
}

.pt-shell.is-collapsed .pt-shell__sidebar {
  width: 80px;
}

.pt-shell__main {
  position: absolute;
  top: 0;
  left: 280px;
  width: calc(100% - 300px);
  margin: 20px;
  min-height: 95vh;
  max-height: 95vh;
  padding: 0 20px 0 10px;
  transition: 0.5s;
  overflow-y: auto;
}

.pt-shell__main::-webkit-scrollbar {
  width: 8px;
}

.pt-shell__main::-webkit-scrollbar-track {
  background: transparent;
}

.pt-shell__main::-webkit-scrollbar-thumb {
  background: #e5eeed;
  border-radius: 4px;
}

.pt-shell__main::-webkit-scrollbar-thumb:hover {
  background: #B8C8CB;
}

.pt-shell.is-collapsed .pt-shell__main {
  left: 100px;
  width: calc(100% - 120px);
}

.pt-shell__content {
  padding: 0;
  width: 100%;
  margin: 24px 0 0;
  min-height: calc(100vh - 228px);
}

.pt-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 40px #0000000d;
  gap: 16px;
}

.pt-topbar__title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.pt-topbar__title h2 {
  color: #262f40;
  font-size: 25px;
  margin: 0 0 5px;
  font-weight: 400;
  white-space: nowrap;
  line-height: 1.1;
  font-family: inherit;
}

.pt-topbar__title p {
  color: #6c7c93;
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  font-family: inherit;
}

.pt-topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pt-topbar__icon-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #E6F4F3;
  border: none;
  color: #49969C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all .25s ease;
  position: relative;
  text-decoration: none;
}

.pt-topbar__icon-btn:hover {
  background: #49969C;
  color: #FFFFFF;
}

.pt-topbar__icon-btn .pt-topbar__badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #ef4444;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 300;
  border-radius: 999px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid #FFFFFF;
}

.pt-topbar__user {
  position: relative;
}

.pt-topbar__user-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  transition: all .25s ease;
}

.pt-topbar__user-btn--avatar-only {
  padding: 4px;
  gap: 0;
}

.pt-topbar__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: #E8F7F6;
  color: #49969C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  border: 1px solid #e5eeed;
  box-shadow: none;
}

.pt-topbar__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pt-topbar__name {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
  font-family: inherit;
}

.pt-topbar__name strong {
  font-size: 16px;
  color: #222;
  font-weight: 500;
  margin: 0;
}

.pt-topbar__name small {
  font-size: 12px;
  color: #6c7c93;
  font-weight: 400;
  margin: 0;
}

.pt-topbar__caret {
  color: #525252;
  margin-left: 2px;
  transition: transform .25s ease;
}

.pt-topbar__user.is-open .pt-topbar__caret {
  transform: rotate(180deg);
}

.pt-topbar__user>ul.dropdown-menu.user-dropdown {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  left: auto;
  margin-top: 0 !important;
  transform: none !important;
  z-index: 1050;
}

.pt-topbar__user>ul.dropdown-menu.user-dropdown .dropdown-item i {
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  font-size: 14px;
}

.pt-topbar__user>ul.dropdown-menu.user-dropdown .dropdown-item.text-danger i {
  color: inherit;
}

.pt-topbar__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #e5eeed;
  box-shadow: 0 18px 40px -16px rgba(15, 23, 42, 0.22);
  padding: 8px;
  z-index: 80;
  animation: pt-fade-in 0.18s ease;
}

.pt-topbar__menu button,
.pt-topbar__menu a {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #262f40;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  text-align: left;
}

.pt-topbar__menu button:hover,
.pt-topbar__menu a:hover {
  background: #E6F4F3;
  color: #49969C;
}

.pt-topbar__menu button i,
.pt-topbar__menu a i {
  font-size: 16px;
  color: #6B7280;
}

.pt-topbar__menu button:hover i,
.pt-topbar__menu a:hover i {
  color: #49969C;
}

.pt-topbar__menu hr {
  margin: 6px 4px;
  border: none;
  border-top: 1px solid #E5E7EB;
}

.pt-topbar__menu .pt-topbar__menu-danger {
  color: #ef4444;
}

.pt-topbar__menu .pt-topbar__menu-danger:hover {
  background: #FEF2F2;
  color: #ef4444;
}

.pt-topbar__menu .pt-topbar__menu-danger i,
.pt-topbar__menu .pt-topbar__menu-danger:hover i {
  color: #ef4444;
}

.pt-sidebar {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #FFFFFF;
}

.pt-sidebar__top {
  position: relative;
  border-bottom: 1px solid #ccc;
  padding: 15px;
  margin: 0px;
  width: 100%;
}

.pt-sidebar__image-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pt-sidebar__image {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.pt-sidebar__image a {
  display: inline-flex;
  cursor: pointer;
}

.pt-sidebar__image img {
  width: 160px;
  border-radius: 0;
  transition: 0.5s;
}

.pt-sidebar.is-collapsed .pt-sidebar__image {
  opacity: 0;
  width: 0;
  min-width: 0;
  margin: 0;
  visibility: hidden;
  overflow: hidden;
}

.pt-sidebar.is-collapsed .pt-sidebar__image-text {
  justify-content: center;
}

.pt-sidebar__toggle {
  position: relative;
  width: 25px;
  height: 18px;
  cursor: pointer;
  display: inline-block;
  flex-shrink: 0;
}

.pt-sidebar__toggle span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #636363;
  border-radius: 5px;
  top: 0;
  right: 0;
  transition: 0.5s;
}

.pt-sidebar__toggle .two {
  top: 8px;
  width: 80%;
}

.pt-sidebar__toggle .three {
  top: 16px;
}

.pt-sidebar.is-collapsed .pt-sidebar__toggle .two {
  right: auto;
  left: 0;
}

.pt-sidebar__menu-bar {
  height: calc(100% - 90px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  overflow-x: hidden;
}

.pt-sidebar__menu-bar::-webkit-scrollbar {
  display: none;
}

.pt-sidebar__menu {
  padding: 15px;
}

.pt-sidebar__menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pt-sidebar__menu-links--secondary {
  border-top: 1px solid #eef2f4;
  margin-top: 10px;
  padding-top: 10px;
}

.pt-sidebar__nav-link {
  padding: 0;
  margin: 0 0 5px;
  transition: 0.3s ease-in all;
  border-radius: 5px;
  list-style: none;
}

.pt-sidebar__nav-link a {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-decoration: none;
  transition: 0.3s ease-in all;
  gap: 5px;
  padding: 7px 15px;
  color: #636363;
  border-radius: 5px;
}

.pt-sidebar__nav-link>.sm-tooltip {
  display: block;
  width: 100%;
}

.pt-sidebar__nav-link a i {
  font-size: 18px;
  color: #636363;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.pt-sidebar__text {
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  color: #636363;
  width: 100%;
  margin-left: 10px;
  transition: 0.5s ease-in all;
  opacity: 1;
  visibility: visible;
  text-align: start;
}

.pt-sidebar.is-collapsed .pt-sidebar__text {
  opacity: 0;
  visibility: hidden;
  width: 1px;
  overflow: hidden;
  transition: 0.5s ease-in all;
}

.pt-sidebar__nav-link:hover {
  background: #49969C;
  color: #fff;
}

.pt-sidebar__nav-link:hover a,
.pt-sidebar__nav-link:hover a i,
.pt-sidebar__nav-link:hover .pt-sidebar__text {
  color: #fff;
}

.pt-sidebar__nav-link.active {
  background: #49969C;
}

.pt-sidebar__nav-link.active a,
.pt-sidebar__nav-link.active a i,
.pt-sidebar__nav-link.active .pt-sidebar__text {
  color: #fff;
}

.pt-sidebar.is-collapsed .pt-sidebar__nav-link a {
  padding: 10px 15px;
  gap: 5px;
}

.pt-sidebar__ftr {
  padding: 0 15px 15px;
  text-align: center;
}

.pt-sidebar__ftr p {
  margin: 0;
  color: #49969C;
  font-size: 12px;
  padding: 10px;
  text-align: center;
  transition: opacity 0.3s ease;
}

.pt-sidebar.is-collapsed .pt-sidebar__ftr p {
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.pt-sidebar__sign-out {
  margin: 0;
  background: #49969C;
  padding: 0;
  border-radius: 5px;
  list-style: none;
}

.pt-sidebar__sign-out a {
  color: #fff;
  padding: 10px 15px;
}

.pt-sidebar__sign-out a i {
  color: #fff;
}

.pt-sidebar__sign-out .pt-sidebar__text {
  color: #fff;
}

.pt-sidebar__sign-out:hover {
  background: #3F8389;
}

.pt-sidebar.is-collapsed .pt-sidebar__sign-out a {
  padding: 10px 15px;
}

.pt-page {
  display: flex;
  flex-direction: column;
}

.pt-section {
  margin-top: 0px;
}

.pt-card {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in all;
  height: 100%;
  background: #fff;
  border: solid 1px #e5eeed;
}

.pt-card__title {
  font-size: 18px;
  font-weight: 300;
  color: #262f40;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pt-card__title i {
  color: #2F8F9D;
  font-size: 19px;
}

.pt-card__paragraph {
  font-size: 14px;
  color: #525252;
  line-height: 1.6;
  margin: 0;
}

.pt-card__footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: #2F8F9D;
  font-weight: 300;
  text-decoration: none;
  font-size: 14px;
  transition: all .2s ease;
}

.pt-card__footer-link:hover {
  color: #2F8F9D;
  transform: translateX(2px);
}

.pt-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 25px 20px 0px;
}

.pt-page-header__main {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.pt-page-header__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #E8F7F6;
  color: #2F8F9D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.pt-page-header__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2F8F9D;
  margin-bottom: 4px;
}

.pt-page-header__title {
  font-size: 24px;
  font-weight: 300;
  color: #262f40;
  margin: 0;
  line-height: 1.2;
}

.pt-page-header__desc {
  margin: 6px 0 0;
  color: #525252;
  font-size: 14px;
  max-width: 640px;
}

.pt-page-header__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pt-welcome {
  position: relative;
  background: linear-gradient(120deg, #2F8F9D 0%, #3FA9A2 55%, #5BBFB6 100%);
  border-radius: 22px;
  padding: 28px 32px;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 10px 28px -12px rgba(47, 143, 157, 0.45);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.pt-welcome__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pt-welcome__bubbles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.pt-welcome__bubbles span:nth-child(1) {
  width: 220px;
  height: 220px;
  top: -90px;
  right: -60px;
  background: rgba(255, 255, 255, 0.10);
}

.pt-welcome__bubbles span:nth-child(2) {
  width: 130px;
  height: 130px;
  bottom: -50px;
  right: 120px;
  background: rgba(255, 255, 255, 0.08);
}

.pt-welcome__bubbles span:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 40px;
  right: 240px;
  background: rgba(255, 255, 255, 0.10);
}

.pt-welcome__bubbles span:nth-child(4) {
  width: 40px;
  height: 40px;
  top: 90px;
  right: 60px;
  background: rgba(255, 255, 255, 0.18);
}

.pt-welcome__content {
  flex: 1;
  min-width: 220px;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.pt-welcome__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.6px;
  backdrop-filter: blur(6px);
}

.pt-welcome__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
}

.pt-welcome__title {
  font-size: 28px;
  font-weight: 300;
  color: #FFFFFF;
  margin: 14px 0 6px;
  line-height: 1.2;
}

.pt-welcome__sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 400;
}

.pt-welcome__cta {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  color: #49969C;
  border-radius: 36px;
  padding: 8px 30px;
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: 0.3s ease-in all;
  border: 1px solid #FFFFFF;
}

.pt-welcome__cta:hover {
  background: #FFFFFF;
  color: #49969C;
  transform: scale(1.05);
}

.pt-tone-teal {
  --pt-tone: #2F8F9D;
  --pt-tone-soft: #e8f7f6;
  --pt-tone-deep: #2F8F9D;
}

.pt-tone-purple {
  --pt-tone: #7C3AED;
  --pt-tone-soft: #EDE9FE;
  --pt-tone-deep: #7C3AED;
}

.pt-tone-orange {
  --pt-tone: #F4A261;
  --pt-tone-soft: #fef0e6;
  --pt-tone-deep: #F4A261;
}

.pt-tone-blue {
  --pt-tone: #2563EB;
  --pt-tone-soft: #EFF6FF;
  --pt-tone-deep: #2563EB;
}

.pt-tone-green {
  --pt-tone: #10B981;
  --pt-tone-soft: #DCFCE7;
  --pt-tone-deep: #10B981;
}

.pt-summary-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.pt-summary-card {
  background: #fff;
  border: 1px solid #e5eeed;
  border-radius: 10px;
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in all;
  height: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pt-summary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2F8F9D, #BDE6E2);
  border-radius: 4px 4px 0 0;
}

.pt-summary-card__link:hover .pt-summary-card,
.pt-summary-card:hover {
  transform: translateY(-10px);
}

.pt-summary-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.pt-summary-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--pt-tone-soft, #e8f7f6);
  color: var(--pt-tone, #2F8F9D);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.pt-summary-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 300;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.2px;
}

.pt-summary-card__badge--ok {
  background: #e6f7ee;
  color: #10B981;
}

.pt-summary-card__badge--warn {
  background: #fff1e3;
  color: #F4A261;
}

.pt-summary-card__badge--muted {
  background: #f1f3f5;
  color: #525252;
}

.pt-summary-card__label {
  font-size: 13px;
  color: #525252;
  font-weight: 500;
  margin: 6px 0 0;
}

.pt-summary-card__value {
  font-size: 24px;
  font-weight: 300;
  color: #262f40;
  line-height: 1.1;
  margin-top: 2px;
}

.pt-summary-card__helper {
  font-size: 12px;
  color: #525252;
  margin-top: 6px;
}

.pt-quick-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0px 20px;
}

.pt-quick-action {
  background: #fff;
  border: 1px solid #e5eeed;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}

.pt-quick-action:hover {
  background: #E6F4F3;
  border-color: #BDE6E2;
  box-shadow: 0 4px 12px rgba(47, 143, 157, 0.08);
  color: inherit;
}

.pt-quick-action__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--pt-tone-soft, #E6F4F3);
  color: var(--pt-tone, #2F8F9D);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pt-quick-action__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pt-quick-action__content strong {
  font-size: 15px;
  font-weight: 300;
  color: #262f40;
}

.pt-quick-action__content span {
  font-size: 11px;
  color: #525252;
  margin-top: 2px;
}

.pt-activity-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0px 20px;
}

.pt-activity-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #E5E7EB;
  position: relative;
}

.pt-activity-item:last-child {
  border-bottom: none;
}

.pt-activity-item::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 52px;
  bottom: -1px;
  width: 1.5px;
  background: #E5E7EB;
}

.pt-activity-item:last-child::before {
  display: none;
}

.pt-activity-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pt-tone-soft, #e8f7f6);
  color: var(--pt-tone, #2F8F9D);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 1;
}

.pt-activity-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pt-activity-item__body strong {
  font-size: 15px;
  font-weight: 300;
  color: #262f40;
}

.pt-activity-item__body span {
  font-size: 12px;
  color: #525252;
  margin-top: 2px;
}

.pt-activity-item__time {
  font-size: 11px;
  color: #525252;
  margin-left: auto;
  flex-shrink: 0;
}

.pt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 30px;
  border-radius: 36px;
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.3s ease-in all;
  text-decoration: none;
  font-family: inherit;
}

.pt-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.pt-btn--primary {
  background: #49969C;
  color: #FFFFFF;
  border-color: #49969C;
}

.pt-btn--primary:hover:not(:disabled) {
  background: #3F8389;
  border-color: #3F8389;
  color: #FFFFFF;
  transform: scale(1.05);
}

.pt-btn--ghost {
  background: #FFFFFF;
  color: #49969C;
  border-color: #49969C;
}

.pt-btn--ghost:hover:not(:disabled) {
  background: #49969C;
  color: #FFFFFF;
  border-color: #49969C;
  transform: scale(1.05);
}

.pt-btn--sm {
  padding: 8px 18px;
  font-size: 13px;
  line-height: 16px;
}

.pt-link-btn {
  background: none;
  border: none;
  color: #49969C;
  font-weight: 300;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  transition: all .2s ease;
}

.pt-link-btn:hover {
  background: #E8F7F6;
  color: #49969C;
}

.pt-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  border-radius: 14px;
  padding: 6px;
  width: fit-content;
}

.pt-tabs--compact {
  padding: 4px;
}

.pt-tabs__tab {
  background: transparent;
  border: none;
  color: #525252;
  font-weight: 300;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all .2s ease;
}

.pt-tabs__tab i {
  font-size: 17px;
}

.pt-tabs__tab:hover {
  color: #49969C;
  background: #E6F4F3;
}

.pt-tabs__tab.is-active {
  background: #49969C;
  color: #FFFFFF;
}

.pt-tabs__count {
  background: rgba(255, 255, 255, 0.25);
  color: inherit;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 300;
}

.pt-tabs__tab:not(.is-active) .pt-tabs__count {
  background: #E5E7EB;
  color: #525252;
}

.pt-tabs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.pt-tabs-row__saved {
  flex-shrink: 0;
}

.pt-btn--ghost.is-active {
  background: #49969C;
  color: #FFFFFF;
  border-color: #49969C;
}

.pt-btn--ghost.is-active:hover {
  background: #49969C;
  color: #FFFFFF;
  border-color: #49969C;
}

.pt-rec-save {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  color: #525252;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow: 0 4px 10px -6px rgba(15, 23, 42, 0.15);
}

.pt-rec-save i {
  font-size: 16px;
  line-height: 1;
}

.pt-rec-save:hover {
  color: #2F8F9D;
  border-color: #BDE6E2;
  background: #E8F7F6;
  transform: scale(1.08);
}

.pt-rec-save.is-saved {
  background: #E8F7F6;
  border-color: #2F8F9D;
  color: #2F8F9D;
}

.pt-rec-save.is-saved:hover {
  background: #FEE2E2;
  border-color: #EF4444;
  color: #EF4444;
}

.pt-doc-card__summary {
  margin: 12px 0 0;
  padding: 10px 12px;
  background: #F4F9F9;
  border-left: 3px solid #2F8F9D;
  border-radius: 6px;
  font-size: 12px;
  color: #525252;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pt-saved-panel {
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 6px 18px -12px rgba(15, 23, 42, 0.12);
  margin-top: 16px;
}

.pt-saved-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #e5eeed;
}

.pt-saved-panel__head h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 500;
  color: #262f40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pt-saved-panel__head h3 i {
  color: #2F8F9D;
}

.pt-saved-panel__head p {
  margin: 0;
  color: #525252;
  font-size: 12px;
}

.pt-saved-panel__count {
  background: #E8F7F6;
  color: #2F8F9D;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.pt-saved-panel__empty {
  text-align: center;
  padding: 22px 12px;
  color: #525252;
}

.pt-saved-panel__empty i {
  font-size: 36px;
  color: #BDE6E2;
  margin-bottom: 6px;
  display: block;
}

.pt-saved-panel__empty p {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
  color: #262f40;
}

.pt-saved-panel__empty span {
  font-size: 12px;
  color: #525252;
}

.pt-saved-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pt-saved-list__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px 12px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  transition: all .2s ease;
}

.pt-saved-list__row:hover {
  background: #F4F9F9;
  border-color: #BDE6E2;
}

.pt-saved-list__type {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

.pt-saved-list__type i {
  font-size: 13px;
}

.pt-saved-list__type--doctor {
  background: #E8F7F6;
  color: #2F8F9D;
}

.pt-saved-list__type--procedure {
  background: #DCFCE7;
  color: #10B981;
}

.pt-saved-list__type--device {
  background: #E8F7F6;
  color: #2F8F9D;
}

.pt-saved-list__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pt-saved-list__body strong {
  font-size: 13px;
  font-weight: 500;
  color: #262f40;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pt-saved-list__body span {
  font-size: 11px;
  color: #525252;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pt-saved-list__actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.pt-saved-list__remove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid transparent;
  color: #525252;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}

.pt-saved-list__remove:hover {
  background: #FEE2E2;
  border-color: #FCA5A5;
  color: #EF4444;
}

.pt-rec-grid {
  --pt-rec-card-gap: 20px;
  row-gap: var(--pt-rec-card-gap);
  align-items: stretch;
}

.pt-rec-grid>[class*="col-"] {
  display: flex;
}

.pt-rec-card {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: 0 4px 16px -10px rgba(15, 23, 42, 0.08);
}

.pt-rec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pt-tone, #2F8F9D), var(--pt-tone-soft, #BDE6E2));
  z-index: 4;
}

.pt-rec-card:hover {
  transform: translateY(-6px);
  border-color: var(--pt-tone-soft, #BDE6E2);
}

.pt-rec-card__media {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, var(--pt-tone-soft, #E8F7F6) 0%, #FFFFFF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.pt-rec-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.pt-rec-card:hover .pt-rec-card__media img {
  transform: scale(1.06);
}

.pt-rec-card__media-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.6) 0%, transparent 65%),
    linear-gradient(135deg, var(--pt-tone-soft, #E8F7F6) 0%, #FFFFFF 100%);
  color: var(--pt-tone, #2F8F9D);
  font-size: 64px;
  transition: transform .4s ease;
}

.pt-rec-card:hover .pt-rec-card__media-fallback {
  transform: scale(1.08);
}

.pt-rec-card__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 50%,
      rgba(15, 23, 42, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

.pt-rec-card__category {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--pt-tone-deep, #2F8F9D);
  backdrop-filter: blur(6px);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px -4px rgba(15, 23, 42, 0.25);
  z-index: 2;
}

.pt-rec-card__category i {
  font-size: 13px;
  color: var(--pt-tone, #2F8F9D);
}

.pt-rec-card__body {
  padding: 16px 18px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pt-rec-card__title {
  font-size: 17px;
  font-weight: 500;
  color: #262f40;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pt-rec-card__subtitle {
  font-size: 12px;
  color: var(--pt-tone-deep, #2F8F9D);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.pt-rec-card__summary {
  font-size: 13px;
  color: #525252;
  line-height: 1.55;
  margin: 4px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.pt-rec-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #e5eeed;
}

.pt-rec-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #525252;
  font-weight: 400;
}

.pt-rec-card__meta i {
  color: var(--pt-tone, #2F8F9D);
  font-size: 14px;
}

.pt-rec-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  min-height: 26px;
}

.pt-rec-card__tag {
  background: var(--pt-tone-soft, #E8F7F6);
  color: var(--pt-tone-deep, #2F8F9D);
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 99px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.pt-rec-card__footer {
  margin-top: auto;
  padding: 12px 18px 16px;
  border-top: 1px solid #f1f5f4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pt-rec-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pt-tone, #2F8F9D);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  transition: all .2s ease;
}

.pt-rec-card__cta i {
  transition: transform .2s ease;
}

.pt-rec-card__cta:hover {
  color: var(--pt-tone-deep, #2F8F9D);
}

.pt-rec-card__cta:hover i {
  transform: translateX(3px);
}

.pt-filter-bar {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: minmax(220px, 1.6fr) repeat(3, minmax(150px, 1fr));
  gap: 12px;
  align-items: end;
  box-shadow: 0 0 40px 0px #0000000d;
  margin-bottom: 20px;
}

.pt-filter-bar__search {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e5eeed;
  border-radius: 6px;
  padding: 0 12px;
  height: 43px;
  transition: all .2s ease;
}

.pt-filter-bar__search:focus-within {
  border-color: #2F8F9D;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(47, 143, 157, 0.15);
}

.pt-filter-bar__search>i {
  color: #525252;
  font-size: 18px;
  margin-right: 8px;
  flex-shrink: 0;
}

.pt-filter-bar__search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #262f40;
  font-family: inherit;
}

.pt-filter-bar__search input::placeholder {
  color: #9ca3af;
}

.pt-filter-bar__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.pt-filter-bar__select {
  position: relative;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: solid 1px #1f2b3e40;
  border-radius: 6px;
  height: 43px;
  transition: all .2s ease;
  color: #525252;
}

.pt-filter-bar__select:focus-within {
  border-color: #2F8F9D;
  box-shadow: 0 0 0 3px rgba(47, 143, 157, 0.15);
}

.pt-filter-bar__select select {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 32px 0 12px;
  font-size: 13px;
  color: #525252;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  height: 100%;
  text-overflow: ellipsis;
}

.pt-filter-bar__select>i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #525252;
  font-size: 18px;
  pointer-events: none;
}

.pt-doc-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  border-radius: 16px;
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease;
  overflow: hidden;
  box-shadow: 0 4px 16px -10px rgba(15, 23, 42, 0.08);
}

.pt-doc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2F8F9D, #BDE6E2);
  border-radius: 4px 4px 0 0;
  z-index: 2;
}

.pt-doc-card:hover {
  transform: translateY(-6px);
}

.pt-doc-card__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pt-doc-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #E8F7F6;
  position: relative;
  box-shadow: 0 4px 12px -4px rgba(47, 143, 157, 0.25);
  border: 3px solid #FFFFFF;
  outline: 1px solid #e5eeed;
}

.pt-doc-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pt-doc-card__avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
  color: #2F8F9D;
  background: #E8F7F6;
  text-transform: uppercase;
}

.pt-doc-card__head-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pt-doc-card__name {
  font-size: 17px;
  font-weight: 500;
  color: #262f40;
  margin: 0;
  line-height: 1.2;
  word-break: break-word;
}

.pt-doc-card__spec {
  margin: 0;
  font-size: 13px;
  color: #2F8F9D;
  font-weight: 400;
  line-height: 1.3;
}

.pt-doc-card__sep {
  margin: 0 6px;
  color: #BDE6E2;
}

.pt-doc-card__hospital {
  margin: 2px 0 0;
  font-size: 12px;
  color: #525252;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
}

.pt-doc-card__hospital i {
  color: #9ca3af;
  font-size: 14px;
  flex-shrink: 0;
}

.pt-doc-card__rating {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #525252;
}

.pt-doc-card__rating i {
  color: #F59E0B;
  font-size: 14px;
}

.pt-doc-card__rating strong {
  color: #262f40;
  font-weight: 600;
}

.pt-doc-card__rating span {
  color: #525252;
}

.pt-doc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 14px;
}

.pt-doc-card__tag {
  background: #E8F7F6;
  color: #2F8F9D;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 99px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.pt-doc-card__footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed #e5eeed;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pt-doc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #2F8F9D;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.pt-doc-card__cta i {
  transition: transform .2s ease;
}

.pt-doc-card__cta:hover {
  color: #2F8F9D;
}

.pt-doc-card__cta:hover i {
  transform: translateX(3px);
}

.pt-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2F8F9D;
  text-decoration: none;
  font-weight: 300;
  font-size: 13px;
  transition: all .2s ease;
}

.pt-back-link:hover {
  color: #2F8F9D;
  transform: translateX(-2px);
}

.pt-detail-card {
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in all;
}

.pt-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2F8F9D, #BDE6E2);
  border-radius: 4px 4px 0 0;
}

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

.pt-detail-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--pt-tone-soft, #E8F7F6);
  color: var(--pt-tone, #2F8F9D);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  margin-bottom: 12px;
}

.pt-detail-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #FEF3C7;
  color: #F4A261;
  font-weight: 300;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.pt-detail-card h3 {
  font-size: 20px;
  font-weight: 300;
  color: #262f40;
  margin: 0 0 4px;
}

.pt-detail-card p {
  font-size: 13px;
  color: #525252;
  margin: 0 0 16px;
}

.pt-detail-card__meta {
  list-style: none;
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.pt-detail-card__meta li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pt-detail-card__meta li i {
  color: var(--pt-tone, #2F8F9D);
  font-size: 18px;
  margin-top: 2px;
}

.pt-detail-card__meta li span {
  display: flex;
  flex-direction: column;
  color: #525252;
  font-size: 13px;
}

.pt-detail-card__meta li span strong {
  color: #525252;
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.pt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pt-tag {
  background: #E8F7F6;
  color: #2F8F9D;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 300;
}

.pt-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.pt-info-grid>div {
  display: flex;
  flex-direction: column;
}

.pt-info-grid span {
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #525252;
  margin-bottom: 4px;
}

.pt-info-grid strong {
  font-size: 14px;
  color: #262f40;
  font-weight: 300;
}

.pt-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pt-bullet-list li {
  position: relative;
  padding-left: 22px;
  color: #525252;
  font-size: 14px;
  line-height: 1.55;
}

.pt-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2F8F9D;
}

.pt-device-media {
  background: linear-gradient(135deg, #F4F9F9, #FFFFFF);
  border: 1px solid #e5eeed;
  border-radius: 16px;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pt-device-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pt-device-media__placeholder {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: #E8F7F6;
  color: #2F8F9D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

.pt-current-plan {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}

.pt-current-plan__label {
  font-size: 11px;
  font-weight: 300;
  color: #525252;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pt-current-plan h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 4px 0;
  color: #262f40;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.pt-current-plan p {
  margin: 0;
  color: #525252;
  font-size: 13px;
}

.pt-current-plan__badge {
  background: #D1FAE5;
  color: #10B981;
  font-size: 11px;
  font-weight: 300;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pt-current-plan__actions {
  display: flex;
  gap: 10px;
}

.pt-billing-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  border-radius: 999px;
  padding: 5px;
  width: fit-content;
  box-shadow: 0 4px 14px -10px rgba(15, 23, 42, 0.15);
  margin: 20px auto;
}

.pt-billing-toggle__btn {
  background: transparent;
  border: none;
  color: #525252;
  font-size: 14px;
  font-weight: 400;
  padding: 9px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  line-height: 1.2;
}

.pt-billing-toggle__btn:hover {
  color: #2F8F9D;
}

.pt-billing-toggle__btn.is-active {
  background: linear-gradient(135deg, #2F8F9D 0%, #3FA9A2 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 12px -4px rgba(47, 143, 157, 0.5);
}

.pt-billing-toggle__btn.is-active:hover {
  color: #FFFFFF;
}

.pt-billing-toggle__save {
  background: #DCFCE7;
  color: #10B981;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 99px;
  letter-spacing: 0.02em;
}

.pt-billing-toggle__btn.is-active .pt-billing-toggle__save {
  background: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
}

.pt-pricing-card {
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  border-radius: 18px;
  padding: 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease all;
}

.pt-pricing-card:hover {
  transform: translateY(-6px);
}

.pt-pricing-card.is-highlight {
  border: 1px solid #BDE6E2;
  background:
    radial-gradient(120% 60% at 100% 100%, rgba(189, 230, 226, 0.35) 0%, transparent 70%),
    #FFFFFF;
}

.pt-pricing-card__ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, #2F8F9D 0%, #3FA9A2 100%);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 10px -4px rgba(47, 143, 157, 0.55);
  z-index: 2;
}

.pt-pricing-card__ribbon i {
  color: #FFE08A;
  font-size: 12px;
}

.pt-pricing-card__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pt-pricing-card__head-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #E8F7F6;
  color: #2F8F9D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.pt-pricing-card__head>div {
  flex: 1;
  min-width: 0;
}

.pt-pricing-card__head h3 {
  font-size: 22px;
  font-weight: 500;
  color: #262f40;
  margin: 0 0 2px;
  line-height: 1.2;
}

.pt-pricing-card__head p {
  font-size: 13px;
  color: #525252;
  margin: 0;
  line-height: 1.4;
}

.pt-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 18px 0 16px;
  border-top: 1px solid #E5E7EB;
  margin: 20px 0 18px;
}

.pt-pricing-card__price-amount {
  font-size: 38px;
  font-weight: 600;
  color: #262f40;
  line-height: 1;
}

.pt-pricing-card__price-period {
  color: #2F8F9D;
  font-size: 14px;
  font-weight: 400;
}

.pt-pricing-card__features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pt-pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #262f40;
  line-height: 1.4;
}

.pt-pricing-card__features li i {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
}

.pt-pricing-card__features li.is-excluded {
  color: #9ca3af;
  text-decoration: line-through;
}

.pt-pricing-card__features li.is-excluded i {
  color: #ef4444;
  text-decoration: none;
  display: inline-flex;
}

.pt-pricing-card__cta {
  width: 100%;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 30px;
  border-radius: 36px;
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.3s ease-in all;
  text-decoration: none;
  font-family: inherit;
}

.pt-pricing-card__cta.is-primary {
  background: #49969C;
  color: #FFFFFF;
  border-color: #49969C;
  transition: 0.3s ease-in all;
}

.pt-pricing-card__cta.is-primary:hover {
  transform: scale(1.05);
}

.pt-pricing-card__cta.is-primary:hover:not(:disabled) {
  background: #49969C;
  color: #FFFFFF;
  transform: scale(1.05);
}

.pt-pricing-card__cta.is-ghost {
  background: #FFFFFF;
  color: #49969C;
  border-color: #49969C;
}

.pt-pricing-card__cta.is-ghost:hover:not(:disabled) {
  background: #49969C;
  color: #FFFFFF;
  border-color: #49969C;
  transform: scale(1.05);
}

.pt-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 300;
}

.pt-banner i {
  font-size: 20px;
}

.pt-banner--success {
  background: #D1FAE5;
  color: #10B981;
  border: 1px solid #6EE7B7;
}

.pt-banner__close {
  margin-left: auto;
  background: transparent;
  border: none;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity .2s ease;
}

.pt-banner__close:hover {
  opacity: 1;
}

.pt-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  color: #1f2a37;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  padding: 0px 20px 20px;
}

.pt-table thead {
  background: #f6f8fa;
}

.pt-table thead th {
  text-align: left;
  font-size: 14px;
  font-weight: 300;
  color: #262f40;
  border-left: 1px solid #e5e7eb;
  border-top: solid 1px #e5e7eb;
  padding: 10px 15px;
  white-space: nowrap;
}

.pt-table thead th i,
.pt-table thead th svg,
.pt-table thead th img {
  margin-left: 4px;
  vertical-align: middle;
}

.pt-table tbody td {
  padding: 10px 15px;
  font-size: 14px;
  color: #262f40;
  border-left: 1px solid #e5e7eb;
  border-top: solid 1px #e5e7eb;
  white-space: nowrap;
}

.pt-table tbody tr:last-child td {
  border-bottom: 1px solid #e5e7eb;
}

.pt-table tbody tr:hover {
  background: #fafbfc;
}

.pt-table thead th:first-child {
  border-top-left-radius: 10px;
}

.pt-table thead th:last-child {
  border-top-right-radius: 10px;
}

.pt-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.pt-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.pt-table thead th:first-child,
.pt-table tbody td:first-child {
  padding-left: 35px;
}

.pt-table thead th:last-child,
.pt-table tbody td:last-child {
  padding-right: 35px;
  border-right: 1px solid #e5e7eb;
}

.pt-page .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.pt-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pt-status-badge--paid,
.pt-status-badge--completed,
.pt-status-badge--active,
.pt-status-badge--approved {
  background: #D1FAE5;
  color: #10B981;
}

.pt-status-badge--in-progress,
.pt-status-badge--pending,
.pt-status-badge--review {
  background: #FEF3C7;
  color: #F4A261;
}

.pt-status-badge--failed,
.pt-status-badge--rejected,
.pt-status-badge--declined {
  background: #FEE2E2;
  color: #EF4444;
}

.pt-status-badge--refunded,
.pt-status-badge--info {
  background: #DBEAFE;
  color: #2563EB;
}

.pt-status-badge--archived,
.pt-status-badge--inactive {
  background: #E5E7EB;
  color: #525252;
}

.pt-pill {
  display: inline-block;
  padding: 3px 10px;
  background: #EDE9FE;
  color: #7C3AED;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 300;
}

.pt-profile-card {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.pt-profile-card__avatar {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.pt-profile-card__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #E8F7F6;
}

.pt-profile-card__avatar-edit {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2F8F9D;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid #FFFFFF;
  transition: all .2s ease;
}

.pt-profile-card__avatar-edit:hover {
  background: #2F8F9D;
  transform: scale(1.05);
}

.pt-profile-card__form {
  flex: 1;
  min-width: 280px;
}

.pt-form-label {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: #525252;
  margin-bottom: 6px;
}

.pt-required {
  color: #ef4444;
}

.pt-form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e5eeed;
  border-radius: 10px;
  background: #FFFFFF;
  font-size: 14px;
  color: #262f40;
  transition: all .2s ease;
  font-family: inherit;
}

.pt-form-input:focus {
  outline: none;
  border-color: #2F8F9D;
  box-shadow: 0 0 0 3px rgba(47, 143, 157, 0.18);
}

.pt-form-input.is-readonly {
  background: #F4F9F9;
  color: #525252;
}

.pt-form-error {
  display: block;
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
}

.pt-profile-card__actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.pt-profile-side {
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 22px 24px;
  height: 100%;
  box-shadow: 0 4px 18px -12px rgba(15, 23, 42, 0.08);
}

.pt-profile-side__cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(255, 255, 255, 0.7) 0%, transparent 60%),
    linear-gradient(135deg, #E8F7F6 0%, #D6EEEC 60%, #BDE6E2 100%);
  pointer-events: none;
}

.pt-profile-side__avatar {
  position: relative;
  width: 100px;
  height: 100px;
  margin-top: 71px;
  z-index: 1;
}

.pt-profile-side__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #FFFFFF;
}

.pt-profile-side__avatar-edit {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2F8F9D;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* border: 3px solid #FFFFFF; */
  transition: all .2s ease;
  box-shadow: 0 4px 10px -4px rgba(47, 143, 157, 0.55);
  font-size: 14px;
}

.pt-profile-side__avatar-edit svg {
  max-width: 16px;
}

.pt-profile-side__avatar-edit:hover {
  background: #2F8F9D;
  transform: scale(1.08);
}

.pt-profile-side__name {
  font-size: 18px;
  font-weight: 400;
  color: #262f40;
  margin: 16px 0 4px;
  text-align: center;
  line-height: 1.2;
  word-break: break-word;
}

.pt-profile-side__member {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #525252;
  font-size: 13px;
}

.pt-profile-side__member i {
  color: #2F8F9D;
  font-size: 16px;
  line-height: 1;
}

.pt-profile-side__info {
  list-style: none;
  margin: 22px 0 0;
  padding: 18px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px dashed #e5eeed;
}

.pt-profile-side__info li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pt-profile-side__info-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #E8F7F6;
  color: #2F8F9D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.pt-profile-side__info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.pt-profile-side__info-text small {
  font-size: 12px;
  font-weight: 300;
  color: #525252;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.pt-profile-side__info-text strong {
  font-size: 13px;
  font-weight: 500;
  color: #262f40;
  word-break: break-word;
  line-height: 1.3;
}

.pt-profile-side__status {
  background: #DCFCE7;
  color: #10B981;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 99px;
  margin-left: auto;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.pt-profile-side__tip {
  margin-top: 22px;
  width: 100%;
  background: linear-gradient(135deg, #EAF7F6 0%, #DCEFEE 100%);
  border: 1px solid #D6EEEC;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
}

.pt-profile-side__tip>div {
  flex: 1;
  min-width: 0;
}

.pt-profile-side__tip-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #FFFFFF;
  color: #2F8F9D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px -2px rgba(47, 143, 157, 0.25);
}

.pt-profile-side__tip strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #2F8F9D;
  margin-bottom: 2px;
}

.pt-profile-side__tip p {
  margin: 0;
  font-size: 12px;
  color: #525252;
  line-height: 1.5;
}

.pt-profile-form-card {
  padding: 26px;
  height: 100%;
}

.pt-profile-form-card__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.pt-profile-form-card__head-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E8F7F6;
  color: #2F8F9D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.pt-profile-form-card__head h3 {
  font-size: 18px;
  font-weight: 500;
  color: #262f40;
  margin: 0 0 2px;
  line-height: 1.2;
}

.pt-profile-form-card__head p {
  margin: 0;
  font-size: 13px;
  color: #525252;
}

.pt-profile-form-card__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.pt-accordion {
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .25s ease;
  margin-top: 20px;
}

.pt-accordion.is-open {
  box-shadow: 0 8px 22px -14px rgba(15, 23, 42, 0.12);
}

.pt-accordion__header {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  transition: all .2s ease;
}

.pt-accordion__header:hover {
  background: #FFFFFF;
}

.pt-accordion__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--pt-tone-soft, #E8F7F6);
  color: var(--pt-tone, #2F8F9D);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.pt-accordion__title {
  flex: 1;
  font-weight: 300;
  color: #262f40;
  font-size: 15px;
}

.pt-accordion__count {
  background: #E5E7EB;
  color: #525252;
  font-size: 12px;
  font-weight: 300;
  padding: 3px 9px;
  border-radius: 999px;
}

.pt-accordion__chev {
  color: #525252;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
}

.pt-accordion__body {
  padding: 0px 20px 19px;
  /* border-top: 1px solid #E5E7EB; */
}

.pt-sub-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 16px 0 22px;
  align-items: center;
}

.pt-sub-summary>div {
  display: flex;
  flex-direction: column;
}

.pt-sub-summary span {
  font-size: 11px;
  font-weight: 300;
  color: #525252;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pt-sub-summary strong {
  color: #262f40;
  font-size: 15px;
  font-weight: 300;
}

.pt-notif-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pt-notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  transition: all 0.2s;
}

.pt-notif-item:hover {
  background: #E6F4F3;
  border-color: #BDE6E2;
  box-shadow: 0 4px 12px rgba(47, 143, 157, 0.08);
}

.pt-notif-item.is-unread {
  background: var(--pt-tone-soft, #E8F7F6);
  border-left: 4px solid var(--pt-tone, #2F8F9D);
  position: relative;
}

.pt-notif-item.is-clickable {
  cursor: pointer;
}

.pt-notif-item.is-clickable:hover {
  background: #DFF1EF;
  border-color: var(--pt-tone, #2F8F9D);
  box-shadow: 0 6px 16px rgba(47, 143, 157, 0.14);
  transform: translateY(-1px);
}

.pt-notif-item.is-clickable:focus-visible {
  outline: 2px solid var(--pt-tone, #2F8F9D);
  outline-offset: 2px;
}

.pt-notif-item__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pt-tone, #2F8F9D);
  margin-left: 8px;
  vertical-align: middle;
  box-shadow: 0 0 0 3px rgba(47, 143, 157, 0.18);
  animation: pt-notif-pulse 1.6s ease-in-out infinite;
}

@keyframes pt-notif-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(47, 143, 157, 0.18);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(47, 143, 157, 0.05);
  }
}

.pt-notif-item__pill {
  display: inline-block;
  margin-top: 8px;
  padding: 1px 8px;
  border-radius: 999px;
  background: var(--pt-tone, #2F8F9D);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4px;
  line-height: 1.6;
  text-transform: uppercase;
}

.pt-notif-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--pt-tone-soft, #E8F7F6);
  color: var(--pt-tone, #2F8F9D);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pt-notif-item.is-unread .pt-notif-item__icon {
  background: #FFFFFF;
}

.pt-notif-item__body {
  flex: 1;
  min-width: 0;
}

.pt-notif-item__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.pt-notif-item__row strong {
  color: #262f40;
  font-size: 16px;
  font-weight: 300;
}

.pt-notif-item.is-read .pt-notif-item__row strong {
  font-weight: 500;
  color: #525252;
}

.pt-notif-item__time {
  font-size: 12px;
  color: #525252;
  font-weight: 300;
  white-space: nowrap;
}

.pt-notif-item__body p {
  margin: 4px 0 0;
  color: #525252;
  font-size: 14px;
  line-height: 1.5;
}

.pt-notif-item__toggle {
  background: transparent;
  border: none;
  color: #525252;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  transition: all .2s ease;
  align-self: flex-start;
}

.pt-notif-item__toggle:hover:not(:disabled) {
  background: #E5E7EB;
  color: #2F8F9D;
}

.pt-notif-item.is-unread .pt-notif-item__toggle {
  color: var(--pt-tone, #2F8F9D);
}

.pt-notif-item__toggle:disabled {
  cursor: default;
  opacity: 0.55;
}

.pt-empty {
  text-align: center;
  padding: 40px 20px;
  color: #525252;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.pt-empty i {
  font-size: 56px;
  color: #CBD5E1;
  margin-bottom: 12px;
}

.pt-empty h3 {
  font-size: 18px;
  color: #262f40;
  margin: 0 0 4px;
}

.pt-modal {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.pt-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  animation: pt-fade-in 0.2s ease;
}

.pt-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.45);
  animation: pt-slide-up 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes pt-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pt-slide-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pt-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #525252;
  cursor: pointer;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}

.pt-modal__close:hover {
  background: #E5E7EB;
  color: #262f40;
}

.pt-modal__header h2 {
  font-size: 22px;
  font-weight: 300;
  color: #262f40;
  margin: 6px 0 4px;
}

.pt-modal__header p {
  color: #525252;
  font-size: 13px;
  margin: 0;
}

.pt-modal__brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E8F7F6;
  color: #2F8F9D;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 300;
}

.pt-modal__amount {
  margin: 18px 0;
  padding: 14px 16px;
  background: linear-gradient(135deg, #F4F9F9, #FFFFFF);
  border: 1px solid #e5eeed;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pt-modal__amount span {
  color: #525252;
  font-size: 13px;
  font-weight: 300;
}

.pt-modal__amount strong {
  font-size: 22px;
  font-weight: 300;
  color: #262f40;
}

.pt-modal__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pt-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pt-modal__field span {
  font-size: 12px;
  font-weight: 300;
  color: #525252;
  letter-spacing: 0.02em;
}

.pt-modal__field input {
  width: 100%;
  padding: 11px 14px;
  color: #525252;
  border: solid 1px #1f2b3e40;
  border-radius: 6px;
  font-size: 14px;
  background: #FFFFFF;
  transition: all .2s ease;
  font-family: inherit;
}

.pt-modal__field input:focus {
  outline: none;
  border-color: #49969C;
  box-shadow: 0 0 0 3px rgba(47, 143, 157, 0.18);
}

.pt-modal__card-wrapper {
  position: relative;
}

.pt-modal__card-brands {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  color: #525252;
  font-size: 22px;
  pointer-events: none;
}

.pt-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pt-modal__error {
  color: #ef4444;
  font-size: 11px;
  margin-top: 2px;
}

.pt-modal__submit {
  width: 100%;
  background: #49969C;
  color: #FFFFFF;
  border: 1px solid #49969C;
  padding: 8px 30px;
  border-radius: 36px;
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  transition: 0.3s ease-in all;
  font-family: inherit;
}

.pt-modal__submit:hover:not(:disabled) {
  background: #49969C;
  color: #FFFFFF;
  transform: scale(1.05);
}

.pt-modal__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.pt-modal__legal {
  text-align: center;
  color: #525252;
  font-size: 11px;
  margin: 8px 0 0;
}

.pt-modal__state {
  text-align: center;
  padding: 28px 8px 8px;
}

.pt-modal__spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 4px solid #E8F7F6;
  border-top-color: #2F8F9D;
  animation: pt-spin 0.8s linear infinite;
  margin: 0 auto 18px;
}

@keyframes pt-spin {
  to {
    transform: rotate(360deg);
  }
}

.pt-modal__check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #10B981);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin: 0 auto 18px;
  box-shadow: 0 14px 28px -10px rgba(16, 185, 129, 0.5);
  animation: pt-pop 0.4s ease;
}

@keyframes pt-pop {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.pt-modal__state h2 {
  font-size: 22px;
  color: #262f40;
  margin: 0 0 6px;
}

.pt-modal__state p {
  color: #525252;
  font-size: 14px;
  margin: 0 0 18px;
}

.about-page {
  padding: 60px 0 80px;
  background: #FFFFFF;
  color: #262f40;
}

.about-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.about-hero__eyebrow {
  display: inline-block;
  background: #E8F7F6;
  color: #2F8F9D;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.about-hero h1 {
  font-size: 42px;
  font-weight: 300;
  color: #262f40;
  line-height: 1.15;
  margin: 0 0 18px;
}

.about-hero p {
  font-size: 16px;
  color: #525252;
  line-height: 1.7;
  margin: 0;
}

.about-mission {
  background: linear-gradient(135deg, #F4F9F9, #FFFFFF);
  border-radius: 24px;
  padding: 42px;
  margin-bottom: 60px;
  border: 1px solid #e5eeed;
}

.about-mission__pill {
  display: inline-block;
  background: #FFFFFF;
  color: #2F8F9D;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 300;
  margin-bottom: 12px;
  border: 1px solid #e5eeed;
}

.about-mission h2 {
  font-size: 30px;
  font-weight: 300;
  color: #262f40;
  line-height: 1.2;
  margin: 0 0 16px;
}

.about-mission p {
  color: #525252;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 12px;
}

.about-mission__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-mission__stats>div {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  border: 1px solid #e5eeed;
  transition: all .25s ease;
}

.about-mission__stats>div:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px -16px rgba(15, 23, 42, 0.18);
  border-color: #2F8F9D;
}

.about-mission__stats strong {
  display: block;
  color: #2F8F9D;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}

.about-mission__stats span {
  display: block;
  color: #525252;
  font-size: 13px;
  margin-top: 6px;
}

.about-section-title {
  font-size: 28px;
  font-weight: 300;
  color: #262f40;
  margin: 0 0 24px;
  text-align: center;
}

.about-values {
  margin-bottom: 60px;
}

.about-value-card {
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  border-radius: 16px;
  padding: 26px 22px;
  height: 100%;
  text-align: center;
  transition: all .25s ease;
}

.about-value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -16px rgba(15, 23, 42, 0.18);
  border-color: #2F8F9D;
}

.about-value-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #E8F7F6, #FFFFFF);
  color: #2F8F9D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 14px;
}

.about-value-card h3 {
  font-size: 17px;
  font-weight: 300;
  color: #262f40;
  margin: 0 0 8px;
}

.about-value-card p {
  color: #525252;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.about-team {
  margin-bottom: 60px;
}

.about-team-card {
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  border-radius: 16px;
  padding: 26px 18px;
  text-align: center;
  transition: all .25s ease;
}

.about-team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -16px rgba(15, 23, 42, 0.18);
}

.about-team-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 12px;
}

.about-tone-teal .about-team-card__avatar {
  background: linear-gradient(135deg, #2F8F9D, #2F8F9D);
}

.about-tone-purple .about-team-card__avatar {
  background: linear-gradient(135deg, #7C3AED, #7C3AED);
}

.about-tone-orange .about-team-card__avatar {
  background: linear-gradient(135deg, #F4A261, #C66E2E);
}

.about-tone-blue .about-team-card__avatar {
  background: linear-gradient(135deg, #2563EB, #2563EB);
}

.about-team-card strong {
  display: block;
  font-size: 15px;
  font-weight: 300;
  color: #262f40;
}

.about-team-card span {
  display: block;
  color: #525252;
  font-size: 12px;
  margin-top: 4px;
}

.about-cta {
  background: linear-gradient(135deg, #2F8F9D, #49969C);
  border-radius: 24px;
  padding: 42px;
  text-align: center;
  color: #FFFFFF;
}

.about-cta h2 {
  font-size: 28px;
  font-weight: 300;
  margin: 0 0 8px;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  margin: 0 0 20px;
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: #49969C;
  padding: 14px 32px;
  border-radius: 36px;
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  text-decoration: none;
  transition: 0.3s ease-in all;
  border: 1px solid #FFFFFF;
}

.about-cta__btn:hover {
  background: #FFFFFF;
  color: #49969C;
  transform: scale(1.05);
}

.edit-name input {
  background: #fff;
  border-radius: 6px;
  padding: 10px 10px;
  color: #525252;
  border: solid 1px #1f2b3e40;
  font-size: 14px;
}

.edit-name textarea {
  background: #fff;
  border-radius: 6px;
  padding: 10px 10px;
  color: #525252;
  border: solid 1px #1f2b3e40;
  font-size: 14px;
}

.doc-profile-new {
  margin-bottom: 15px;
}

.pt-doctor-detail .pt-back-link {
  margin-bottom: 14px;
}

.pt-doctor-detail .pt-doc-side+.pt-doc-side,
.pt-doctor-detail .pt-doc-section+.pt-doc-section {
  margin-top: 20px;
}

.pt-doctor-detail .pt-doc-stats+.row {
  margin-top: 20px;
}

.pt-doctor-detail .pt-doc-side__list {
  gap: 16px;
}

.pt-doc-hero {
  position: relative;
  background: linear-gradient(120deg, #2F8F9D 0%, #3FA9A2 55%, #5BBFB6 100%);
  border-radius: 22px;
  padding: 28px 32px;
  overflow: hidden;
  color: #FFFFFF;
  box-shadow: 0 10px 28px -12px rgba(47, 143, 157, 0.45);
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.pt-doc-hero__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pt-doc-hero__bubbles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.pt-doc-hero__bubbles span:nth-child(1) {
  width: 220px;
  height: 220px;
  top: -90px;
  right: -60px;
  background: rgba(255, 255, 255, 0.10);
}

.pt-doc-hero__bubbles span:nth-child(2) {
  width: 130px;
  height: 130px;
  bottom: -50px;
  right: 120px;
  background: rgba(255, 255, 255, 0.08);
}

.pt-doc-hero__bubbles span:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 40px;
  right: 240px;
  background: rgba(255, 255, 255, 0.10);
}

.pt-doc-hero__bubbles span:nth-child(4) {
  width: 40px;
  height: 40px;
  top: 90px;
  right: 60px;
  background: rgba(255, 255, 255, 0.18);
}

.pt-doc-hero__photo {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 4px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.3);
}

.pt-doc-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 100%;
}

.pt-doc-hero__photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pt-doc-hero__verified {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #2F8F9D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid #FFFFFF;
  z-index: 2;
}

.pt-doc-hero__content {
  flex: 1;
  min-width: 240px;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.pt-doc-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.pt-doc-hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
}

.pt-doc-hero__title {
  font-size: 28px;
  font-weight: 300;
  color: #FFFFFF;
  margin: 14px 0 6px;
  line-height: 1.2;
}

.pt-doc-hero__sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.pt-doc-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
}

.pt-doc-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pt-doc-hero__meta-item i {
  font-size: 14px;
}

.pt-doc-hero__meta-item small {
  opacity: 0.85;
  font-size: 12px;
}

.pt-doc-hero__meta-item .ri-star-fill {
  color: #FBBF24;
}

.pt-doc-hero__meta-item--match {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 500;
}

.pt-doc-hero__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.pt-doc-hero__cta {
  background: #FFFFFF;
  color: #49969C;
  border-radius: 36px;
  padding: 8px 30px;
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: 0.3s ease-in all;
  border: 1px solid #FFFFFF;
  cursor: pointer;
}

.pt-doc-hero__cta:hover {
  background: #FFFFFF;
  color: #49969C;
  transform: scale(1.05);
}

.pt-doc-hero__icons {
  display: flex;
  gap: 8px;
}

.pt-doc-hero__icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pt-doc-hero__icon-btn:hover {
  background: #FFFFFF;
  color: #49969C;
  border-color: #FFFFFF;
  transform: scale(1.05);
}

.pt-doc-hero__icon-btn.is-active {
  background: #FFFFFF;
  color: #E6526F;
  border-color: #FFFFFF;
}

.pt-doc-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pt-doc-stats--3 {
  grid-template-columns: repeat(3, 1fr);
}

.pt-doc-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid #e5eeed;
  box-shadow: 0 4px 14px -10px rgba(15, 23, 42, 0.08);
  transition: all .25s ease;
}

.pt-doc-stat:hover {
  transform: translateY(-6px);
}

.pt-doc-stat__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 auto;
}

.pt-doc-stat--green .pt-doc-stat__icon {
  background: #E5F7EE;
  color: #1F9D55;
}

.pt-doc-stat--teal .pt-doc-stat__icon {
  background: #E8F7F6;
  color: #2F8F9D;
}

.pt-doc-stat--purple .pt-doc-stat__icon {
  background: #EFEBFB;
  color: #6E55C3;
}

.pt-doc-stat--orange .pt-doc-stat__icon {
  background: #FFF1DC;
  color: #D77F00;
}

.pt-doc-stat__body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.pt-doc-stat__num {
  font-size: 20px;
  font-weight: 300;
  color: #262f40;
}

.pt-doc-stat__lbl {
  font-size: 13px;
  color: #525252;
  margin-top: 2px;
}

.pt-doc-side {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 18px 18px 16px;
  border: 1px solid #e5eeed;
  box-shadow: 0 4px 14px -10px rgba(15, 23, 42, 0.08);
  transition: all .25s ease;
}

.pt-doc-side:hover {
  transform: translateY(-6px);
}

.pt-doc-side__title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #262f40;
  font-size: 18px;
  font-weight: 300;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5eeed;
}

.pt-doc-side__title i {
  color: #2F8F9D;
  font-size: 19px;
}

.pt-doc-side__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 15px;
}

.pt-doc-side__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.profile-doctor-bubble {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.pt-doc-side__list li>i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #E8F7F6;
  color: #2F8F9D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex: 0 0 auto;
}

.pt-doc-side__list li>div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}

.pt-doc-side__list li small {
  color: #525252;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pt-doc-side__list li strong {
  color: #262f40;
  font-size: 14px;
  font-weight: 500;
  margin-top: 2px;
  word-break: break-word;
}

.pt-doc-side__next {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #E8F7F6;
  color: #2F8F9D;
  border: 1px solid #BDE6E2;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 14px;
}

.pt-doc-side__next i {
  color: #2F8F9D;
  font-size: 16px;
}

.pt-doc-side__next strong {
  color: #262f40;
  font-weight: 500;
}

.pt-doc-slots-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.pt-doc-slots-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  border-radius: 12px;
  padding: 8px 6px;
  color: #262f40;
  cursor: pointer;
  transition: all .25s ease;
}

.pt-doc-slots-tab strong {
  font-size: 13px;
  color: #262f40;
  font-weight: 500;
}

.pt-doc-slots-tab small {
  font-size: 11px;
  color: #525252;
}

.pt-doc-slots-tab:hover {
  border-color: #2F8F9D;
  color: #2F8F9D;
  transform: scale(1.03);
}

.pt-doc-slots-tab.is-active {
  background: #49969C;
  border-color: #49969C;
}

.pt-doc-slots-tab.is-active strong,
.pt-doc-slots-tab.is-active small {
  color: #FFFFFF;
}

.pt-doc-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.pt-doc-slots-grid>.pt-doc-slot-pill:nth-child(odd):last-child {
  grid-column: 1 / -1;
}

.pt-doc-slot-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid #49969C;
  color: #49969C;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s ease;
}

.pt-doc-slot-pill i {
  font-size: 13px;
}

.pt-doc-slot-pill:hover {
  background: #49969C;
  color: #FFFFFF;
  border-color: #49969C;
  transform: scale(1.05);
}

.pt-doc-side__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pt-doc-side__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #525252;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}

.pt-doc-side__contact li i {
  color: #2F8F9D;
  font-size: 16px;
  flex: 0 0 auto;
}

.pt-doc-section {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 20px 22px;
  border: 1px solid #e5eeed;
  box-shadow: 0 4px 14px -10px rgba(15, 23, 42, 0.08);
  transition: all .25s ease;
}

.pt-doc-section:hover {
  transform: translateY(-6px);
}

.pt-doc-section__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 12px;
}

.pt-doc-section__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 auto;
}

.pt-doc-section__icon--teal {
  background: #E8F7F6;
  color: #2F8F9D;
}

.pt-doc-section__icon--green {
  background: #E5F7EE;
  color: #1F9D55;
}

.pt-doc-section__icon--purple {
  background: #EFEBFB;
  color: #6E55C3;
}

.pt-doc-section__icon--orange {
  background: #FFF1DC;
  color: #D77F00;
}

.pt-doc-section__head-text {
  flex: 1;
  min-width: 0;
}

.pt-doc-section__head-text h3 {
  font-size: 18px;
  font-weight: 300;
  color: #262f40;
  margin: 0 0 2px;
  line-height: 1.3;
}

.pt-doc-section__head-text p {
  color: #525252;
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

.pt-doc-section__link {
  border: none;
  background: none;
  color: #49969C;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
  transition: all .25s ease;
  flex: 0 0 auto;
}

.pt-doc-section__link:hover {
  color: #2F8F9D;
  transform: translateX(2px);
}

.pt-doc-section__body {
  color: #525252;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.pt-doc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pt-doc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  color: #262f40;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  transition: all .25s ease;
}

.pt-doc-tag:hover {
  border-color: #2F8F9D;
  color: #2F8F9D;
  transform: scale(1.03);
}

.pt-doc-tag i {
  color: #1F9D55;
  font-size: 14px;
}

.pt-doc-edu {
  list-style: none;
  margin: 0 0 14px;
  padding: 0 0 0 28px;
  border-left: 2px solid #e5eeed;
  display: grid;
  gap: 14px;
}

.pt-doc-edu li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pt-doc-edu__dot {
  position: absolute;
  left: -35px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #2F8F9D;
  box-shadow: 0 0 0 3px #FFFFFF;
}

.pt-doc-edu li>div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.4;
  min-width: 0;
}

.pt-doc-edu li strong {
  color: #262f40;
  font-size: 14px;
  font-weight: 500;
}

.pt-doc-edu li small {
  color: #525252;
  font-size: 13px;
}

.pt-doc-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pt-doc-cert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  color: #262f40;
  border: 1px solid #e5eeed;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  transition: all .25s ease;
}

.pt-doc-cert:hover {
  border-color: #2F8F9D;
  color: #2F8F9D;
  transform: scale(1.03);
}

.pt-doc-cert i {
  color: #2F8F9D;
  font-size: 14px;
}

.pt-doc-awards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pt-doc-awards li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  color: #525252;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.5;
  transition: all .25s ease;
}

.pt-doc-awards li:hover {
  border-color: #F2C97D;
  transform: translateX(3px);
}

.pt-doc-awards li i {
  color: #D77F00;
  font-size: 18px;
  flex: 0 0 auto;
}

.pt-card.pt-section.notificatio-pt {
  background: none;
  border: none;
  margin-top: 0px;
}

.pt-card.pt-section.payment-his {
  margin-top: 20px;
}

.quick-recent:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2F8F9D, #BDE6E2);
  border-radius: 4px 4px 0 0;
}

.pt-tabs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pt-proc-detail .pt-back-link {
  margin-bottom: 14px;
}

.pt-proc-detail .pt-proc-hero+.pt-doc-stats,
.pt-proc-detail .pt-doc-stats+.pt-doc-section,
.pt-proc-detail .pt-doc-section+.pt-doc-section {
  margin-top: 20px;
}

.pt-proc-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  border-radius: 10px;
  padding: 18px;
  overflow: hidden;
}

.pt-proc-hero__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
  background: linear-gradient(135deg, #F4F9F9, #E8F7F6);
}

.pt-proc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 260px;
}

.pt-proc-hero__media-fallback {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F8F9D;
  font-size: 64px;
}

.pt-proc-hero__category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #2F8F9D;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px -6px rgba(47, 143, 157, 0.35);
}

.pt-proc-hero__category i {
  font-size: 13px;
}

.pt-proc-hero__content {
  padding: 14px 14px 14px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pt-proc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #2F8F9D;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pt-proc-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2F8F9D;
}

.pt-proc-hero__title {
  font-size: 28px;
  font-weight: 300;
  color: #262f40;
  margin: 0 0 10px;
  line-height: 1.2;
}

.pt-proc-hero__desc {
  color: #525252;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.pt-proc-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pt-proc-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #F4F9F9;
  border: 1px solid #e5eeed;
  color: #262f40;
  font-size: 12px;
  font-weight: 400;
}

.pt-proc-hero__chip i {
  color: #2F8F9D;
  font-size: 14px;
}

.pt-timeline {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pt-timeline__item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.pt-timeline__card {
  background: #F8FAFB;
  border: 1px solid #e5eeed;
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.pt-timeline__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pt-tone, #2F8F9D);
  opacity: 0.9;
}

.pt-timeline__card:hover {
  background: #FFFFFF;
  transform: translateY(-4px);
}

.pt-timeline__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5eeed;
}

.pt-timeline__phase {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--pt-tone-soft, #E8F7F6);
  color: var(--pt-tone, #2F8F9D);
}

.pt-timeline__phase i {
  font-size: 13px;
}

.pt-timeline__title {
  font-size: 16px;
  font-weight: 400;
  color: #262f40;
  margin: 0;
  line-height: 1.35;
}

.pt-timeline__timing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #525252;
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  border-radius: 999px;
  padding: 4px 10px;
}

.pt-timeline__timing i {
  color: #2F8F9D;
  font-size: 13px;
}

.pt-timeline__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pt-timeline__points li {
  position: relative;
  padding-left: 20px;
  color: #525252;
  font-size: 14px;
  line-height: 1.55;
}

.pt-timeline__points li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pt-tone, #2F8F9D);
}

.pt-device-detail .pt-back-link {
  margin-bottom: 14px;
}

.pt-device-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: #FFFFFF;
  border: 1px solid #e5eeed;
  border-radius: 22px;
  padding: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px -16px rgba(47, 143, 157, 0.18);
}

.pt-device-hero__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(135deg, #F4F9F9, #E8F7F6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pt-device-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

.pt-device-hero__media-fallback {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F8F9D;
  font-size: 72px;
}

.pt-device-hero__cert {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #10B981;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px -6px rgba(16, 185, 129, 0.3);
}

.pt-device-hero__cert i {
  font-size: 14px;
}

.pt-device-hero__content {
  padding: 14px 14px 14px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pt-device-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #2F8F9D;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pt-device-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2F8F9D;
}

.pt-device-hero__title {
  font-size: 28px;
  font-weight: 300;
  color: #262f40;
  margin: 0 0 10px;
  line-height: 1.2;
}

.pt-device-hero__desc {
  color: #525252;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.pt-device-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pt-device-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #F4F9F9;
  border: 1px solid #e5eeed;
  color: #262f40;
  font-size: 12px;
  font-weight: 400;
}

.pt-device-hero__chip i {
  color: #2F8F9D;
  font-size: 14px;
}

.pt-card.pt-card--accent {
  position: relative;
  border-color: #e5eeed;
  height: 100%;
}

.pt-card.pt-card--accent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--pt-tone, #2F8F9D);
  border-radius: 4px 0 0 4px;
}

.pt-card.pt-card--accent .pt-card__title i {
  color: var(--pt-tone, #2F8F9D);
}

.pt-card.pt-card--accent .pt-bullet-list li::before {
  background: var(--pt-tone, #2F8F9D);
}

.disclamer-ftr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.acm-embed.chat-shell {
  position: relative;
  height: 640px;
  min-height: 0;
  max-width: 1180px;
  width: calc(100% - 32px);
  margin: 60px auto;
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px -28px rgba(13, 46, 67, 0.18);
  display: grid;
  grid-template-columns: 280px 1fr;
  transition: 0.5s;
}

.acm-embed.chat-shell.is-sidebar-collapsed {
  grid-template-columns: 64px 1fr;
}

.acm-embed .chat-sidebar__toggle {
  display: none;
}

.acm-embed .chat-sidebar {
  position: relative;
  inset: auto;
  height: 100%;
  width: 100%;
  transform: none !important;
  border-right: 1px solid #e7eaec;
  background: #f7faf9;
  z-index: 1;
}

.acm-embed .chat-sidebar.is-collapsed {
  width: 100%;
}

.acm-embed .chat-sidebar__overlay {
  display: none;
}

.acm-embed .chat-sidebar__action--danger {
  display: none;
}

.acm-embed .chat-sidebar__top {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 16px 14px;
  border-bottom: 1px solid #eef2f1;
  background: #ffffff;
  flex-shrink: 0;
  min-height: 64px;
}

.acm-embed .chat-sidebar__brand {
  display: inline-flex !important;
  align-items: center;
  min-width: 0;
  text-decoration: none;
  padding: 2px 4px;
  margin: 0;
}

.acm-embed .chat-sidebar__brand-logo {
  display: block !important;
  visibility: visible !important;
  height: 34px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

.acm-embed .chat-sidebar__collapse {
  display: inline-flex !important;
  visibility: visible !important;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #e5eeed;
  background: #ffffff;
  color: #0d2e43;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.acm-embed .chat-sidebar__collapse:hover {
  background: rgba(73, 150, 156, 0.12);
  border-color: rgba(73, 150, 156, 0.35);
  color: #0d2e43;
}

.acm-embed .chat-sidebar__footer {
  border-top: none;
}

.acm-embed .chat-sidebar__footer button.chat-sidebar__action {
  text-align: center;
  justify-content: center;
  background: rgba(73, 150, 156, 0.12);
}

.acm-embed .chat-sidebar.is-collapsed .chat-sidebar__top {
  justify-content: center;
  padding: 18px 8px 14px;
}

.acm-embed .chat-sidebar.is-collapsed .chat-sidebar__collapse {
  display: inline-flex !important;
}

.acm-embed .chat-main {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  position: relative;
}

.acm-embed .chat-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #ffffff;
  border-bottom: 1px solid #eef2f1;
  z-index: 1;
  pointer-events: none;
}

.acm-embed .chat-main__messages {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 84px 32px 12px;
  position: relative;
  z-index: 0;
}

.acm-embed .chat-composer {
  border-top: 1px solid #eef2f1;
  padding: 14px 20px 18px;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.acm-embed::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(73, 150, 156, 0.08), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(189, 230, 226, 0.18), transparent 60%);
  z-index: -1;
  pointer-events: none;
  border-radius: 32px;
}

aside.chat-sidebar.is-collapsed .chat-sidebar__top a.chat-sidebar__brand {
  display: none !important;
}

.acm-embed .chat-main__messages,
.acm-embed .chat-sidebar,
.acm-embed .chat-sidebar__history {
  scrollbar-width: thin;
  scrollbar-color: rgba(73, 150, 156, 0.45) transparent;
}

.acm-embed .chat-main__messages::-webkit-scrollbar,
.acm-embed .chat-sidebar::-webkit-scrollbar,
.acm-embed .chat-sidebar__history::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.acm-embed .chat-main__messages::-webkit-scrollbar-track,
.acm-embed .chat-sidebar::-webkit-scrollbar-track,
.acm-embed .chat-sidebar__history::-webkit-scrollbar-track {
  background: transparent;
  margin: 6px 0;
}

.acm-embed .chat-main__messages::-webkit-scrollbar-thumb,
.acm-embed .chat-sidebar::-webkit-scrollbar-thumb,
.acm-embed .chat-sidebar__history::-webkit-scrollbar-thumb {
  background: rgba(73, 150, 156, 0.45);
  border-radius: 999px;
  border: 1px solid transparent;
  background-clip: padding-box;
}

.acm-embed .chat-main__messages::-webkit-scrollbar-thumb:hover,
.acm-embed .chat-sidebar::-webkit-scrollbar-thumb:hover,
.acm-embed .chat-sidebar__history::-webkit-scrollbar-thumb:hover {
  background: rgba(73, 150, 156, 0.7);
  background-clip: padding-box;
}

.acm-embed .chat-main__messages::-webkit-scrollbar-button,
.acm-embed .chat-sidebar::-webkit-scrollbar-button,
.acm-embed .chat-sidebar__history::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.acm-embed .chat-main__messages::-webkit-scrollbar-corner,
.acm-embed .chat-sidebar::-webkit-scrollbar-corner,
.acm-embed .chat-sidebar__history::-webkit-scrollbar-corner {
  background: transparent;
}

.care-plan-doc-page {
  background: transparent;
  padding: 0;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
}

.care-plan-doc {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 18px;
  padding: 28px 30px 24px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 18px;
  letter-spacing: 0.04em;
}

.care-plan-doc i,
.care-plan-doc [class^="ri-"],
.care-plan-doc [class*=" ri-"] {
  font-style: normal;
  line-height: 1;
}

.care-plan-doc .care-plan-doc__hero-mark i {
  font-size: 16px !important;
}

.care-plan-doc .care-plan-doc__patient-illo i {
  font-size: 88px !important;
}

.care-plan-doc .care-plan-doc__patient-pin i {
  font-size: 14px !important;
}

.care-plan-doc .care-plan-doc__patient-row-icon i {
  font-size: 18px !important;
}

.care-plan-doc .care-plan-doc__card-icon i {
  font-size: 17px !important;
}

.care-plan-doc .care-plan-doc__list-tick i {
  font-size: 17px !important;
}

.care-plan-doc .care-plan-doc__card-illo-main {
  font-size: 92px !important;
}

.care-plan-doc .care-plan-doc__card-illo-sub i {
  font-size: 52px !important;
}

.care-plan-doc .care-plan-doc__chat-ic--lg {
  font-size: 92px !important;
}

.care-plan-doc .care-plan-doc__chat-ic--sm {
  font-size: 66px !important;
}

.care-plan-doc .care-plan-doc__chat-sparkle--1 {
  font-size: 22px !important;
}

.care-plan-doc .care-plan-doc__chat-sparkle--2 {
  font-size: 14px !important;
}

.care-plan-doc .care-plan-doc__btn i {
  font-size: 16px !important;
}

.care-plan-doc__hero {
  position: relative;
  border-radius: 20px;
  padding: 20px 30px 20px;
  overflow: hidden;
  background: linear-gradient(120deg, #2F8F9D 0%, #49969C 55%, #5BBFB6 100%);
  color: #ffffff;
  box-shadow: 0 18px 38px -22px rgba(47, 143, 157, 0.5);
  isolation: isolate;
}

.care-plan-doc__hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  z-index: 0;
  pointer-events: none;
}

.care-plan-doc__hero-shape--1 {
  width: 240px;
  height: 240px;
  top: -90px;
  right: -60px;
}

.care-plan-doc__hero-shape--2 {
  width: 140px;
  height: 140px;
  bottom: -60px;
  right: 180px;
  background: rgba(255, 255, 255, 0.08);
}

.care-plan-doc__hero-shape--3 {
  width: 70px;
  height: 70px;
  top: 40px;
  right: 300px;
  background: rgba(255, 255, 255, 0.18);
}

.care-plan-doc__hero-spark {
  position: absolute;
  color: rgba(255, 255, 255, 0.7);
  z-index: 1;
  pointer-events: none;
}

.care-plan-doc__hero-spark--1 {
  top: 28px;
  right: 80px;
  transform: rotate(15deg);
}

.care-plan-doc__hero-spark--2 {
  bottom: 28px;
  right: 22px;
  transform: rotate(-12deg);
  color: rgba(255, 255, 255, 0.5);
}

.care-plan-doc .care-plan-doc__hero-spark--1 {
  font-size: 26px !important;
}

.care-plan-doc .care-plan-doc__hero-spark--2 {
  font-size: 18px !important;
}

.care-plan-doc__hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.care-plan-doc__hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.care-plan-doc__hero-mark {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
}

.care-plan-doc__hero-mark i {
  color: #ffffff;
}

.care-plan-doc .care-plan-doc__hero-mark i {
  font-size: 18px !important;
}

.care-plan-doc__hero-brand {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.4px;
}

.care-plan-doc__hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.6px;
  backdrop-filter: blur(6px);
  margin-left: 4px;
}

.care-plan-doc__hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fef0d6;
  box-shadow: 0 0 0 3px rgba(254, 240, 214, 0.3);
}

.care-plan-doc__hero-title {
  font-size: 36px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.15;
  letter-spacing: 0.2px;
}

.care-plan-doc__hero-title span {
  color: #fef0d6;
  font-weight: 500;
}

.care-plan-doc__hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 20px;
  max-width: 640px;
  line-height: 1.6;
  font-weight: 300;
}

.care-plan-doc__hero-sub strong {
  color: #fef0d6;
  font-weight: 500;
}

.care-plan-doc__patient {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 14px;
  padding: 22px 26px;
}

.care-plan-doc__patient-visual {
  position: relative;
  width: 150px;
  height: 150px;
  min-width: 150px;
  border-radius: 14px;
  background: #e8f7f6;
  border: 1px solid #e5eeed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.care-plan-doc__patient-illo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #49969C;
}

.care-plan-doc__patient-illo i {
  color: #49969C;
}

.care-plan-doc__patient-pin {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  color: #49969C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(73, 150, 156, 0.18);
  border: 1px solid #e5eeed;
}

.care-plan-doc__patient-pin i {
  color: #49969C;
}

.care-plan-doc__patient-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.care-plan-doc__patient-row {
  display: grid;
  grid-template-columns: 22px 160px 1fr;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #eef2f4;
}

.care-plan-doc__patient-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.care-plan-doc__patient-row-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #49969C;
}

.care-plan-doc__patient-row-icon i {
  color: #49969C;
}

.care-plan-doc__patient-label {
  font-weight: 500;
  color: #1f2a37;
}

.care-plan-doc__patient-value {
  color: #525252;
  font-weight: 300;
}

.care-plan-doc__patient-value--accent {
  color: #49969C;
  font-weight: 500;
}

.care-plan-doc__card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e8eef0;
  border-radius: 10px;
  padding: 22px 24px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}

.care-plan-doc__card:hover {
  transform: translateY(-5px);
}

.care-plan-doc__card--lavender,
.care-plan-doc__card--sky,
.care-plan-doc__card--cream,
.care-plan-doc__card--teal {
  background: #ffffff;
  border-color: #e5eeed;
}

.care-plan-doc__card-body {
  position: relative;
  z-index: 1;
  max-width: 78%;
}

.care-plan-doc__card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.care-plan-doc__card-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.care-plan-doc__card-icon i {
  font-size: 16px;
  line-height: 1;
}

.care-plan-doc__card-icon--green,
.care-plan-doc__card-icon--blue {
  background: #e8f7f6;
  color: #49969C;
}

.care-plan-doc__card-icon--green i,
.care-plan-doc__card-icon--blue i {
  color: #49969C;
}

.care-plan-doc__card-icon--orange {
  background: #fde6c4;
  color: #f59e0b;
}

.care-plan-doc__card-icon--orange i {
  color: #f59e0b;
}

.care-plan-doc__card-icon--teal {
  background: #cfe7e8;
  color: #2F8F9D;
}

.care-plan-doc__card-icon--teal i {
  color: #2F8F9D;
}

.care-plan-doc__card-title {
  font-size: 17px;
  font-weight: 500;
  margin: 0;
  color: #1f2a37;
}

.care-plan-doc__card-title--green,
.care-plan-doc__card-title--blue {
  color: #49969C;
}

.care-plan-doc__card-title--orange {
  color: #f59e0b;
}

.care-plan-doc__card-title--teal {
  color: #2F8F9D;
}

.care-plan-doc__card-note {
  font-size: 12px;
  color: #525252;
  font-style: italic;
  margin-left: auto;
}

.care-plan-doc__card-illo {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  width: 150px;
  height: 150px;
  pointer-events: none;
  z-index: 0;
}

.care-plan-doc__card-illo--plan .care-plan-doc__card-illo-bg {
  display: none;
}

.care-plan-doc__card-illo-main {
  position: absolute;
  top: 14px;
  left: 22px;
  color: #49969C;
  opacity: 1;
}

.care-plan-doc__card-illo-sub {
  position: absolute;
  bottom: 2px;
  right: 4px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle,
      #d6ecec 0%,
      #e8f7f6 55%,
      rgba(232, 247, 246, 0.3) 78%,
      transparent 90%);
  border: none;
  box-shadow: none;
}

.care-plan-doc__card-illo-sub i {
  color: #49969C;
}

.care-plan-doc__card-illo--chat {
  width: 150px;
  height: 120px;
  right: 22px;
}

.care-plan-doc__chat-ic {
  position: absolute;
  color: #49969C;
  opacity: 0.55;
  line-height: 1;
}

.care-plan-doc__chat-ic--lg {
  top: 4px;
  left: 0;
}

.care-plan-doc__chat-ic--sm {
  bottom: 4px;
  right: 4px;
  opacity: 0.4;
}

.care-plan-doc__chat-sparkle {
  position: absolute;
  color: #49969C;
  opacity: 0.4;
}

.care-plan-doc__chat-sparkle--1 {
  top: -4px;
  right: 22px;
  transform: rotate(15deg);
}

.care-plan-doc__chat-sparkle--2 {
  top: 28px;
  right: 6px;
  opacity: 0.3;
  transform: rotate(-20deg);
}

.care-plan-doc__chat-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #49969C;
  opacity: 0.4;
}

.care-plan-doc__chat-dot--1 {
  top: 12px;
  right: 38px;
  width: 4px;
  height: 4px;
  opacity: 0.3;
}

.care-plan-doc__chat-dot--2 {
  top: 50px;
  right: 2px;
  width: 6px;
  height: 6px;
}

.care-plan-doc__chat-dot--3 {
  bottom: 14px;
  left: 6px;
  width: 4px;
  height: 4px;
  opacity: 0.3;
}

.care-plan-doc__plan-name {
  font-size: 15px;
  font-weight: 500;
  color: #1f2a37;
  margin: 6px 0 12px;
}

.care-plan-doc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.care-plan-doc__list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 0;
  font-size: 14px;
  color: #525252;
  line-height: 1.55;
  font-weight: 300;
}

.care-plan-doc__list-tick {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: #49969C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.care-plan-doc__list-tick i {
  color: #49969C;
}

.care-plan-doc__list-dot {
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background: #49969C;
  margin-top: 8px;
  flex-shrink: 0;
}

.care-plan-doc__list li em {
  color: #49969C;
  font-style: normal;
  font-weight: 500;
}

.care-plan-doc__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.care-plan-doc__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.care-plan-doc__tag--purple {
  background: #efe7fb;
  color: #7c3aed;
  border-color: #dccffa;
}

.care-plan-doc__tag--orange {
  background: #fdecd2;
  color: #f59e0b;
  border-color: #fbdfa9;
}

.care-plan-doc__tag--yellow {
  background: #fef0d0;
  color: #b45309;
  border-color: #fbe0a8;
}

.care-plan-doc__tag--blue {
  background: #dceaf7;
  color: #2563eb;
  border-color: #c4dbf3;
}

.care-plan-doc__tag--green {
  background: #e8f7f6;
  color: #49969C;
  border-color: #cfe7e8;
}

.care-plan-doc__tag--gray {
  background: #eef2f5;
  color: #475569;
  border-color: #e1e7eb;
}

.care-plan-doc__instr {
  list-style: none;
  margin: 0;
  padding: 0;
}

.care-plan-doc__instr li {
  position: relative;
  padding: 8px 0 8px 18px;
  font-size: 14px;
  color: #525252;
  line-height: 1.55;
  border-bottom: 1px dashed #eef2f4;
  font-weight: 300;
}

.care-plan-doc__instr li:last-child {
  border-bottom: none;
}

.care-plan-doc__instr li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
}

.care-plan-doc__instr li strong {
  color: #1f2a37;
  font-weight: 500;
  margin-right: 4px;
}

.care-plan-doc__list--questions li {
  font-size: 14px;
  color: #525252;
}

.care-plan-doc__disclaimer {
  font-size: 12px;
  color: #525252;
  font-style: italic;
  text-align: center;
  margin: 8px 6px 0;
  line-height: 1.55;
  padding-top: 12px;
  border-top: 1px dashed #e5eeed;
  font-weight: 300;
}

.care-plan-doc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-top: 6px;
}

.care-plan-doc__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid #49969C;
  color: #49969C;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s ease-in all;
  text-decoration: none;
}

.care-plan-doc__btn:hover {
  transform: scale(1.05);
  background: #49969C;
  color: #ffffff;
}

.care-plan-doc__btn--primary {
  background: #49969C;
  color: #ffffff;
  border-color: #49969C;
}

.care-plan-doc__btn--primary:hover {
  background: #49969C;
  color: #ffffff;
}

.care-plan-list {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 40px #0000000d;
  gap: 16px;
}

.care-plan-list__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.care-plan-list__head-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.care-plan-list__title {
  font-size: 22px;
  font-weight: 500;
  color: #1f2a37;
  margin: 0 0 4px;
}

.care-plan-list__sub {
  font-size: 14px;
  color: #525252;
  margin: 0;
  line-height: 1.5;
  max-width: 560px;
}

.care-plan-list__table-wrap {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.care-plan-list__table-scroll {
  overflow-x: auto;
  border-radius: inherit;
}

.care-plan-list__table thead th:first-child {
  border-top-left-radius: 10px;
}

.care-plan-list__table thead th:last-child {
  border-top-right-radius: 10px;
}

.care-plan-list__table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.care-plan-list__table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.care-plan-list__table thead th:first-child,
.care-plan-list__table tbody td:first-child {
  padding-left: 35px;
}

.care-plan-list__table thead th:last-child,
.care-plan-list__table tbody td:last-child {
  padding-right: 35px;
  border-right: 1px solid #e5e7eb;
}

.care-plan-list__table tbody tr:last-child td {
  border-bottom: 1px solid #e5e7eb;
}

.care-plan-list__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  color: #1f2a37;
}

.care-plan-list__table thead th {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #262f40;
  border-left: 1px solid #e5e7eb;
  padding: 10px 15px;
  white-space: nowrap;
  border-top: solid 1px #e5e7eb;
}

.care-plan-list__table thead {
  background: #f6f8fa;
}

.care-plan-list__table tbody td {
  padding: 10px 15px;
  font-size: 14px;
  color: #262f40;
  border-left: 1px solid #e5e7eb;
  white-space: nowrap;
  border-top: solid 1px #e5e7eb;
}

.care-plan-list__table tbody tr:hover {
  background: #fafbfc;
}

.care-plan-list__path {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
  white-space: nowrap;
  text-transform: uppercase;
  line-height: 1.5;
}

.care-plan-list__path--surgical {
  background: #f3eafd;
  color: #7c3aed;
}

.care-plan-list__path--nonsurgical {
  background: #d8f3e3;
  color: #15a263;
}

.care-plan-list__date {
  font-size: 14px;
  color: #1f2a37;
  white-space: nowrap;
}

.care-plan-list__th-action,
.care-plan-list__action-cell {
  text-align: right;
  width: 1%;
  white-space: nowrap;
}

.care-plan-list__view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: #EAF5F4;
  color: #2F8F9D;
  border: 1px solid #B8DDD9;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.care-plan-list__view-btn:hover {
  background: #D8ECEA;
  border-color: #2F8F9D;
  color: #1f6f7b;
  box-shadow: 0 4px 10px -6px rgba(47, 143, 157, 0.45);
}

.care-plan-list__view-btn:active {
  transform: translateY(1px);
}

.care-plan-list__view-btn:focus-visible {
  outline: 2px solid #2F8F9D;
  outline-offset: 2px;
}

.care-plan-list__view-btn i {
  font-size: 18px !important;
  line-height: 1;
  color: inherit;
}

.care-plan-list__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-top: 1px solid #e5eeed;
  flex-wrap: wrap;
}

.care-plan-list__pagination-info {
  font-size: 13px;
  color: #6b7280;
}

.care-plan-list__pagination-info strong {
  color: #1f2a37;
  font-weight: 600;
}

.care-plan-list__pagination-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.care-plan-list__page-btn {
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #d8e3e2;
  background: #ffffff;
  color: #1f2a37;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease,
    color 0.15s ease, box-shadow 0.15s ease;
}

.care-plan-list__page-btn:hover:not(:disabled) {
  background: #EAF5F4;
  border-color: #B8DDD9;
  color: #2F8F9D;
}

.care-plan-list__page-btn:focus-visible {
  outline: 2px solid #2F8F9D;
  outline-offset: 2px;
}

.care-plan-list__page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.care-plan-list__page-btn--active,
.care-plan-list__page-btn--active:hover {
  background: #2F8F9D;
  border-color: #2F8F9D;
  color: #ffffff;
  box-shadow: 0 4px 10px -6px rgba(47, 143, 157, 0.55);
}

.care-plan-list__page-btn--nav i {
  font-size: 18px;
  line-height: 1;
}

.care-plan-list__page-ellipsis {
  min-width: 18px;
  text-align: center;
  color: #6b7280;
  font-size: 13px;
  user-select: none;
}

@media (max-width: 767px) {
  .care-plan-list__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .care-plan-list__pagination {
    justify-content: center;
  }

  .care-plan-list__pagination-info {
    width: 100%;
    text-align: center;
  }
}

.care-plan-doc__empty {
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 18px;
  padding: 60px 32px;
  text-align: center;
  box-shadow: 0 12px 30px -22px rgba(31, 42, 55, 0.18);
  max-width: 600px;
  margin: 40px auto;
}

.care-plan-doc__empty-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #e8f7f6;
  color: #49969C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 18px;
}

.care-plan-doc__empty-icon i {
  font-size: 32px !important;
  color: #49969C;
}

.care-plan-doc__empty h2 {
  font-size: 22px;
  font-weight: 500;
  color: #1f2a37;
  margin: 0 0 8px;
}

.care-plan-doc__empty p {
  font-size: 14px;
  color: #525252;
  max-width: 480px;
  margin: 0 auto 22px;
  line-height: 1.55;
}

.care-plan-doc__skeleton {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  margin: 40px auto;
}

.care-plan-doc__sk-bar,
.care-plan-doc__sk-card {
  background: linear-gradient(90deg, #f0f3f5 25%, #e5eaed 50%, #f0f3f5 75%);
  background-size: 200% 100%;
  animation: care-plan-doc-shimmer 1.6s infinite;
  border-radius: 12px;
}

.care-plan-doc__sk-bar {
  height: 18px;
}

.care-plan-doc__sk-bar--40 {
  width: 40%;
}

.care-plan-doc__sk-bar--70 {
  width: 70%;
}

.care-plan-doc__sk-card {
  height: 160px;
}

@keyframes care-plan-doc-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.care-plan-doc__cond-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.care-plan-doc__cond-item {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr auto;
  align-items: center;
  gap: 16px;
}

.care-plan-doc__cond-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2a37;
}

.care-plan-doc__cond-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: #e8f7f6;
  color: #49969C;
  font-size: 12px;
  font-weight: 500;
}

.care-plan-doc__cond-bar {
  position: relative;
  height: 8px;
  background: #eef2f4;
  border-radius: 999px;
  overflow: hidden;
}

.care-plan-doc__cond-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, #2F8F9D, #5BBFB6);
  border-radius: 999px;
  animation: care-plan-fill-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  transform-origin: left center;
  overflow: hidden;
}

.care-plan-doc__cond-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.45) 50%,
      transparent 100%);
  animation: care-plan-bar-shimmer 2.4s ease-in-out infinite;
}

@keyframes care-plan-fill-in {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes care-plan-bar-shimmer {
  0% {
    transform: translateX(-100%);
  }

  60%,
  100% {
    transform: translateX(120%);
  }
}

.care-plan-doc__cond-item:hover .care-plan-doc__cond-name {
  color: #2F8F9D;
}

.care-plan-doc__cond-score {
  font-size: 13px;
  font-weight: 600;
  color: #49969C;
  min-width: 44px;
  text-align: right;
}

.care-plan-doc__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.care-plan-doc__row>.care-plan-doc__card {
  margin: 0;
}

.care-plan-doc__row--stretch {
  align-items: stretch;
}

.care-plan-doc__row--stretch>.care-plan-doc__card {
  height: 100%;
}

.care-plan-doc__treat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.care-plan-doc__treat {
  position: relative;
  border: 1px solid #e5eeed;
}

.care-plan-doc__treat--recommended {
  border: 1.5px solid #49969C;
}

.care-plan-doc__treat-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #49969C;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.care-plan-doc__treat-badge i {
  color: #ffffff;
  font-size: 12px !important;
}

.care-plan-doc__treat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.care-plan-doc__treat-list li {
  position: relative;
  padding: 12px 14px;
  border: 1px dashed #e5eeed;
  border-radius: 10px;
  background: #f7faf9;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.care-plan-doc__treat-list li strong {
  font-size: 14px;
  font-weight: 500;
  color: #1f2a37;
}

.care-plan-doc__treat-list li span {
  font-size: 13px;
  color: #525252;
  font-weight: 300;
  line-height: 1.5;
}

.care-plan-doc__proc-desc {
  font-size: 14px;
  color: #525252;
  line-height: 1.6;
  margin: 0 0 16px;
  font-weight: 300;
}

.care-plan-doc__proc-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.care-plan-doc__proc-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #f7faf9;
  border: 1px solid #e5eeed;
  border-radius: 10px;
}

.care-plan-doc__proc-meta-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 9px;
  background: #e8f7f6;
  color: #49969C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.care-plan-doc__proc-meta-icon i {
  color: #49969C;
  font-size: 18px !important;
}

.care-plan-doc__proc-meta-item strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #1f2a37;
  line-height: 1.2;
  margin-bottom: 2px;
}

.care-plan-doc__proc-meta-item span {
  display: block;
  font-size: 13px;
  color: #525252;
  font-weight: 300;
}

.care-plan-doc__proc-steps-title {
  font-size: 14px;
  font-weight: 500;
  color: #1f2a37;
  margin: 0 0 10px;
}

.care-plan-doc__proc-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.care-plan-doc__proc-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #525252;
  line-height: 1.55;
  font-weight: 300;
}

.care-plan-doc__proc-step-no {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: #49969C;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.care-plan-doc__milestones {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.care-plan-doc__milestone {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #1f2a37;
  line-height: 1.55;
}

.care-plan-doc__milestone-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1f2a37;
  margin-top: 8px;
  flex-shrink: 0;
}

.care-plan-doc__milestone-text strong {
  color: #1f2a37;
  font-weight: 600;
  margin-right: 2px;
}

.care-plan-doc__doc-card {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.care-plan-doc__doc-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 150, 156, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.care-plan-doc__doc {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.care-plan-doc__doc-avatar-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  min-width: 96px;
}

.care-plan-doc__doc-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2F8F9D 0%, #5BBFB6 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 4px rgba(73, 150, 156, 0.15), 0 10px 24px -10px rgba(73, 150, 156, 0.45);
}

.care-plan-doc__doc-avatar i {
  color: #ffffff;
}

.care-plan-doc .care-plan-doc__doc-avatar i {
  font-size: 44px !important;
}

.care-plan-doc__doc-name-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.care-plan-doc__doc-chip--success {
  background: #e6f7ee;
  border-color: #c7ecd8;
  color: #10b981;
  font-weight: 500;
}

.care-plan-doc .care-plan-doc__doc-chip--success i {
  color: #10b981;
}

.care-plan-doc__doc-info {
  min-width: 0;
}

.care-plan-doc__doc-name {
  font-size: 17px;
  font-weight: 500;
  color: #1f2a37;
  margin: 0 0 2px;
}

.care-plan-doc__doc-spec {
  font-size: 14px;
  color: #49969C;
  font-weight: 500;
  margin: 0 0 10px;
}

.care-plan-doc__doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.care-plan-doc__doc-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f7faf9;
  border: 1px solid #e5eeed;
  font-size: 12px;
  color: #525252;
  font-weight: 400;
}

.care-plan-doc__doc-chip i {
  color: #49969C;
  font-size: 13px !important;
}

.blog-cta {
  padding: 0 0 70px;
  background: var(--surg-teal-soft);
}

.blog-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 40px;
  text-align: center;
}

.blog-cta__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
  color: #262f40;
  margin: 0 0 14px;
}

.blog-cta__text {
  color: #525252;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 auto 28px;
  max-width: 560px;
}

.blog-cta__btn span {
  display: inline-flex;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.blog-cta__btn:hover span {
  transform: translateX(4px);
}

.bd-page-root {
  background: #ffffff;
  overflow-x: hidden;
}

.bd-fade-in {
  animation: smBlogDetailFade 0.35s ease-out both;
}

@keyframes smBlogDetailFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bd-hero-band {
  /* Vertical padding only — horizontal gutters come from the inner
     `.container` so the hero band visually matches every other public
     page (full-bleed background + Bootstrap-container content). */
  padding: 115px 0 64px;
  position: relative;
  overflow: hidden;
}

.bd-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.bd-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.bd-breadcrumb-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.bd-breadcrumb-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.bd-breadcrumb-sep {
  font-size: 12px;
}

.bd-breadcrumb-current {
  color: rgba(255, 255, 255, 0.8);
}

.bd-article-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgb(78 159 161 / 79%);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.bd-article-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.bd-article-title {
  font-size: 36px;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 16px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.bd-article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.bd-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.bd-reviewer {
  color: var(--surg-teal);
  font-weight: 500;
}

.bd-meta-divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.bd-hero-extras {
  margin-top: 24px;
  padding-top: 20px;
  padding-bottom: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
}

.bd-layout {
  /* Width / horizontal gutter come from the parent `.container`. We keep
     only the vertical rhythm and grid definition here so the layout matches
     every other public page (which wraps content in `<div class="container">`). */
  padding: 48px 0 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

.bd-layout-single {
  grid-template-columns: 1fr;
}

.bd-main-column {
  min-width: 0;
  max-width: 100%;
}

.bd-aside-column {
  position: sticky;
  top: 92px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.bd-section-wrap {
  margin-bottom: 4px;
  min-width: 0;
  max-width: 100%;
}

.bd-section-wrap:last-child {
  margin-bottom: 0;
}

.bd-article-intro {
  font-size: 15px;
  color: #64748b;
  line-height: 1.8;
  margin: 0 0 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #e5e7eb;
}

.bd-section-title {

  font-size: 24px;
  color: #273047;
  margin: 44px 0 14px;
  line-height: 1.3;
  font-weight: 400;
}

.bd-section-body {
  font-size: 15px;
  color: #525252;
  line-height: 1.8;
  margin: 0 0 18px;
}

.bd-visual-block {
  background: rgba(232, 245, 245, 0.52);
  border: 1.5px dashed #e5e7eb;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  margin: 28px 0;
}

.bd-vb-icon {
  width: 52px;
  height: 52px;
  background: rgba(78, 159, 161, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.bd-vb-label {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 4px;
}

.bd-vb-sub {
  font-size: 12px;
  color: #94a3b8;
}

.bd-checklist {
  margin: 20px 0 28px;
}

.bd-check-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
  align-items: flex-start;
}

.bd-check-item:last-child {
  border-bottom: none;
}

.bd-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(78, 159, 161, 0.12);
  border: 2px solid var(--surg-teal);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.bd-check-icon svg {
  width: 11px;
  height: 11px;
}

.bd-check-text {
  font-size: 15px;
  color: #525252;
  line-height: 1.6;
}

.bd-signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0 32px;
  align-items: stretch;
}

.bd-signal-card {
  border-radius: 12px;
  padding: 22px 22px 22px 26px;
  border: none;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  min-height: 100%;
}

.bd-signal-header {
  margin-bottom: 16px;
}

.bd-signal-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.bd-signal-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.bd-signal-list li {
  font-size: 15px;
  line-height: 1.55;
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: none;
}

.bd-signal-list li+li {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.bd-signal-list-glyph {
  flex-shrink: 0;
  width: 1.35rem;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1px;
}

.bd-video-block {
  background: #0b1f3a;
  border-radius: 12px;
  overflow: hidden;
  margin: 28px 0;
  position: relative;
}

.bd-video-inner {
  padding: 52px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.bd-video-play {
  width: 60px;
  height: 60px;
  background: var(--surg-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.bd-video-play:hover {
  transform: scale(1.08);
  background: var(--surg-teal-dark);
}

.bd-play-tri {
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 20px solid #fff;
  margin-left: 5px;
}

.bd-video-title {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.bd-video-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.bd-video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--surg-teal);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 2;
}

.bd-video-duration {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 2;
}

.bd-pull-quote {
  margin: 32px 0;
  padding: 24px 28px;
  background: rgba(232, 245, 245, 0.52);
  border-left: 4px solid var(--surg-teal);
  border-radius: 0 8px 8px 0;
}

.bd-pull-quote p {
  font-style: italic;
  font-size: 18px;
  color: #273047;
  line-height: 1.6;
  margin: 0 0 10px;
}

.bd-pull-quote cite {
  font-size: 13px;
  color: #94a3b8;
  font-style: normal;
}

.bd-pull-quote cite strong {
  color: var(--surg-teal);
}

.bd-cta-strip {
  background: linear-gradient(135deg, #0b1f3a 0%, #243460 100%);
  border-radius: 14px;
  padding: 32px 36px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.bd-cta-strip::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(78, 159, 161, 0.12);
  pointer-events: none;
}

.bd-cta-strip::before {
  content: "";
  position: absolute;
  right: 30px;
  bottom: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(78, 159, 161, 0.08);
  pointer-events: none;
}

.bd-cta-content {
  position: relative;
  z-index: 1;
}

.bd-cta-content h3 {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.3px;
}

.bd-cta-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

.bd-btn-primary {
  flex-shrink: 0;
  z-index: 1;
  white-space: nowrap;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 8px;
  background: var(--surg-teal);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.bd-btn-primary:hover {
  background: var(--surg-teal-dark);
  color: #fff;
}

.bd-cta-rich-row {
  flex: 1 1 100%;
  width: 100%;
  margin-top: 8px;
  z-index: 1;
  position: relative;
}

.bd-faq-list {
  margin: 16px 0 32px;
}

.bd-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.bd-faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.bd-faq-item-open {
  border-color: var(--surg-teal);
  box-shadow: 0 0 0 3px rgba(78, 159, 161, 0.15);
}

.bd-faq-q {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #262f40;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #fff;
  user-select: none;
}

.bd-faq-q:hover {
  background: #f8fafc;
}

.bd-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.bd-faq-item-open .bd-faq-icon {
  background: var(--surg-teal);
  border-color: var(--surg-teal);
  color: #fff;
  transform: none;
}

.bd-faq-icon svg {
  width: 12px;
  height: 12px;
}

.bd-faq-a {
  padding: 0 20px 16px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.75;
  display: none;
}

.bd-faq-a-open {
  display: block;
}

.bd-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.bd-related-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}

.bd-related-card:hover {
  border-color: var(--surg-teal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.bd-related-tag {
  font-size: 11px;
  font-weight: 300;
  color: var(--surg-teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.bd-related-card p {
  font-size: 13px;
  color: #273047;
  line-height: 1.55;
  font-weight: 500;
  margin: 0;
}

.bd-related-arrow {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 10px;
  display: block;
}

.bd-toc-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bd-toc-title {
  font-size: 16px;
  font-weight: 300;
  color: #273047;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}

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

.bd-toc-list-item {
  padding: 7px 0;
  border-bottom: 1px solid #f1f5f9;
}

.bd-toc-list-item:last-child {
  border-bottom: none;
}

.bd-toc-link {
  font-size: 14px;
  color: #64748b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s;
}

.bd-toc-link:hover {
  color: var(--surg-teal);
}

.bd-toc-link-active {
  color: var(--surg-teal);
  font-weight: 500;
}

.bd-toc-num {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #94a3b8;
  flex-shrink: 0;
}

.bd-sidebar-cta {
  background: rgba(78, 159, 161, 0.08);
  border: 1px solid rgba(78, 159, 161, 0.35);
  border-radius: 12px;
  padding: 22px;
}

.bd-sidebar-cta h4 {
  font-size: 16px;
  font-weight: 300;
  color: #273047;
  margin: 0 0 8px;
  line-height: 1.4;
}

.bd-sidebar-cta p {
  font-size: 15px;
  color: #525252;
  line-height: 1.6;
  margin: 0 0 14px;
}

.bd-sidebar-cta .bd-btn-primary {
  width: 100%;
  box-sizing: border-box;
}

.bd-share-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
}

.bd-share-heading {
  margin: 0 0 12px;
}

.bd-share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bd-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease,
    box-shadow 0.18s ease;
}

.bd-share-btn:hover {
  background: var(--surg-teal) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(73, 150, 156, 0.25);
}

.bd-error-wrap {
  text-align: center;
  padding: 48px 24px;
}

.bd-error-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(73, 150, 156, 0.12);
  color: var(--surg-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}

.bd-error-title {
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 8px;
}

.bd-error-desc {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 20px;
}

.bd-error-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--surg-teal);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(73, 150, 156, 0.08);
  transition: background 0.2s ease, gap 0.2s ease, color 0.2s ease;
}

.bd-error-back-link:hover {
  background: rgba(73, 150, 156, 0.16);
  color: #0d9488;
  gap: 12px;
}

@keyframes smBlogDetailShimmer {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

.bd-skel-bar {
  display: block;
  border-radius: 6px;
  background: linear-gradient(90deg,
      #eef5f6 0%,
      rgba(73, 150, 156, 0.18) 50%,
      #eef5f6 100%);
  background-size: 400px 100%;
  background-repeat: no-repeat;
  animation: smBlogDetailShimmer 1.4s infinite linear;
}

.bd-skel-hero {
  /* Vertical padding only; horizontal gutters come from the inner `.container`. */
  padding: 115px 0 64px;
  background: linear-gradient(90deg, #243b6b 0%, #0b2344 100%);
}

.bd-skel-body {
  /* Width / horizontal gutter come from the wrapping `.container`. */
  padding: 48px 0 80px;
}

.bd-skel-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

.bd-skel-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  background: #fff;
}

.bd-skel-side {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px;
  background: #fff;
}

.bd-skel-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bd-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.bd-vb-img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  object-fit: contain;
}

.bd-vb-img+.bd-vb-label {
  margin-top: 16px;
}

.bd-video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.bd-video-frame iframe,
.bd-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bd-video-frame video {
  object-fit: cover;
}

.bd-toc-missing {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
  font-size: 12px;
  line-height: 1.5;
}

.bd-share-glyph {
  font-weight: 700;
}

.bd-share-heading {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.bd-related-section {
  border-radius: 12px;
}

.bd-related-section--padded {
  padding: 16px;
}

.bd-rich-tables-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 16px;
  margin-bottom: 12px;
}

.bd-rich-tables-wrap--hero {
  margin-top: 0;
  margin-bottom: 12px;
}

.bd-rich-tables-wrap--sidebar {
  margin-top: 12px;
  margin-bottom: 12px;
}

.bd-rich-table-block {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 20px;
}

.bd-rich-table-block:last-child {
  margin-bottom: 0;
}

.bd-rich-tables-wrap--hero .bd-rich-table-block {
  margin-bottom: 18px;
}

.bd-rich-tables-wrap--sidebar .bd-rich-table-block {
  margin-bottom: 14px;
}

.bd-rich-table {
  width: 100%;
  max-width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 14px;
  line-height: 1.45;
}

.bd-rich-table--hero {
  color: rgba(255, 255, 255, 0.92);
}

.bd-rich-table--sidebar {
  min-width: 0;
  font-size: 12px;
}

.bd-rich-table td {
  border: 1px solid rgba(203, 213, 225, 0.95);
  padding: 10px 12px;
  vertical-align: top;
  background: #ffffff;
  word-break: break-word;
  overflow-wrap: break-word;
}

.bd-rich-table--hero td {
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
}

.bd-rich-table--sidebar td {
  padding: 6px 8px;
}

.bd-rich-table-title {
  display: block;
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
}

.bd-rich-tables-wrap--hero .bd-rich-table-title {
  margin-bottom: 10px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
}

.bd-rich-tables-wrap--sidebar .bd-rich-table-title {
  margin-bottom: 8px;
  font-size: 14px;
}

.bd-rich-bullets {
  margin-top: 16px;
  margin-bottom: 0;
  padding-left: 1.35rem;
  list-style-type: disc;
  list-style-position: outside;
}

.bd-rich-bullets--hero {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.88);
}

.bd-rich-bullets--sidebar {
  font-size: 13px;
}

.bd-rich-bullets li {
  margin-bottom: 8px;
  padding-left: 2px;
}

.bd-rich-bullets li:last-child {
  margin-bottom: 0;
}

.bd-skel-spacer-xs {
  height: 8px;
}

.bd-skel-spacer-sm {
  height: 12px;
}

.bd-skel-spacer-md {
  height: 14px;
}

.bd-skel-spacer-lg {
  height: 18px;
}

.f-logo img {
    max-width: 200px;
}