@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

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

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

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


:root {
    --space-grotesk: "Space Grotesk", sans-serif;
    --roboto: "Roboto", sans-serif;
    --poppins: "Poppins", sans-serif;
    --lato: "Lato", sans-serif;
    --primaryColor: #40BC6D;
    --whiteColor: #fff;
    --blackColor: #000;
}

html {
    scroll-behavior: smooth;
}

body {	
    font-family: var(--poppins);
    font-size: 15px;
    font-weight: 400;    
	color: #333333;	
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    color: #111827;
    font-family: var(--space-grotesk);
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

a:hover{
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0; 
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    font-size: 16px;
    cursor: pointer;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

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

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.bg-included {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flex-col-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gap-x-26 {
    row-gap: 26px;
}

/* body {
    background-color: #ddd;
    margin: 0;
} */

body {
    background-color: #fff;
    margin: 0;
}

*,
*:after,
*:before {
    box-sizing: border-box;
}

/*======= header-area design =======*/
.wrapper {
    background-color: #fff;
    max-width: 450px;
    margin-inline: auto;
    position: relative;
}

.container {
    padding-inline: 16px;
    max-width: 450px;
}

.nav-area {
    position: fixed;
    top: 0;
    background-color: #fff;
    width: 100%;
    max-width: 450px;
    border-bottom: 1px solid #ddd;
    z-index: 9999;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 14px;
}

.hightlight-text {
    background-color: #000;
    padding-block: 7px;
    text-align: center;
    font-size: 12px;
    color: white;
}

.nav-inner .logo img,
.sidebar-header .logo img {
    max-width: 22px;
}

.menu-right-comp {
    display: flex;
    align-items: center;
    gap: 25px;
}

.lang-toggler {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}

.lang-toggler span {
    cursor: pointer;
}

.lang-toggler .on {
    font-weight: 500;
}

.lang-toggler:after {
    content: "";
    display: block;
    width: 1px;
    height: 62%;
    background-color: #000;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.humberger-menu button {
    cursor: pointer;
    padding: 0;
}

.humberger-menu {
    height: 9.5px;
    width: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.humberger-menu span {
    height: 1px;
    width: 100%;
    background-color: #000;
    transition: all 0.35s ease;
}

.menu-sticky .humberger-menu span {
    background-color: #222222f3;
}

/* ACTIVE STATE → X MARK */
.humberger-menu.active span.line01 {
  transform: translateY(3px) rotate(45deg);
}

.humberger-menu.active span.line02 {
  transform: translateY(-5.8px) rotate(-45deg);
}

/* Sidebar */
.sidebar{
    position: fixed;
    top: -10%;
    left: 0px;
    width: 100%;
    height: 0;
    background: #fff;
    color: #fff;
    transition: 0.2s;
    z-index: 1001;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
}

.sidebar.active{
    top: 75px;
    opacity: 1;
    visibility: visible;
    height: calc(100vh - 75px);
}

/* Overlay */
.sidebar-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1000;
}

.sidebar-overlay.active{
    opacity: 1;
    visibility: visible;
}

/* Sidebar menu */
.sidebar-menu{
    list-style: none;
    padding: 0;
    padding-top: 2px;
}

.sidebar-menu li {
    margin: 13px 0;
    opacity: 0;
}

.sidebar.active .sidebar-menu li {
    opacity: 1;
}

.sidebar-menu a{
    color: #000;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
}

/* Header */
.sidebar-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.sticky-button {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 40px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all .35s ease;
}

.sticky-button .btn-primary {
    padding: 9px 24px;
    font-size: 12px;
    background-color: #0000005d;
    backdrop-filter: blur(3px);
}

.sticky-button.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

/* Sidebar  */
.home-inner h2 {
    font-weight: 700;
    font-size: 29px;
    line-height: 121%;
    padding-bottom: 30px;
    padding-top: 122px;
}

.home-inner ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 35px;
}

.home-inner ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    color: #6b7280;
}

.home-inner ul li svg {
    transform: translateY(3.5px);
    flex: 0 0 16px;
}

.btn-primary, .btn-danger {
    background-color: #000;
    color: #fff;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--poppins);
}

.btn-primary:hover, .btn-danger:hover {
    background-color: #363636;
}

.hero-banner {
    padding-top: 45px;
    padding-bottom: 20px;
}

.hero-banner img {
    border-radius: 12px;
}

.bg-sec {
    background-color: #f4faf2d0;
}

.sec-heading {
    font-size: 26px;
    padding-bottom: 28px;
}

.how-it-works ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.how-it-works ul li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.how-it-works ul li .number {
    height: 26px;
    width: 26px;
    background-color: var(--primaryColor);
    line-height: 26px;
    border-radius: 50%;
    text-align: center;
    flex: 0 0 26px;
    color: #fff;
    font-size: 14px;
    margin-top: 3px;
}

.how-it-works ul li h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    color: #111827;
    padding-bottom: 5px;
}

.how-it-works ul li p {
    font-weight: 400;
    font-size: 13px;
    line-height: 144%;
    color: #4b5563;
}

.py-40 {
    padding-block: 40px;
}

.features-area.fea02 .grid .single-box .icon {
    height: 48px;
    width: 48px;
    background-color: #000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
 
.features-area.fea02 .grid {
    grid-template-columns: 1fr;
}

.features-area.fea02 .grid .single-box h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 156%;
    color: #111827;
    font-family: var(--space-grotesk);
    padding-bottom: 5px;
}

.features-area.fea02 .grid p {
    font-weight: 400;
    font-size: 13px;
    line-height: 144%;
    color: #4b5563;
}


.features-area .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.features-area .grid .single-box {
    border: 1px solid #ddd;
    padding: 22px 12px;
    border-radius: 10px;
}

.features-area .grid .single-box .icon {
    height: 32px;
    width: 32px;
    background-color: #000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.features-area .grid .single-box .icon img {
    max-width: 20px;
}

.features-area .grid .single-box h3 {
    font-size: 15px;
    padding-top: 12px;
    font-weight: 500;
    font-family: var(--poppins);
}

.paragrap-head {
    padding-bottom: 28px;
}

.paragrap-head .sec-heading {
    padding-bottom: 10px;
}

.paragrap-head p {
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #374151;
}

.consultation-boxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consultation-boxes .single-box {
    background: #fff;
    border: 1px solid rgba(200, 200, 200, 0.47);
    padding: 20px 17px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.consultation-boxes .single-box .header h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    color: #111827;
}

.consultation-boxes .single-box .header span {
    font-weight: 700;
    font-size: 18px;
    line-height: 144%;
    color: #16a34a;
    text-wrap: nowrap;
}

.consultation-boxes .single-box p {
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #374151;
}

.consultation-boxes .single-box .button .btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 8px;
}

.why-patients-area ul li .number {
    height: 22px;
    width: 22px;
    flex: 0 0 22px;
    line-height: 21px;
}

.why-patients-area ul li p {
    font-weight: 400;
    font-size: 15px;
    line-height: 151%;
    color: #374151;
}

.pt-14 {
    padding-top: 14px;
}

.telemedicine-banner img {
    width: 100%;
    filter: grayscale(100%);
}


.telemedicine-bottom-pt ul li h4 {
    padding: 0;
    font-weight: 500;
    padding-top: 3px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    overflow: hidden;
    transition: all .3s ease;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.faq-header h4 {
    margin: 5px 0 0;
    font-size: 17px;
    padding-right: 30px;
}

.faq-header small {
    color: #374151;
    font-weight: 600;
    font-size: 14px;
}

.icon {
    font-size: 20px;
    transition: transform .3s;
    margin-top: 24px;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    padding: 0 20px;
}

.faq-content p {
    padding-bottom: 20px;
    color: #555;
}

.faq-item.active .icon {
    transform: rotate(180deg);
}

.footer-area { 
    background-color: #1d273d;
}

.footer-area .footer-logo img {
    max-width: 32px;
}

.footer-top-col01 p {
    font-weight: 400;
    font-size: 14px;
    line-height: 163%;
    color: #d1d5db;
    padding-top: 24px;
}

.footer-top-col01 ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 25px;
}

.footer-top-col01 ul li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 400;
    font-size: 14px;
    line-height: 163%;
    color: #d1d5db;
}

.footer-top-col01 ul li svg {
    flex: 0 0 20px;
}

.footer-col2st {
    padding-top: 30px;
}

.footer-col2st h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 156%;
    color: #fff;
    padding-bottom: 16px;
}

.footer-col2st ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col2st ul li a {
    color: #d1d5db;
}

.pt-0 {
    padding-top: 0 !important;
}

.footer-top-col01 small {
    display: block;
    font-size: 10px;
}

.footer-top-col01 ul li .info {
    margin-top: -4px;
}

.footer-top-lists ul li:first-child {
    align-items: flex-start !important;
    padding-top: 4px;
}

.footer-top-lists ul li:first-child svg {
    transform: translateY(3.3px);
}

.footer-top-col01 ul li a {
   color: #d1d5db;
}

.footer-sociala ul {
    display: flex;
    flex-direction: row;
    gap: 18px;
}

.footer-copyright {
    padding-top: 30px;
    border-top: 1px solid #2e3c57;
    margin-top: 30px;
    text-align: center;
    color: #d1d5db;
}

.footer-copyright p {
    padding-bottom: 4px;
}

.footer-copyright .secure {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.price-consultation img {
    max-width: 28px !important;
}

.affordable-fea-gird .single-box .icon {
    margin-top: 0;
}



/*===== Privacy Policy Page Here =====*/

.policy-hero {
    padding-top: 90px;
    padding-bottom: 60px;
    background: #FCFCFD;
}

.policy-hero-back a {
    /*! padding: 4px 22px; */
    /*! background: #e0e8f9; */
    border-radius: 38px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 400;
    font-size: 12px;
    line-height: 233%;
    color: #374151;
    display: none;
}

.policy-hero-matters {
    margin-top: 30px;
    /*! padding: 8px 20px; */
    border-radius: 9999px;
    /*! background: rgba(74, 222, 128, 0.14); */
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.policy-hero-matters p {
    font-weight: 400;
    font-size: 14px;
    line-height: 153%;
    /*! color: #16a34a; */
}

.policy-hero-content {
    padding-top: 20px;
}

.policy-hero-content h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 114%;
    color: #151c28;
    /*! font-family: var(--roboto); */
}

.policy-hero-content p {
    padding-top: 20px;
    font-weight: 400;
    font-size: 15px;
    line-height: 175%;
    color: #6a7181;
}

.policy-hero-items {
    padding-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.policy-hero-box {
    border: 1px solid #e1e4ea;
    border-radius: 12px;
    background: #fff;
    padding: 18px;
    text-align: center;
}

.policy-hero-box p {
    font-size: 12px;
    line-height: 142%;
    text-align: center;
    color: #151c28;
}

.policy-hero-box div {
    background: #e0f5e2;
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.policy-content-box {
    margin-top: 40px;
    margin-bottom: 10px;
    /*! padding: 30px 25px; */
    /*! border: 1px solid #e1e4ea; */
    border-radius: 16px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.policy-content-box p {
    font-weight: 400;
    font-size: 14px;
    line-height: 174%;
    color: #151c28;
}

.policy-content-box span {
    font-weight: 400;
    font-size: 13px;
    line-height: 175%;
    color: #6a7181;
}

.policy-items {
    padding-top: 24px;
    display: flex;
    gap: 12px;
}

.policy-items-left {
    background: #e0f5e2;
    border-radius: 12px;
    max-width: 40px;
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
}

.policy-items-right h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 161%;
    letter-spacing: -0.03em;
    color: #151c28;
}

.policy-items-right-items {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    /*! max-width: 265px; */
}

.policy-items-right-items p {
    font-weight: 400;
    font-size: 14px;
    line-height: 174%;
    color: #6a7181;
}

.policy-items-right-items ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.policy-items-right-items ul li {
    position: relative;
    font-weight: 400;
    font-size: 14px;
    line-height: 176%;
    color: #6a7181;
    padding-left: 14px;
}


.policy-items-right-items ul li::after {
    content: "";
    position: absolute;
    height: 5px;
    width: 5px;
    display: block;
    background: #6a7181;
    border-radius: 50%;
    left: 0;
    top: 10px;
}

/*====== Terms of Service Page Here ======*/

.terms-hero {
    padding-top: 90px;
    padding-bottom: 28px;
    background: #FCFCFD;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 12px;
}

.terms-hero-icon {
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.terms-hero-icon h4 {
    font-weight: 700;
    font-size: 14px;
    line-height: 143%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    /*! color: #16a34a; */
}

.terms-hero-content {
    padding-top: 20px;
}

.terms-hero-content h2 {
	font-weight: 700;
	font-size: 30px;
	line-height: 114%;
	color: #151c28;
	/*! font-family: var(--roboto); */
}

.terms-hero-content p {
    padding-top: 12px;
    font-weight: 400;
    font-size: 15px;
    line-height: 168%;
    color: #64748b;
}

.terms-items .policy-items-left i {
    color: var(--primaryColor);
}

.terms-items-warning {
    border: 1px solid #f7deba;
    border-radius: 8px;
    background: #fff7eb;
    padding: 20px 13px;
}

.terms-items-warning {
    display: flex;
    gap: 7px;
}

.terms-items-warning p {
    font-weight: 400;
    font-size: 13px;
    line-height: 153%;
    color: #7a541f;
}

.terms-items .policy-items-right-items {
	max-width: 330px;
}

.terms-items .policy-items-right h2 {
    font-weight: 600;
    font-size: 19px;
    line-height: 144%;
    color: #020817;
}

.terms-service {
    padding-bottom: 60px;
    background: #FCFCFD;
}

.terms-items .policy-items-right-items ul li::after {
    background: #868686;
    height: 6px;
    width: 6px;
}

.terms-items-extra {
    display: flex;
    gap: 12px;
}

.terms-items-extra p {
    font-weight: 400;
    font-size: 14px;
    line-height: 174%;
    color: #020817;
    margin-top: -5px;
}

.terms-items-emergency {
    margin-top: 38px;
    border: 1px solid #f0d1d1;
    border-radius: 12px;
    background: #fdf2f2;
    padding: 28px 46px;
    text-align: center;
}

.terms-items-emergency h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 154%;
    text-align: center;
    color: #020817;
    padding: 6px 0;
    font-family: var(--roboto);
}

.terms-items-emergency p {
    font-weight: 400;
    font-size: 14px;
    line-height: 152%;
    text-align: center;
    color: #64748b;
}

.terms-items-emergency p strong {
    font-weight: 700;
    color: #d92626;
}

.features-grid .single-box .icon {
    margin-top: 0;
}

.updt-pirt ul {
    width: 100%;
    display: block;
    margin-bottom: -20px;
}

.font-semibold {
    font-weight: 600 !important;
}

body.no-scroll {
    overflow: hidden; 
    height: 100vh; 
}

body.no-scroll > * {
    overflow: hidden;
}

.single-box {
    scroll-margin-top: 120px;
}

section,
footer {
    scroll-margin-top: 100px;
}

.medical-elit-banner {
    padding-top: 30px;
}

.medical-elit-banner img {
    border-radius: 12px;
    width: 100%;
}

body.treedi-lock{
  position: fixed;
  overflow: hidden;
  width: 100%;
  top: 0 !important;
}

.treedi-consult-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.treedi-consult-overlay.active {
    opacity: 1;
    visibility: visible;
}

.treedi-consult-popup {
    position: fixed;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 16px 16px 0 0;
    padding: 20px 16px;
    z-index: 9999;
    transition: .2s;
    bottom: -180%;
    height: calc(100vh - 10px);
    height: calc(100dvh - 10px);
    height: calc(100svh - 10px);
    display: flex;
    flex-direction: column;
}

.treedi-consult-popup.active {
    bottom: 0;
}

.treedi-step-box {
    background: #f4faf2d0;
    padding: 15px 22px;
    border-radius: 12px;
}

.treedi-step-box h3 {
    font-size: 17px;
    font-family: var(--space-grotesk);
    padding-bottom: 10px;
    font-weight: 700;
}

.treedi-step-box ul li:after {
    background-color: #979494 !important;
}

.treedi-step-box .learn-more a {
    color: #000;
    color: #555555;
    font-size: 13px;
    font-weight: 500;
    text-decoration: underline;
}

.treedi-step-box {
    position: relative;
}

.treedi-step-box .question-mark {
    position: absolute;
    right: 15px;
    top: 14px;
    max-width: 16px;
}

.treedi-progress {
    height: 8px;
    background: #ddd;
    border-radius: 20px;
    margin-bottom: 5px;
    margin-top: 18px;
}

.treedi-progress span {
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    border-radius: 20px;
    transition: .3s;
}

.treedi-step-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 21px;
}

/* Chat */
.treedi-chatbox {
    position: fixed;
    left: 0;
    width: 100%;
    bottom: -180%;
    height: calc(100vh - 18px);
    height: calc(100dvh - 18px);
    height: calc(100svh - 18px);
    background: #fff;
    z-index: 9999;
    transition: .2s;
    border-radius: 16px 16px 0 0;
}

.treedi-chatbox.active {
    bottom: 0;
}

/* Swipe button */

.treedi-swipe-btn {
    background: #000;
    color: #fff;
    height: 50px;
    min-height: 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    margin-bottom: 8px;
    overflow: hidden;
}

.treedi-swipe-handle {
    position: absolute;
    left: 4px;
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .4s ease;
}

.treedi-swipe-handle img {
	width: 26px;
}

.treedi-swipe-text {
    position:absolute;
    left:50%;
    transform:translate(-50%,0) !important;
    white-space:nowrap;
    pointer-events:none;
    transition:opacity .2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.treedi-swipe-text img {
    max-width: 17px;
}

.treedi-swipe-handle{
    will-change: transform, width;
    touch-action: none;
}

.treedi-swipe-btn{
    touch-action: none;
}

.treedi-swipe-handle {
    z-index: 2;
}

.treedi-step p {
    font-size: 14px;
}

.treedi-step-header div {
    font-weight: 600;
    font-size: 16px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.treedi-check-wp {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-top: 14px;
    font-size: 13px;
    padding-bottom: 14px;
    line-height: 150%;
}

.treedi-check-wp .input {
    accent-color: #000;
    transform: translateY(3px);
    height: 15px;
    width: 15px;
    flex: 0 0 15px;
    margin: 0;
}

.treedi-chatbox {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    /*! gap: 15px; */
    justify-content: space-between;
}

.treedi-chat-header {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    line-height: 100%;
    width: 100%;
}

.treedi-chat-input .chat-input-text {
    padding-left: 41px;
    padding-right: 45px;
    font-family: var(--poppins);
    height: 100%;
    width: 100%;
    font-size: 13px;
    color: #000;
    padding-bottom: 7px;
}

.treedi-chat-input .chat-input-wrapper input::placeholder {
    color: #161616;
}

.treedi-chat-input button {
    height: 38px;
    width: 38px;
    flex: 0 0 38px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.chat-input-text {
    border-radius: 30px;
    background-color: #F3F4F6;
    border-radius: 30px;
    width: 100%;
    height: 48px;
    padding: 6px;
    padding-left: 0;
}

.chat-file-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.chat-input-text::placeholder {
    color: #9ca3af;
}

.chat-content-wrap-col {
    padding-top: 15px;
}

.chat-content-wrap-col .bot-chat-content {
    max-width: 250px;
    margin-right: auto;
}

.list-content-wp ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.list-content-wp ul li {
    position: relative;
    font-size: 13px;
    padding-left: 15px;
}

.list-content-wp ul li:after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background-color: #ddd;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 0px;
}

.consult-modal-close {
    position: absolute;
    right: 14px;
    top: 16px;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f42e;
    color: #fff;
}

.treedi-step-box .top-info {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    justify-content: center;
    text-align: center;
}

.treedi-step-box .top-info svg {
 transform: translateY(4px) scale(0.8);   
 margin-left: auto;
}

.treedi-connecting {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.treedi-connecting.active {
    opacity: 1;
    visibility: visible;
}

.treedi-connecting-inner {
    text-align: center;
}

.treedi-loader {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid #e5e7eb;
    border-top-color: var(--primaryColor);
    animation: treediSpin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes treediSpin {
    to {
        transform: rotate(360deg);
    }
}

.treedi-connecting p {
    font-size: 14px;
    color: #333;
}

html, body{
  touch-action: manipulation;
  overscroll-behavior: none;
}

.tredi-chat-header-wp {
	background-color: #000;
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	margin: -20px;
	padding: 14px;
	border-radius: 16px 16px 0 0;
    border-top: 1px solid #464646;
}

.tredi-chat-header-wp h3 {
    font-size: 17px;
    color: #fff;
    line-height: 69%;
    padding-top: 6px;
}

.tredi-chat-header-wp span {
    color: #fff;
    font-size: 11px;
}

.tredi-chat-header-wp .profile {
    flex: 0 0 30px;
    width: 0px;
    height: 32px;
}

.tredi-chat-header-wp .profile img {
	max-width: 30px;
}

.treedi-chatbox {
    padding-inline: 0;
}

.treedi-chat-inp-wrap {
    background: linear-gradient(to top, #fff, transparent);
    position: sticky;
    bottom: 0;
    left: 0;
    margin-inline: 16px;
    /*! padding-top: 12px; */
    margin-top: auto;
}

.treedi-chatbox .treedi-chat-input {
    display: flex;
    gap: 8px;
    align-items: end;
}

.treedi-chat-inp-wrap .info-text {
    text-align: center;
    font-size: 12px;
    color: #525252;
    margin-bottom: -11px;
    padding-top: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.treedi-chatbox .treedi-step-box {
	background: #f4f4f4f4;
	padding: 9px 13px;
	/*! border-radius: 10px; */
    margin-inline: auto;
    opacity: 0.8;
	margin-bottom: 18px;
    border: 1px solid #e9e7e7;
	border-radius: 0;
}

.treedi-chatbox .treedi-step-box span {
    font-size: 15px;
}

.new-chat-box {
    overflow: auto;
}

.new-chat-box-inner {
    padding: 10px 14px;
    max-height: 520px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.new-chat-box-user {
    max-width: 480px;
    margin-left: auto;
    /*! border: 1px solid rgba(200, 200, 200, 0.47); */
    border-radius: 10px;
    padding: 8px 13px;
}

.new-chat-box-user p {
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    color: #000;
}

.new-chat-box-bot {
    max-width: 480px;
}

.new-chat-box-bot p {
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    color: #000;
}

.new-chat-box-user.align-left {
    margin-left: 0;
}
.new-chat-box-bot.align-right {
    margin-left: auto;
}
.chat-upload-progress.align-right {
    margin-left: auto;
}

.chat-input-wrapper {
    position:relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px;
    background: #f3f4f6;
    border-radius: 25px;
}

.chat-input-text{
    flex:1;
    border:none;
    outline:none;
    resize:none;
    background:transparent;
    font-size:14px;
    line-height:20px;
    max-height:120px;
    overflow-y:auto;
    height:auto;
    scrollbar-width: none;
    padding-left: 42px;
}

.chat-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.chat-input-wrapper{
    position: relative;
    width: 100%;
}

.chat-send-btn {
    position: absolute;
    right: 5px;
    bottom: 5px;
}

.chat-send-btn {
    opacity: .3;
    cursor: not-allowed;
    transition: .2s;
}

.chat-send-btn.active {
    opacity: 1;
    cursor: pointer;
}

.tredi-chat-header-wp .bott {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 4px;
}

.tredi-chat-header-wp .bott p {
	padding: 2.5px 6px 2.5px 15px;
	border-radius: 25px;
	color: var(--primaryColor);
	border: 1px solid var(--primaryColor);
	position: relative;
	font-size: 10px;
    line-height: 100%;
    margin-top: 4px;
}

.tredi-chat-header-wp .bott p:after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background-color: var(--primaryColor);
    border-radius: 50%;
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    left: 6px;
}

.new-chat-box-inner div:last-child{
    min-height: fit-content;
    padding-bottom: 12px;
}

.new-chat-box {
    font-family: var(--lato) !important;
    font-size: 16px;
}

.treedi-chat-input .chat-input-text {
    font-family: var(--lato) !important;
    font-size: 16px;
}

.treedi-chat-inp-wrap .info-text {
	font-family: var(--lato) !important;
}

.chat-file-btn {
	position: absolute;
	left: 19px;
	bottom: 27px;
	z-index: 999;
}

.treedi-chatbox .treedi-step-box .top-info {
   color: #000;
}

.treedi-step-box .font-semibold {
    font-weight: 700;
}

/* New code here */
.sideabar-contact-info {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    color: #000;
    font-size: 18px;
}

.sideabar-contact-info .item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


/* new section design added here */
.inperson-section {
    border-bottom: 1px solid #ddd;
}

/* Badge pill at top */
.inperson-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #edf7f1;
    border: 1px solid #b6e4c8;
    border-radius: 999px;
    padding: 5px 13px;
    margin-bottom: 16px;
}
 
.inperson-badge span {
    font-size: 12px;
    font-weight: 600;
    color: #16a34a;
    letter-spacing: 0.02em;
}
 
/* Intro paragraph */
.inperson-intro {
    font-size: 14px;
    line-height: 170%;
    color: #4b5563;
    margin-bottom: 22px;
}
 
/* Location card */
.inperson-location-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 16px 14px;
    margin-bottom: 22px;
}
 
.inperson-location-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    background-color: #16a34a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.inperson-location-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 3px !important;
    padding: 0 !important;
}
 
.inperson-location-name {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    line-height: 140%;
    padding: 0 !important;
    margin-bottom: 4px !important;
}
 
.inperson-location-note {
    font-size: 12px;
    color: #6b7280;
    padding: 0 !important;
}
 
/* Can-do block */
.inperson-can-do {
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 18px 16px;
    margin-bottom: 18px;
}
 
.inperson-can-do-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px !important;
    padding: 0 !important;
}
 
.inperson-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
 
.inperson-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: #374151;
}
 
.inperson-dot {
    display: block;
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background-color: #40BC6D;
    margin-top: 8px;
}
 
/* Footer note */
.inperson-footer-note {
    font-size: 13px;
    line-height: 165%;
    color: #6b7280;
    border-left: 3px solid #40BC6D;
    padding-left: 12px;
    margin-top: 4px;
}

.location-building {
    padding-bottom: 20px;
}

.location-building img {
    border-radius: 8px;
}

.faq-item.active .faq-content {
    max-height: 450px;
}

/* for scrolling chat content */
.new-chat-box {
    flex: 1;                      /* Let it grow to fill available space */
    overflow: hidden;             /* Prevent double scrollbars */
    display: flex;
    flex-direction: column;
}

.new-chat-box-inner#chat-messages {
    flex: 1 1 auto;               /* Grow + shrink, but prefer growing */
    overflow-y: auto;             /* THIS IS THE KEY LINE – enable vertical scroll here */
    overflow-x: hidden;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;                /* Important for flex child with overflow */
    scroll-behavior: smooth;      /* Optional: nicer scroll */
}

/* Remove or increase this – 520px is too rigid */
.new-chat-box-inner {
    max-height: none !important;  /* or set to something much larger like 80vh */
}

/* ───────────────────────────────────────────────
   Custom Alert Modal – replacement for alert()
───────────────────────────────────────────────── */
.custom-alert-modal {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.custom-alert-modal.active {
  display: flex;
  pointer-events: auto;
}

.custom-alert-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.custom-alert-dialog {
  position: relative;
  width: 90%;
  max-width: 420px;
  margin: 16px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.35);
  overflow: hidden;
  transform: scale(0.92);
  opacity: 0;
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.custom-alert-modal.active .custom-alert-dialog {
  transform: scale(1);
  opacity: 1;
}

.custom-alert-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #e5e7eb;
  background: #f8fafc;
}

.custom-alert-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  font-family: var(--space-grotesk);
}

.custom-alert-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
  padding: 0 8px;
  margin: -8px -12px -8px 0;
}

.custom-alert-close:hover {
  color: #374151;
}

.custom-alert-body {
  padding: 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #374151;
}

.custom-alert-footer {
  padding: 0 20px 20px;
  text-align: right;
}

.custom-alert-ok {
  min-width: 96px;
  padding: 10px 20px;
  background: var(--primaryColor);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s;
}

.custom-alert-ok:hover {
  background: #36a55f;
}

/* ---------------------------------- */
/* ------- Stripe Payment Box ------- */
/* ---------------------------------- */
.payment-container {
  background: #121212;
  border-radius: 16px;
  padding: 24px;
  max-width: 480px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border: 1px solid #222;
}

/* Header with blue dot + stripe */
.payment-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.stripe-logo {
  position: relative;
  width: 74px;
}

.stripe-logo svg {
  display: block;
}

/* Blue dot next to "stripe" */
.stripe-logo2::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 9px;
  width: 10px;
  height: 10px;
  background: #635BFF;
  border-radius: 50%;
  box-shadow: 0 0 8px #635BFF;
}

/* Text next to logo */
.payment-title {
  font-size: 17px;
  font-weight: 600;
  color: #e0e0e0;
  letter-spacing: -0.3px;
  padding: 0 0 5px 0 !important;
}

/* Amount row */
.payment-body {
  margin-bottom: 8px;
}

.amount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.label {
  color: #cccccc;
  font-weight: 500;
}

.amount {
  color: #ffffff;
  font-weight: 700;
}

/* Blue Checkout Button */
.stripe-checkout-btn {
  width: 100%;
  background: #635BFF;
  color: white;
  border: none;
  padding: 17px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(99, 91, 255, 0.35);
  text-decoration: none;
}

.stripe-checkout-btn:hover {
  background: #4f47e6;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 91, 255, 0.45);
}

.stripe-checkout-btn .amount {
  font-weight: 700;
  font-size: 17px;
  opacity: 0.95;
}

/* Fix the weird nesting you have in PHP */
.payment-container .stripe-checkout-btn button {
  all: unset;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*
// Frontend video
*/
.video-container {
	position: relative;
	width: 100%;
	display: block;
}

.hero-video {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
	cursor: pointer;
}

.mute-indicator {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 38px;
	color: rgba(255,255,255,0.95);
	background: rgba(0,0,0,0.55);
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;     /* IMPORTANT: lets clicks pass through */
	z-index: 10;
	box-shadow: 0 4px 15px rgba(0,0,0,0.4);
	transition: all 0.3s ease;
}

.mute-indicator.hidden {
	opacity: 0;
	pointer-events: none;
}

/* Mobile – make dialog take more width */
@media (max-width: 480px) {
  .custom-alert-dialog {
	width: 94%;
	margin: 12px;
  }
  .custom-alert-header h3 {
	font-size: 17px;
  }
  .custom-alert-body {
	font-size: 14.5px;
  }
  .btn-danger {
    margin-bottom: 8px;
  }
}
