@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,700;0,900;1,400&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

/* =============================================================
    CSS MAP (Table of Contents)
    1) Design Tokens (CSS variables)
    2) Base & Layout (body, containers, panels)
    3) Header
    4) Hero
    5) Searchbox
    6) Manset Alt (section-manset_bloklari)
    7) Markalar (Brands)
    8) Hızlı Kategori Kutuları
    9) Öne Çıkan Doktorlar
    ------------------------------------------------------------- */

/* ========================== 1) Design Tokens ========================== */
:root{
    --transition:all .3s linear;
	--Colors-Primary-1000: #0D1B2A;
	--Colors-Primary-900: #162649;
	--Colors-Primary-800: #243C6D;
	--Colors-Primary-700: #315292;
	--Colors-Primary-600: #3F68B6;
	--Colors-Primary-500: #5080D9;
	--Colors-Primary-400: #739FE5;
	--Colors-Primary-300: #99B9EC;
	--Colors-Primary-200: #C0D3F3;
	--Colors-Primary-100: #E6EEFA;
	--Colors-Secondary-1000: #21090F;
	--Colors-Secondary-900: #43131E;
	--Colors-Secondary-800: #6C1E32;
	--Colors-Secondary-700: #962946;
	--Colors-Secondary-600: #BF345F;
	--Colors-Secondary-500: #E8417A;
	--Colors-Secondary-400: #F17096;
	--Colors-Secondary-300: #F597B3;
	--Colors-Secondary-200: #F9BED1;
	--Colors-Secondary-100: #FDE6EE;
	--Colors-Neutral-1000: #111112;
	--Colors-Neutral-900: #28282B;
	--Colors-Neutral-800: #3F3F44;
	--Colors-Neutral-700: #56565D;
	--Colors-Neutral-600: #6C6C77;
	--Colors-Neutral-500: #838390;
	--Colors-Neutral-400: #9C9CA7;
	--Colors-Neutral-300: #B5B5BE;
	--Colors-Neutral-200: #CFCFD4;
	--Colors-Neutral-100: #F9F9F9;

    /* Glass variables */
    --lg-bg-color: rgba(255, 255, 255, 0.25);
    --lg-highlight: rgba(255, 255, 255, 0.75);
    --lg-text: #ffffff;
    --lg-hover-glow: rgba(255, 255, 255, 0.4);
    --lg-red: #fb4268;
    --lg-grey: #5b5b5b;
}
/* ========================== 2) Base & Layout ========================== */
body{
	font-family: 'Poppins', sans-serif;
	background-color: #F1F9FA;
	font-variant-ligatures: none;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
/* Global page transition loader */
.page-loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(4px);
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
}
.page-loader.active {
	display: flex;
}
.page-loader-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid #E6EEFA;
	border-top-color: #5080D9;
	border-radius: 50%;
	animation: page-loader-spin 0.8s linear infinite;
}
@keyframes page-loader-spin {
	to { transform: rotate(360deg); }
}
.flex{
	display:flex;
}
/* Global WooCommerce breadcrumbs */
.site-breadcrumbs .container { padding-top: 10px; padding-bottom: 10px; }
.site-breadcrumbs .woocommerce-breadcrumb { margin: 0; font-size: 14px; color: #6B7280; }
.site-breadcrumbs .woocommerce-breadcrumb a { color: #374151; text-decoration: none; }
.site-breadcrumbs .woocommerce-breadcrumb a:hover { text-decoration: underline; }
.site-breadcrumbs .woocommerce-breadcrumb .breadcrumb-separator { margin: 0 6px; color: #9CA3AF; }
header.site-header{
    background:#fff;
}
.eh-panel{
	padding: 20px 0;
	margin:20px 0;
}
.eh-panel-head{
    display:flex;
}
.eh-swiper-buttons {
    position: relative;
    width: 80px;
    height: 40px;
    display: flex;
}
.eh-panel-head h3 {
    font-size: 2em;
    font-weight: 400;
}

.eh-panel-head h3 b {
    font-style: italic;
    font-weight: 600;
}
.eh-swiper-buttons > div {
    border: 1px solid var(--Colors-Neutral-600);
    color: 1px solid var(--Colors-Neutral-600);
    width: 35px;
    height: 35px;
    border-radius: 25px;
    font-size: 17px;
    margin: 0;
    top: 0;
	transition:var(--transition);
}
.eh-swiper-buttons > div:hover	{
	background: var(--Colors-Primary-300);
}

.eh-swiper-buttons > div:after {
    font-size: inherit;
}

.eh-swiper-buttons > div.swiper-button-prev {
    left: 0;
}

.eh-swiper-buttons > div.swiper-button-next {
    right: 0;
}
.swiper-navigation{
    display: inline-block;
    position: relative;
    right: 0;
    width: 100px;
}
.bg-glass{
	position: relative;
    background: transparent;
}
.bg-glass:before{
	content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 2px -1px 1px var(--lg-highlight), inset 0 0 10px var(--lg-highlight);
    pointer-events: none;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f5f5f5, #ffffff);
    backdrop-filter: blur(10px);
    z-index: 0;
}
.bg-glass-inner{
	position: relative;
	z-index:1;
	font-style:normal;
}
.btn-glass:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 1px 0px 0 var(--lg-highlight), inset 0 0 2px var(--lg-highlight);
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.btn-glass {
    position: relative;
    background: rgba(255,255,255,.1);
    padding: 18px;
    border-radius: 30px;
}

.btn-glass i {
    padding: 0 9px;
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1300px;
    }
}

/* ============================== 3) Header ============================= */
.topbar {
    display: flex;
    padding: 15px 0;
    flex-direction: column;
    text-align: center;
    gap: 0.625rem;
    background: var(--Colors-Primary-700, #315292);
    color: #fff;
}
.topbar .topbar-inner{
	position: relative;
}
.topbar .topbar-inner:before,
.topbar .topbar-inner:after {
    content: '';
    background: url(../images/_TopPattern1.svg);
    position: absolute;
    top: -10px;
    width: 200px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
}

.topbar .topbar-inner:before{
	left:2em;
}
.topbar .topbar-inner:after{
	right:2em;
	background: url(../images/_TopPattern2.svg);
}
.home .head {background: transparent;}
.home .site-header{
    background: transparent !important;
}
.home .head .navbar {
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.10);
}

/* =============================== 4) Hero ============================== */
section.eh-hero {
    height: 100vh;
	min-height:700px;
    margin-top: -120px;
    padding-top: 120px;
    background-size: cover;
    background-position: center -6em;
    background-repeat: no-repeat;
}

header.site-header {
    position: relative;
}

header .navbar-brand {
    margin-right:30px;
}

header .navbar-brand a {
    display: block;
    width: 100%;
}

.navbar-brand .custom-logo {
    height: 30px;
    width: auto;
}

.head {
    padding: 15px 0;
}
.eh-hero .hero-content {
    text-align: center;
}

#mainNavbar ul li a {
    font-size: 1em;
    font-weight: 500;
    color: var(--Colors-Neutral-900);
    text-decoration: none;
    padding: 10px 11px;
    border-radius: 25px;
    white-space: nowrap;
}

#mainNavbar ul li a b {
    color: red;
}

#mainNavbar ul li.current-menu-item a {
    background: var(--Colors-Primary-500);
    color: #fff;
}
.header-buttons .btn {
    color: var(--Colors-Primary-400);
    padding: 10px;
}

.header-buttons .dropdown-toggle:after {
    content: '\F282';
    border: none;
    font-family: 'bootstrap-icons';
    margin: 0;
    vertical-align: middle;
}
.eh-hero .hero-content {
    padding-top: 120px;
}

.eh-hero h1 {color: var(--Colors-Secondary-900);font-size: 3em;}

.eh-hero h1 strong {
    color: var(--Colors-Primary-700);
}

.eh-hero .hero-description {
    font-size: 1.875rem;
    font-style: italic;
    font-weight: 300;
}

.eh-hero .hero-description b {
    color: var(--Colors-Primary-500);
}
/* ============================ 5) Searchbox ============================ */
.eh-searchbox {
    max-width: 49%;
    margin: 0 auto;
    padding: 25px 0;
}

.eh-searchbox>ul {
    width: 100%;
    justify-content: space-between;
    background: var(--Colors-Primary-700);
    padding: 8px;
    border-radius: 10px;
}

.eh-searchbox>ul li {flex: 0 0 50%;}

.eh-searchbox>ul li .nav-link {
    width: 100%;
    text-align: center;
    justify-content: center;
    color: #E5F6F3;
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 10px;
    font-weight:500;
}

.eh-searchbox>ul li .nav-link.active {
    background: var(--Colors-Primary-500);
}
.searchbox-input {
    padding: 10px 12px;
    border-radius: 12px;
    border: 2px solid #FFF;
    background: rgba(24, 63, 136, 0.37);
}

.searchbox-input .search-input,
.contact-faq-input {
    background: transparent;
    border: none;
    font-size: 1em;
}

.searchbox-input .search-input::placeholder,
.contact-faq-input::placeholder {
    color: #fff;
}


.eh-searchbox button.btn-primary {
    background: var(--Colors-Primary-500);
    border-radius: 8px !important;
    border: none !important;
    padding: 8px 32px;
    font-size: 14px;
    font-weight: 500;
}


.eh-searchbox span.input-group-cats.input-group-plus {
    display: flex;
    align-items: center;
}

.eh-hero-uygulama > p {font-weight: 500;font-size: .875em;margin-bottom: 12px;}

.eh-hero-uygulama {
    padding-top: 70px;
}
/* ============================ 6) Manset Alt =========================== */
.eh-mansetalt {position: relative;padding: 50px 0;margin:0;}
.eh-mansetalt .inner {overflow: hidden;}
.eh-mansetalt .eh-mansetalt-bg {position:absolute; inset:0; z-index:0;}
.eh-mansetalt .eh-mansetalt-bg img{width:100%; height:100%; object-fit:cover; object-position:center; filter: none;}
.eh-mansetalt .eh-mansetalt-cards, .eh-mansetalt .eh-card, .eh-mansetalt * {position: relative; z-index: 1;}

/* badges (pills) */
.eh-mansetalt .eh-mansetalt-badges .badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #EAF0FF;
  font-weight: 500;
  padding:0;
}
.eh-mansetalt .eh-mansetalt-badges .eh-badge-active {
  background: var(--Colors-Secondary-700);
  border-color: transparent;
}

/* KPI */
.eh-mansetalt .eh-mansetalt-kpi {font-size: 1.5rem;font-weight: 400;color: #fff;margin-bottom: .5rem;}
.eh-mansetalt .eh-mansetalt-float-icon {display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:50%;background: var(--Colors-Secondary-500);color:#fff;}

/* sparkline */
.eh-mansetalt .eh-mansetalt-sparkline {position: absolute;left: 0;bottom: 0;width: 100%;}

/* mini bars */
.eh-mansetalt .eh-mansetalt-mini-bars {display:flex;align-items:flex-end;}

.eh-mansetalt .eh-mansetalt-chip {display:inline-block; font-size:.8rem; background: rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.2); color:#fff; padding:6px 10px; border-radius:999px;}
.eh-mansetalt .eh-mansetalt-avatar {
	width: 63px;
    height: 63px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    margin: 10px 0;
}

/* layout widths */
.eh-mansetalt .eh-mansetalt-cards {row-gap: 1rem;}
.eh-mansetalt .eh-mansetalt-item {flex: 1 1 100%;}

.eh-mansetalt .eh-dash{
	height:100%;
	background: url(https://ehealth.com.tr/wp-content/themes/ehealth_v2/assets/images/_ArrowDots.svg);
	background-size: cover;
	background-position: 0px 30px;
}

@media (min-width: 768px)  {
  .eh-mansetalt .eh-dash{
	background-position: top;
  }
}

@media (min-width: 1200px)  {
  .eh-mansetalt .eh-dash{
	background-position: left 30px;
  }
}

@media (min-width: 576px) {
  .eh-mansetalt .eh-mansetalt-item {flex: 1 1 calc(50% - .75rem);} /* 2 sütun */
}

@media (min-width: 1200px) {
  /* XL ve üstünde daha ferah ve görsele yakın oranlar */
  .eh-mansetalt .eh-mansetalt-cards {gap: 1.25rem 1.5rem;}
  .eh-mansetalt .eh-mansetalt-w-branch {flex-basis: 22%; max-width: 22%;}
  .eh-mansetalt .eh-mansetalt-w-kpi    {flex-basis: 14%; max-width: 14%;}
  .eh-mansetalt .eh-mansetalt-w-spark  {flex-basis: 16%; max-width: 16%;}
  .eh-mansetalt .eh-mansetalt-w-trust  {flex-basis: 19%; max-width: 19%;}
  .eh-mansetalt .eh-mansetalt-w-experts{flex-basis: 21%; max-width: 21%;}

}

/* --------------------- Shared: Glass Card Surface --------------------- */
.eh-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    color: var(--lg-text);
    background: transparent; /* layers handle fill */
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    backdrop-filter: blur(8px) saturate(140%);
    transition: transform .25s ease, box-shadow .25s ease;
	background-color:rgba(0,0,0,0.35);
}

/* glass overlay */
.eh-card::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--lg-bg-color);
}

/* specular highlight */
.eh-card::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 1px 1px 0 var(--lg-highlight), inset 0 0 5px var(--lg-highlight);
    pointer-events: none;
}
.eh-card > * { position: relative; z-index: 2; }
.eh-mansetalt .eh-mansetalt-badges .badge a {
    padding: 8px 10px;
    display: block;
    font-size: 12px;
    border-radius: inherit;
    font-weight: 500;
}

.eh-mansetalt .eh-mansetalt-badges .badge a:hover,
.eh-mansetalt .eh-mansetalt-badges .badge a.active {
    background: var(--Colors-Secondary-500);
}

.eh-mansetalt-item.eh-mansetalt-w-spark span i {
    border: 1px solid #fff;
    border-radius: 50px;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 17px;
    font-size: 13px;
}

.eh-mansetalt-item.eh-mansetalt-w-experts i img {
    margin-top: -3px;
}
.eh-mansetalt-w-kpi .eh-mansetalt-float-icon {
    background: transparent;
    position: absolute;
    top: 46px;
    right: 20px;
}

.eh-mansetalt-w-kpi .eh-mansetalt-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eh-mansetalt-item.eh-mansetalt-w-spark h6 {
    font-weight: 500 !important;
    line-height: 1.4;
}

.eh-mansetalt-item.eh-mansetalt-w-spark span {
    min-width: 30px;
    height: 30px;
}

.eh-mansetalt-item.eh-mansetalt-w-trust .eh-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
}

.eh-mansetalt-item.eh-mansetalt-w-trust .eh-card h6 {
    font-weight: 500 !important;
    white-space: nowrap;
}

.eh-mansetalt-item.eh-mansetalt-w-trust .eh-card small {
    font-size: 11px;
}

.eh-mansetalt-item.eh-mansetalt-w-trust .eh-card .eh-accent-text {
    color: var(--Colors-Secondary-500);
    font-size: 1em;
}

.eh-mansetalt .eh-mansetalt-mini-bars {
    margin-left: -4px;
}

.eh-mansetalt .eh-mansetalt-sparkline img {
    width: 100%;
    object-fit: cover;
}

/* ============================ 7) Markalar ============================= */
.brands-swiper .swiper-slide img {
    filter: grayscale(1);
    transition: all .3s linear;
	height:80px;
	object-fit:contain;
}

.brands-swiper .swiper-slide img:hover {
    filter: grayscale(0);
}

.eh-brands {
    background: #DFE9F08C;
    padding: 25px 0 !important;
}

/* ===================== 8) Hızlı Kategori Kutuları ===================== */
.eh-hk-inner {
    background: var(--Colors-Primary-700);
    padding: 32px;
    border-radius: 32px;
}

.eh-hk-inner .eh-hk-pills {
    background: var(--Colors-Primary-500);
    border-radius: 25px;
}

.eh-hk-header .eh-hk-title {
    color: #fff;
    padding-bottom: 31px;
    font-size: 2.2em;
    font-weight: 600;
}

.eh-hk-inner .eh-hk-pills a {
    position: relative;
    width: 100%;
    padding: 25px;
    display: block;
    color: #fff;
    text-decoration: none;
    text-align: center;
}

.eh-hk-inner .eh-hk-pills a:after {
    content: '+';
    color: #00F8FF;
    font-weight: 500;
    position: absolute;
    right: 0;
    font-size: 26px;
    top: 50%;
    transform: translateY(-50%);
}

.eh-hk-inner .eh-hk-pills li {
    flex: 0 0 25%;
}

.eh-hk-inner .eh-hk-pills li:last-child a:after {
    display: none;
}

.eh-hk-inner .eh-hk-pills a:hover {
    opacity: .5;
}

/* ===================== 9) Öne Çıkan Doktorlar ======================== */

/* Marquee (Brands) */
.eh-marquee {overflow: hidden; position: relative;}
.eh-marquee-track {display: flex; gap: 25px; align-items: center; will-change: transform; animation: eh-marquee-scroll 15s linear infinite;}
.eh-marquee:hover .eh-marquee-track {animation-play-state: paused;}

/* RTL desteği için yönü otomatik tersleyebiliriz */
html[dir="rtl"] .eh-marquee-track {animation-direction: reverse;}

@keyframes eh-marquee-scroll {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-50%,0,0); }
}

.eh-marquee-item {flex: 0 0 auto;}
.eh-marquee-img {height: 60px; width: auto; object-fit: contain; filter: grayscale(1); transition: filter .3s ease; opacity: .4;}
.eh-marquee-img:hover {filter: grayscale(0);}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .eh-marquee-track {animation: none;}
}
/* ===================== 10) Bizi Tanıyın ======================== */
.eh-hakkimizda {
    background: var(--Colors-Primary-500);
    padding: 80px 0;
	margin-top:40px;
}

.eh-title {
    border: 1px solid;
    border-radius: 25px;
    padding: 10px;
    font-size: 1em;
    color: #000;
    display: inline-block;
    margin: 0;
}

.eh-title.eh-title-white {
    color: #fff;
}

.eh-hakkimizda .baslik {
    padding: 30px 0;
    font-size: 2em;
    color: #fff;
    font-weight: 400;
    max-width: 77%;
}

.eh-hakkimizda .baslik b {
    font-style: italic;
}

/* ===================== 11) Etkinlikler ======================== */
.eh-event-list .eh-panel-body {
    border-radius: 18px;
    background: rgba(255, 255, 255,.35);
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
}

.event-item {
    position:relative;
}
.event-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
}

.event-item {
    padding: 3px 8px;
    background: rgba(255, 255, 255, .85);
    color: var(--Colors-Primary-600);    
}

.event-date.btn-glass:before {
    box-shadow: inset 1px 0px 0 var(--lg-highlight), inset 0 0 2px var(--lg-highlight);
}

.event-date.btn-glass i {
    padding: 0 3px;
}

.event-date.btn-glass svg {
    width: 20px;
    height: 20px;
}
.event-item .event-content h3 {
    color: var(--Colors-Neutral-900);
    text-decoration: none;
    border: none;
    font-size: 1em;
    margin-bottom: 1px;
    }

.event-item a {
    text-decoration: none !important;
}

.event-item .event-content p {
    color: var(--Colors-Neutral-600, #6C6C77);
    font-size: .875em;
    font-weight: 500;
}

.event-item .event-content {
    padding-top: 12px;
}

.event-item .event-date-bottom {
    display: flex;
    align-items: center;
    gap: 7px;
}

.event-item .event-date-bottom .icon svg {
    width: 25px;
    height: 25px;
}

.event-item .event-date-bottom p {
    margin-bottom: 0;
    color: var(--Colors-Neutral-600, #6C6C77);
    font-weight: 500;
    font-size: 12px;
}

.event-item .event-date-bottom span {
    color: var(--Colors-Primary-500, #5080D9);
    font-size: 12px;
}

.event-date-bottom .text {
    line-height: 1.2;
}
/* ========================== 12) Hizmetlerimiz ========================== */

/* iOS-style glass service cards */
.eh-services-list .service-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px) saturate(140%);
    box-shadow: inset 0 0px 22px rgba(13, 27, 42, 0.06);
    padding:32px 20px;
    text-align: center;
}
.eh-services-list .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 1px 0px 0 var(--lg-highlight), inset 0 0 2px var(--lg-highlight);
    pointer-events: none;
    width: 100%;
    height: 100%;
}
.eh-services-list .service-card::after {
    
    pointer-events: none;
    /* backdrop-filter: blur(10px) brightness(0.8); */
}
.eh-services-list .service-card > * { position: relative; z-index: 2; }


.eh-services-list .service-card figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.eh-services-list .service-card figure img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}
.eh-services-list .service-card h3 {
    margin: 6px 0 8px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--Colors-Neutral-900);
}
.eh-services-list .service-card p {
    margin: 0 0 14px;
    color: var(--Colors-Neutral-600);
    font-weight: 500;
    line-height: 1.5;
    font-size: 0.875em;
    min-height:90px;
}
.eh-services-list .service-card .btn {
    border: none;
    border-radius: 8px;
    padding: 8px 30px;
    background: var(--Colors-Primary-500);
    color: #fff;
    font-size: .875em;
}
/* ========================== 13) Blog ========================== */

.eh-blogs .eh-blogs-inner {
    background: var(--Colors-Primary-700);
    color: #fff;
    border-radius: 30px;
    padding: 40px;
}
.eh-blogs .blog-copy .title-box h2 {font-weight: 400;margin: 0 0 6px;font-size: 2em;}
.eh-blogs .blog-copy .title-box h3 {font-style: italic;font-weight: 700;margin: 0 0 14px;font-size: 2em;}
.eh-blogs .blog-copy .intro {padding: 36px 0;font-size: 1em;font-weight: 500;}

.eh-blogs .btn-glass {
    color: #fff;
}
.eh-blogs .btn-glass i { font-size: 1.1em; }

/* Post card */
.eh-blogs .blog-post-item {position: relative;border-radius: 30px;padding: 0;display: grid;grid-template-columns: 1fr;gap: 16px;}
.eh-blogs .blog-post-item .post-media img {width: 100%;height: 220px;object-fit: cover;border-radius: 18px 18px 18px 18px;}
.eh-blogs .blog-post-item .post-title {margin: 6px 0 8px;background: #eefffc;font-size: 1.1em;font-weight: 700;color: var(--Colors-Neutral-800, #3F3F44);margin-top: -25px;position: relative;max-width: 92%;border-radius: 0 30px 0 0;padding: 10px;margin-left: -10px;}
.eh-blogs .blog-post-item .post-excerpt { color: var(--Colors-Neutral-700); font-weight: 500; }
.eh-blogs .blog-post-item .btn-circle {min-width: 32px;height: 32px;border-radius: 50%;display: flex;justify-content: center;align-items: center;border: 1px solid var(--Colors-Primary-700);color: var(--Colors-Primary-700);background: transparent;font-size: 1.5em;transform: rotate(-30deg);}

.blog-post-item figure {
    background: #EEFFFC;
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.eh-blogs .blog-post-item .post-content {
    background: #eefffc;
    padding: 25px;
    font-size: 14px;
    color: var(--Colors-Neutral-800, #3F3F44);
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.eh-blogs .blog-post-item .post-content p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 3;
	line-clamp: 3;
	-webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 0;
}

.eh-blogs .blog-copy {
    padding-left: 50px;
}

/* ===================== 14) Nasıl Çalışır ===================== */
.eh-nasilcalisir {
    padding: 40px 0;
}

.eh-nc-inner {
    background: #F1F9FA;
    border-radius: 24px;
    padding: 24px 0;
}

.eh-nc-copy .eh-title {
    display: inline-block;
    border: 1px solid #E0E8F6;
    color: var(--Colors-Neutral-900);
    border-color: var(--Colors-Neutral-900);
    align-self: flex-start; /* sola hizalar */
     /* genişliği kadar olur */
}

.eh-nc-heading {
    font-size: 2.25rem;
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    font-weight: 400;
    margin: 0;
}

.eh-nc-desc {
    color: var(--Colors-Neutral-800);
    font-weight: 400;
    font-size: 14px;
}

/* .eh-nc-nav placeholder removed */

.eh-nc-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 30px;
}

.eh-nc-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(0,0,0,.06);
    text-align: left;
    width: 100%;
    box-shadow: 0 0 15px 0 rgba(0, 79, 81, 0.06);
}

.eh-nc-step .eh-nc-icon {
    width: 64px;
	min-width:64px;
    height: 64px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #EEF5FF;
}

.eh-nc-step .eh-nc-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.eh-nc-step .eh-nc-title {
    color: var(--Colors-Primary-700);
    font-weight: 500;
    display: block;
}

.eh-nc-step .eh-nc-summary {
    color: var(--Colors-Neutral-600);
    font-weight: 500;
}

.eh-nc-step[aria-selected="true"], .eh-nc-step.active {
    background: var(--Colors-Primary-700);
    border-color: transparent;
}

.eh-nc-step[aria-selected="true"] .eh-nc-title, .eh-nc-step.active .eh-nc-title, .eh-nc-step[aria-selected="true"] .eh-nc-summary, .eh-nc-step.active .eh-nc-summary {
    color: #fff;
}

.eh-nc-step[aria-selected="true"] .eh-nc-icon, .eh-nc-step.active .eh-nc-icon {
    background: #E5F6F3;
}


.eh-nc-heading b {
    font-style: italic;
    font-weight: 600;
}

.eh-nasilcalisir .eh-nc-copy {
    display: flex;
    flex-direction: column;
    gap: 45px;
}
/* ===================== 15) SSS ======================== */
.eh-sss .eh-panel-head {
    justify-content: space-between;
    align-items: center;
}

.eh-sss .eh-panel-head p {
    font-size: 21px;
}

.eh-sss .eh-panel-head-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.eh-sss .eh-panel-head-right p {
    max-width: 60%;
    text-align: right;
}
.eh-sss .eh-panel-body {padding-top: 18px;}
.eh-sss .accordion {display: flex;flex-direction: column;gap: 14px;}
.eh-sss .accordion-item {
    overflow: hidden;border-radius: 5px;box-shadow:0 1px 4px 0 rgba(25, 33, 61, 0.06);background: transparent;border: none;border-left: 7px solid #fff;border-radius: 0;padding: 0;}
.eh-sss .accordion-button {padding:24px 32px;background: transparent;color: var(--Colors-Primary-900);font-weight: 600;display: flex;box-shadow: none;}
.eh-sss .accordion-button:focus {box-shadow: none;}
.eh-sss .accordion-button:not(.collapsed) {color: #fff;color: var(--Colors-Primary-900, #162649);background: transparent;}
.eh-sss .accordion-button::before {filter: grayscale(1);width: var(--bs-accordion-btn-icon-width);height: var(--bs-accordion-btn-icon-width);content: "";background-image: var(--bs-accordion-btn-icon);background-repeat: no-repeat;background-size: var(--bs-accordion-btn-icon-width);transition: var(--bs-accordion-btn-icon-transition);opacity: .6;margin-right: 15px;}
.eh-sss .accordion-collapse {
    background: transparent;
}
.eh-sss .accordion-body {
    color: var(--Colors-Neutral-700);
    font-weight: 500;
    padding: 0;
    padding-left: 67px;
    padding-top: 0;
    padding-bottom:25px;
    font-size: .875em;
    font-weight: 400;
    line-height: 1.5;
}

.eh-nc-heading {
    flex-direction: row;
    gap: 10px;
}


.accordion-header {
    border: none;
}

/* rely on Bootstrap's default .accordion-button::after; customizations removed */

.eh-sss .accordion-button::after {
    display: none;
}


.eh-sss .accordion-item.active {
    background: var(--Colors-Primary-700);
    border-color: var(--Colors-Primary-500);
}

.eh-sss .accordion-item.active .accordion-header button {
    color: #fff;
    font-size: 20px;
}

.eh-sss .accordion-item.active p {
    color: #fff;
}

.eh-sss .accordion-item.active .accordion-button::before {
    filter: brightness(0) invert(1);
}
/* ===================== 16) Footer ======================== */
footer.site-footer {
    background: #fff;
}

.site-footer .footer-logo-field img {
    max-width: 50%;
    height: auto;
}

p.footer-desc {
    color: var(--Colors-Neutral-1000);
    font-size: .875em;
    padding: 40px 0;
    font-weight: 500;
}

footer .footer-wrapper {
    padding: 30px 0;
}

.site-footer address a {
    text-decoration: none;
    color: var(--Colors-Neutral-1000);
    font-size: .875em;
    font-weight: 500;
}

.site-footer address .icon-wrap {
    border-radius: 25px;
    background: var(--Colors-Primary-700, #315292);
    text-align: center;
    min-width:24px;
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.site-footer address {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* footer root block placeholder removed */
.site-footer .footer-wrapper {gap: 24px;}
.site-footer .menu-box .footer-menu-header {display:flex;align-items:center;justify-content:space-between;cursor:pointer;padding: 8px 0;color: var(--Colors-Primary-700);text-decoration: none;margin-bottom: 15px;}
.site-footer .menu-box .footer-menu-header::after {content:'\F282';font-family:'bootstrap-icons';transition: transform .2s ease;}
.site-footer .menu-box .footer-menu-header[aria-expanded="true"]::after {transform: rotate(180deg);} 
/* Also rotate when the collapse is open, in case aria-expanded is on a child */
.site-footer .menu-box:has(.footer-collapse.show) .footer-menu-header::after {transform: rotate(180deg);} 
.site-footer .footer-collapse {transition: height .25s ease;}

@media (min-width: 768px){
    .site-footer .menu-box .footer-menu-header::after {display:none;}
}

.site-footer .menu-box .footer-menu-header h3 {
    font-size: 1em;
}

.site-footer .menu-box ul li a {
    text-decoration: none;
    color: var(--Colors-Neutral-1000, #111112);
    font-size: .875em;
    font-weight: 500;
     /* 135.714% */
}

.site-footer .menu-box ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.site-footer .footer-collapse+.menu-box {
    margin-top: 24px;
}


.site-footer .social-box a {
    border-radius: 25px;
    background: var(--Colors-Primary-700, #315292);
    text-align: center;
    width: 24px;
    height: 24px;
    line-height: 17px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.site-footer .social-box a img {
    width: 13px;
    height: 13px;
}


footer .payment-options-img img {
    width: 100%;
	max-height:30px;
}

footer .newsletter-box {
    gap: 18px;
    display: flex;
    flex-direction: column;
}

.qr-and-application { display: block; }

.qr-and-application .etbis img {
    width: auto !important;
    /*height: 120px !important;*/
}

footer .etbis {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 18px;
}

footer .hero-uygulama-btns {
    display: flex;
    gap: 3px;
}

footer .hero-uygulama-btns img {
    width: 100%;
}


.copyright {
    background: #D4E0F6;
    padding: 20px 0;
    text-align: center;
}

.copyright p {
    margin: 0;
    color: #6B7D9F;
    font-size: 14px;
    font-weight: 500;
}
/* ===================== 16) Uzmanlar ======================== */
.uzman-list .uzman-list-head {
    background: url(../images/_uzmBg.svg) no-repeat center center;
    box-shadow: 0 4px 50px 0 rgba(0, 2, 110, 0.10);
    padding: 24px 0;
    background-size: cover;
    border-radius: 0 0 50px 50px;
    margin-bottom: 25px;
	background-size: 103% !important;
    border-radius: 0 0 30px 30px;
    background-position: top center !important;
}

.uzman-list .eh-uzman-list-quick {
    justify-content: space-around;
    border-radius: 8px var(--8, 8px) 8px 8px;
    background: rgba(255, 255, 255, 0.73);
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
    padding: 8px;
    gap: 0 !important;
}

.uzman-list .eh-uzman-list-quick a {
    text-decoration: none;
    color: #005B88;
    width: 100%;
    display: block;
    position: relative;
    padding: 12px 24px;
    text-align: center;
    font-size: 1em;
    font-weight: 500;
}
.eh-glass{
    position: relative;
    font-size: 14px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.10);
}
.eh-glass:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 1px 0px 0 var(--lg-highlight), inset 0 0 2px var(--lg-highlight);
    pointer-events: none;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.uzman-list .eh-uzman-list-quick li {
    flex: 0 0 25%;
}

.uzman-list .eh-uzman-list-quick a:hover:before,.uzman-list .eh-uzman-list-quick .term-item.active:before {opacity:1;background: rgba(97, 140, 220, 0.10);}

.uzman-list .searchbox-input {
    background: #fff;
}

.uzman-list .searchbox-input .uzman-input::placeholder {
    color: var(--Colors-Primary-600);
}

.uzman-list #voiceBtn svg path {
   stroke: var(--Colors-Primary-600);
}


.uzman-list .eh-searchbox {
    padding-bottom: 10px;
    max-width: 65%;
}
.eh-searchbtns {
    border-radius: 8px var(--8, 8px) 8px 8px;
    background: rgba(255, 255, 255, 0.73);
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
    display: inline-block;
    margin-bottom: 25px;
}

.eh-searchbtns ul {margin-bottom: 0 !important;padding: 8px;}

#searchTabEh button.active {
    background: rgba(97, 140, 220, 0.10);
    color: var(--Colors-Primary-500);
}

#searchTabEh button {
    color: var(--Colors-Neutral-600);
    font-size: 1em;
    font-weight: 500;
    padding: 12px 24px;
}

.filter-btn {
	position: absolute;
	left: 0;
	top: 0;
	width: 303px;
	display: flex;
	align-items: center;
	padding: 15px;
	border-radius: 8px;
	color: #222;
	transition: all .3s ease-in-out;
}
.filter-btn:before {
	content: '';
	width: 18px;
	height: 17px;
	background: url('assets/icons/filter.svg') center no-repeat;
	margin-right: 5px;
}
.filter-btn:after {
	content: '';
	position: absolute;
	right: 5px;
	top: 10px;
	width: 31px;
	height: 31px;
	background: url('assets/icons/angle-left.svg') center no-repeat;
}
.mobile-filter-btn:after {
	background-image: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M20.7457 3.32851C20.3552 2.93798 19.722 2.93798 19.3315 3.32851L12.0371 10.6229L4.74275 3.32851C4.35223 2.93798 3.71906 2.93798 3.32854 3.32851C2.93801 3.71903 2.93801 4.3522 3.32854 4.74272L10.6229 12.0371L3.32856 19.3314C2.93803 19.722 2.93803 20.3551 3.32856 20.7457C3.71908 21.1362 4.35225 21.1362 4.74277 20.7457L12.0371 13.4513L19.3315 20.7457C19.722 21.1362 20.3552 21.1362 20.7457 20.7457C21.1362 20.3551 21.1362 19.722 20.7457 19.3315L13.4513 12.0371L20.7457 4.74272C21.1362 4.3522 21.1362 3.71903 20.7457 3.32851Z" fill="%237DBAB0"></path></g></svg>');
	background-size: 20px;
}
.filter-hide .filter-btn {
	width: 130px;
	top: -60px;
	background: #F3F7FD;
}
.filter-hide .filter-btn:after {
	transform: rotate(180deg);
}

p.no-result {
    background: var(--Colors-Primary-700);
    width: calc(100% - 30px);
    margin-left: 15px;
    padding: 30px;
    border-radius: 10px;
    margin-top: 0;
    text-align: center;
    color: var(--Colors-Primary-200);
    font-weight: 500;
}
@media (max-width: 992px) {
	.filter-btn {
		width: 130px;
		top: -60px;
		background: #F3F7FD;
	}
	.filter-btn:after {
		transform: rotate(180deg);
	}
}

.stars {
	position: relative;
	display: block;
	width: 46px;
	height: 8px;
	background: url("assets/icons/stars.svg") center no-repeat;
	background-size: contain;
}
.stars > span {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	background: url("assets/icons/stars-active.svg");
	background-size: cover;
	width: 60px;
	background-repeat: no-repeat;
}

.comment-box {
    gap: 8px;
	flex-direction: column;
	align-items: end;
}
.comment-box .danisan-number{
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	color: #8C8C8C;
}
.comment-box .stars{
	width: 62px;
	height: 12px;
}

.konum {
	font-size: 12px;
	color: #989898;
	margin-bottom: 5px;
}
.konum:before {
	content: '';
	width: 19px;
	height: 19px;
	background: url('assets/icons/map.svg') center no-repeat;
	margin-right: 5px;
}
.konum strong {
	font-weight: 400;
}
.online:before {
	background: url('assets/icons/online.svg') center no-repeat;
}
.dil:before {
	background: url('assets/icons/dil.svg') center no-repeat;
}
.uzman-item .description {
	font-size: 12px;
	line-height: 1.5;
	margin: 10px 0;
	padding-right: 16px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
	overflow: hidden;
}
.uzman-item .buttons .btn {
	flex: 0 0 calc(50% - 5px);
	width: calc(50% - 5px);
	padding: 10px 18px;
	font-size: 14px;
	text-align: center;
}
.uzman-item .buttons.hide-btn .btn {
	flex: 0 0 100%;
	width: 100%;
}
.uzman-item .buttons .btn-primary {
	color: #fff;
}
.uzman-item .buttons.hide-btn .btn-primary {
	display: none;
}
.doktor-banner-item {
	position: relative;
	height: 70vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: #fff;
	border-radius: 19px;
	overflow: hidden;
}
.doktor-banner-item:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(0, 93, 135, 0.72) 100%), #d3d3d300 -445.424px 0px / 330.99% 100% no-repeat;
	z-index: -1;
}
.doktor-banner-item img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}
.doktor-banner-item .doktor-banner-inner {
	padding: 15px;
	padding-bottom: 30px;
}
.doktor-banner-item p {
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 15px;
}
.doktor-banner-item h3 {
	font-size: 20px;
	margin: 0;
}
.doktor-banner-item span {
	font-size: 14px;
}
.uzman-thumbnail {
	position: relative;
	max-width: 100%;
	margin-right: 20px;
	overflow: hidden;
	display: flex;
	max-height: 250px;
}
.uzman-thumbnail img {
	width: 250px;
    height: 250px;
    border-radius: 8px;
	object-fit: cover;
}
.uzman-thumbnail.online:before {
	content: '';
	position: absolute;
	left: 16px;
	bottom: 16px;
	width: 100px;
	height: 32px;
	background: url('assets/icons/online-icon.svg') left bottom no-repeat;
}
.uzman-header-bottom-inner .uzman-butons .btn-secondary{
    margin-bottom: 10px;
    background: transparent;
    color: var(--Colors-Primary-700);
    border: 1px solid var(--Colors-Primary-700);
}
.uzman-header-bottom-inner .uzman-butons a{
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	padding: 9px 17px;
	border: none;
	border-radius: 2px;
	background-color: var(--Colors-Primary-700);
}
.uzman-more .tab-container .tab-button {
    color: #8C8C8C;
    line-height: 1.6;
}
.uzman-more .tab-container .tab-button.active{
	color: var(--Colors-Primary-200);
	border-color: var(--Colors-Primary-200);
}
/* Collapsible filter boxes */
.filter-box h3, .filter-box h4 { display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.filter-box .eh-toggle-btn { display: inline-flex; align-items: center; gap: 6px; border: 0; background: transparent; color: inherit; }
.filter-box .eh-toggle-btn:focus { outline: 2px solid rgba(0,0,0,0.2); outline-offset: 2px; }
.filter-box .eh-caret { width: 1em; height: 1em; transition: transform 0.2s ease; }
.filter-box.is-collapsed > *:not(h3):not(h4) { display: none !important; }
.filter-box h3 { font-size: 1em; font-weight: 500; position: relative; }
.filter-box .selectbox {
	margin-bottom: 10px;
}
.filter-box .select2-container {
	width: 100%!important;
}
.filter-box .select2-container--default .select2-selection {
	height: 37px;
	border-color: #989898;
	border-radius: 9px;
}
.filter-box .select2-container--default .select2-selection .select2-selection__rendered {
	display: flex;
	align-items: center;
	line-height: 24px;
	color: #989898;
	font-size: 14px;
}
.filter-box .select2-container--default .select2-selection .select2-selection__rendered:before { display: none; }
.filter-box input[type=text] { height: 37px; border-color: #989898; border-radius: 9px; }
.filter-box input[type=text]::placeholder {
	color: #989898;
}
.filter-box .adres_input input {
	text-indent: 28px;
}
.filter-box.newsletter {
	background: #03A9F4;
	color: #fff;
	padding: 15px 15px 5px;
	border-radius: 10px;
}
.filter-box.newsletter h4 {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 5px;
}
.filter-box.newsletter p {
	font-size: 12px;
	line-height: 1.5;
	margin: 0 0 15px;
}
.filter-box.newsletter .tnp-subscription {
	margin-bottom: 0;
}
.filter-box.newsletter .tnp-subscription input[type=email] {
	font-size: 12px!important;
	height: 35px;
	text-indent: 0;
	border-radius: 5px;
}
.filter-box.newsletter .tnp-subscription .tnp-submit {
	padding: 6px 11px;
}
.filter-box.isim-ara input {
    padding: 8px 12px;
    font-size: 1em;
    color: #fff;
    height: 60px;
    background: transparent;
}

.filter-box.isim-ara input::placeholder {
    color: #fff;
}

.filter-box.isim-ara .input-box {
    display: flex;
    background: rgba(24, 63, 136, 0.37);
    border-radius: 12px;
    padding-right: 12px;
}

.filter-box .form-control {
    border: none;
}

.filter-box.isim-ara i {
    display: flex;
    align-items: center;
}

.filter-box {
    margin-bottom: 36px;
}

.filter-box.isim-ara {
    margin-bottom: 20px;
}

.filter-box h3:after {
    content: '';
    position: absolute;
    height: 1px;
    left: 0;
    top: 50%;
    background: rgba(0, 0, 0, 0.10);
    bottom: 0;
    width: 100%;
    z-index: 0;
}

.filter-box .eh-toggle-btn {
    z-index: 1;
    background: #f5fbfa;
}

.eh-filter-search {
    font-size: 14px;
    border-radius: 5px;
    background: #fff;
    color: var(--Colors-Primary-900);
    padding: 8px 17px;
    background: rgba(97, 140, 220, 0.10);
}

.eh-filter-item label:before {
    content: '';
    width: 24px;
    height: 24px;
    display: inline-block;
    border-radius: 5px;
    border: 1px solid var(--Colors-Neutral-300, #B5B5BE);
}
li.eh-filter-item input[type="checkbox"],
li.eh-filter-item input[type="radio"] {
    display: none;
}
li.eh-filter-item label {
    display: flex;
    gap: 12px;
    color: var(--Colors-Neutral-400, #9C9CA7);
    font-size: 14px;
    font-weight: 500;
    align-items: center;
}
li.eh-filter-item input:checked + label:before {
    background: var(--Colors-Primary-400);
}
.eh-filter-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.uzman-list .eh-filter-list{
	overflow-y:auto;
	max-height:204px;
}

.eh-filter-searchbox {
    padding: 8px 0;
}

.eh-filter-search::placeholder {
    color: var(--Colors-Primary-400) !important;
}

.eh-view-more {
    text-decoration: none;
    text-align: left;
    color: #0E48EC;
}
.filter-box h3 b {
    background: #f1f9fa;
    padding-right: 20px;
    position: relative;
    z-index: 1;
}
/* Loading overlay + blur effect */
.list-wrapper{ position: relative; }
.list-loading-overlay{ position:absolute; inset:0; display:none; align-items:center; justify-content:center; background:rgba(255,255,255,0.5); z-index:5; }
.list-wrapper.is-loading .list-loading-overlay{ display:flex; }
.list-wrapper.is-loading .uzman-wrapper{ filter: blur(2px); opacity: .6; pointer-events: none; }
.filter-box.map-block .eh-map-card{ background:#f6fbff; }
.filter-box.map-block .eh-map-canvas{border-radius:1rem 1rem 0 0;height: 250px;border-radius: 30px;}
.filter-box.map-block .eh-map-expand{ position:relative; margin-top:-12px; padding:0 12px 12px; }
.filter-box.map-block .eh-map-expand .btn{border-radius: 10px;background: var(--Colors-Primary-400);height: 53px;font-size: 1em;max-width: 85%;margin: -20px auto 0;font-weight: 500;border: none;}

/* ---------------------- Uzman Kartı (uzman-item) ---------------------- */

.uzman-item .eh-prime-badge span {
    background: url(../images/_btnBg.svg) !important;
}
.uzman-item.card {
    position: relative;
     /* stronger than .rounded-4 if needed */
    background: rgba(255, 255, 255, 0.73);
    padding: 18px !important;
}
/* decorative pseudo element removed as empty to satisfy linter */

/* Avatar */
.uzman-item .uzman-img > .col-auto img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 18px;
}
@media (max-width: 576px){
    .uzman-item .uzman-img > .col-auto img { width: 90px; height: 90px; border-radius: 14px; }
}

/* Başlık ve alt başlık */
.uzman-item h5 {letter-spacing: 0.1px;color: var(--Colors-Neutral-900, #28282B);font-weight: 500 !important;font-size: 1em;}
.uzman-item .text-muted {color: var(--Colors-Neutral-600, #6B7280) !important;font-size: 14px;font-weight: 500;}

/* Diller satırı */
.uzman-item .small.text-primary {font-weight: 500;color: var(--Colors-Primary-500, #5080D9) !important;}
.uzman-item .small.text-primary .me-1 { color: currentColor; }

/* Etiket/rozet baz stiller */
.uzman-item .badge {position: relative;font-weight: 600;line-height: 1;border: none !important;font-size: 14px;color: var(--Colors-Neutral-700) !important;border-radius: 30px;position: relative;padding: 10px 12px;z-index: 12;border-radius: inherit;}
.uzman-item .badge.lang-plus{color:var(--Colors-Primary-500)!important; padding: 4px 8px; border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important;
}
.uzman-item .badge.bg-success-subtle {background: #EAF7EE !important;color: #3dae60 !important;border-color: #D4EDDA !important;padding: 0;margin: 0 !important;}
.uzman-item .badge.bg-primary { background: linear-gradient(135deg, #3C59B7 0%, #2E448F 100%); color: #fff; border: 0; }
.uzman-item .badge .rounded-circle { box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.08); }


/* En yakın randevu ve fiyat */
.uzman-item .small.text-muted strong { color: var(--Colors-Primary-700, #23408B); font-weight: 500; }
.uzman-item .price-any, .uzman-item .price-online, .uzman-item .price-yuzyuze { font-size: 1.25rem; color: var(--Colors-Primary-900, #162649); }
.uzman-item .woocommerce-Price-amount { font-weight: 800; letter-spacing: -0.2px; }

/* Randevu butonu */
.uzman-item .btn.btn-primary {width:100%;font-weight: 500;background: var(--Colors-Primary-500);border-radius: 8px !important;border: none;}


.uzman-item .uzman-img > .col-auto {
    margin: 0;
}

.uzman-list .uzman-list-lang {
    color: var(--Colors-Primary-500, #5080D9) !important;
    font-weight: 500;
}

.uzman-item .uzman-list-cat {
    margin-bottom: 11px;
}

.uzman-item .badge:before {
    content: '';
    }

.uzman-list .uzman-list-cats {
    flex-direction: row;
    margin-top: 0 !important;
}

.uzman-list .uzman-list-cats>span {
    max-width: 26%;
    font-weight: 500;
	padding:8px 6px;
}

.uzman-list .uzman-list-cats>span::before{
	position: inherit;
	content:inherit;
}

.uzman-list-cats>span em{
  	overflow: hidden;
    text-overflow: ellipsis;
	display: block;
}

.uzman-item .eh-badge-online {
    background: #33FF001A;
    padding: 0 15px 0 0;
    position: absolute;
    top: 0;
    right: 100%;
    margin-right: 14px;
}
.eh-badge-c {
    border-radius: 25px;
}

.uzman-item .eh-prime-badge span {
    color: #fff !important;
    background-size: cover !important;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 12px;
}

.eh-badge-c .badge {
    display: flex;
    align-items: center;
}

.uzman-item .uzman-list-end {
    max-width: 22%;
    gap: 21px !important;
}

.eh-badge-right {
    position: relative;
}


.eh-exp-badge span {
    display: flex;
}


.eh-exp-badge .badge span {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 11px;
}

.eh-exp-badge .badge span b {
    color: var(--Colors-Primary-400);
    font-weight: 400;
    font-size: 11px;
    margin-top: 2px;
}

.eh-badge-c.eh-rating-badge img {filter: brightness(00.8);width: 13px;height: 13px;}

/* .uzman-item .uzman-list-end .price - removed empty ruleset */

.uzman-item .uzman-list-end .fw-semibold {
    color: var(--Colors-Neutral-600, #6C6C77);
    text-align: right;

/* Global Tokens/Body/B-4 */
    font-size: 11px;
     /* 150% */
    font-weight: 400 !important;
}

.uzman-item .woocommerce-Price-amount {
    letter-spacing: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--Colors-Primary-900, #162649);
    margin-right: 2px;
}

.uzman-list .uzman-img img {
    width: 140px;
    height: 140px;
    border-radius: 10px;
    object-fit: cover;
}

.uzman-img {
    margin: 0;
}

.eh-badge-right .badge {padding: 7px 11px;font-size: 11px;}

.uzman-list-end div img {
    width: 18px;
    height: 18px;
}

.uzman-list-end .small {
    font-size: 12px;
}
/* ===================== 16) Custom Styles ======================== */

.btn-bordered {
	background-color: #FFFFFF;
	border: 1px dashed #D9D9D9;
	color: #262626;
}
.btn-bordered:hover {
	background-color: #F3EED5;
	color: #B09C46;
}
.btn-yellow {
	background: transparent;
	border: 1px solid #FFA722;
	color: #FFA722;
	font-weight: bold;
	text-align: center;
}


.site-nav .collapse .custom-logo-link {
	display: none;
}
@media (max-width: 992px) {
	.site-nav .collapse .custom-logo-link {
		display: block;
	}
	.vertical-posts{
		max-width: 95vw;
	}
}
body.sticky .site-header{
	position: fixed;
	-webkit-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.cizelge-input input[type=text] {
	display: none;
}
.cizelge-input input[type=time] {
	margin-bottom: 20px!important;
	margin-right: 15px!important;
	width: 100px!important;
}
.cizelge-input input[name=dkTime] {
	max-width: 150px;
	margin-top: 10px!important;
}
.schedule-table {
	border-collapse: collapse;
	margin-top: 30px;
	margin-left: 60px;
}
.schedule-table th, .schedule-table td {
	position: relative;
	border: 0.5px solid #c6c6c6;
	padding: 15px 10px;
	text-align: center;
	min-width: 50px;
	height: 50px;
}
.schedule-table td .user-info {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    z-index: 99;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
	display: none;
}
.schedule-table td:hover .user-info {
	display: flex;
}
.schedule-table td .user-info span {
	font-size:14px;
}
.schedule-table tr {
	position: relative;
}
.schedule-table td:first-child {
	width: 60px;
	position: absolute;
	left: -60px;
	background: #f3f7fd;
}
.schedule-table tr:first-child td:first-child {
	opacity: 0;
}
.schedule-table td span {
	display: block;
	font-size: 10px;
}
.online:not(.konum) {
	background-color: var(--Colors-Primary-100);
}
.yuz-yuze:not(.konum) {
	background-color: #4aad82;
}
.mola {
	background-color: #d4a065;
}
.online.yuz-yuze {
	background: rgb(101,185,212);
	background: linear-gradient(100deg, rgba(101,185,212,1) 50%, rgba(74,173,130,1) 50%, rgba(101,185,212,1) 200%);
}
.kapali {
	background-color: #d6d6d6;
}
.button-group1 {
	margin: 30px 0;
}
.button-group1 a {
	padding: 10px;
	background: #65b9d4;
	margin-right: 10px;
	text-decoration: none;
	border: 3px solid transparent;
	color: #fff;
}
.button-group1 a.active {
	border-color: #7f7f7f;
}
.button-group1 .yuz-yuze-button {
	background-color: #4aad82;
}
.button-group1 .mola-button {
	background-color: #d4a065;
}
.button-group1  .kapali-button {
	background: #d6d6d6;
	color: #222;
}


.subscribe-container input{
	background:#ffffff;
	border:1px solid #D9D9D9;
	font-size:14px;
	font-weight:400;
	line-height:1.4;
	color:#00000040;
	width: 100%;
	padding:10px 24px;
}
.subscribe-container input::placeholder{
	color:#00000040 ;
}
.subscribe-container img {
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}
.subscribe-container button {
    right: 0;
	top:50%;
	transform: translateY(-50%);
}

.newsletter-box {
    width: 250px;
    max-width: 100%;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
	gap: 10px;
}
.newsletter-box .applications{
	display: flex;
	align-items: center;
	gap: 10px;
}
.tnp-subscription {
	position: relative;
}
.tnp-subscription input[type=email] {
	background-color: #fff!important;
	border-radius: 10px;
	height: 57px;
	color: #989898!important;
	font-size: 14px!important;
	text-indent: 15px;
}
.tnp-subscription input[type=email]::placeholder {
	color: #989898;
}
.tnp-subscription .tnp-submit {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	background: #03A9F4;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
}
.site-footer .copyright {
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--Colors-Primary-700);
	font-size: 14px;
}
.social-box {
	justify-content: flex-end;
}
.social-box a {
	background: #93DBCF;
	margin-left: 8px;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	padding: 3px;
}


.events-hero {
	position: relative;
	height: calc(100vh - 40px);
	display: flex;
	align-items: center;
	margin-bottom: 100px;
	padding-top: 60px;
}
.events-hero:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #F4FBFA;
	border-radius: 0 0 100px 100px;
}
.events-hero .hero-boxes {
	width: calc(50% - 10px);
}
.events-hero h2 {
	font-size: 16px;
	font-weight: 300;
	color: #FFA722;
	letter-spacing: 1px;
	margin: 0 0 15px;
}
.events-hero h1 {
	font-size: 48px;
	font-weight: 600;
	margin: 0 0 20px
}
.events-hero h1 strong {
	font-weight: 600;
	color: var(--Colors-Primary-200);
}
.events-hero .description {
	width: 510px;
	max-width: 100%;
	font-weight: 300;
	line-height: 1.6;
}
.events-hero .btn-boxes {
	margin-top: 50px;
}
section.post-with-image .col.img-wrapper{
	position: relative;
}
section.post-with-image .col.img-wrapper::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background: url('assets/icons/play-video-icon.svg') center no-repeat;
}


section.next-events {
	margin-bottom: 100px;
}
.events-wrapper {
	margin: 0 -15px;
}
.events-wrapper .col {
	-ms-flex: 0 0 33.3333%;
	flex: 0 0 33.3333%;
	max-width: 33.3333%;
	padding: 0 15px;
}
.next-events .event-item figure img {
	height: 270px;
	object-fit: cover;
}
.events-wrapper .event-item {
	margin-bottom: 30px;
}

section.post-with-image {
	margin-bottom: 100px;
}
.post-with-image .col {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}
.post-with-image .title-box {
	text-align: left;
	width: 470px;
	max-width: 470px;
}
.post-with-image .text-wrapper {
	padding-right: 50px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.5;
	color: #585858;
}
.post-with-image .img-wrapper img {
	border-radius: 68px;
}

a.page-back-to {
    position: absolute;
    left: 80px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
    z-index: 9;
    background: var(--Colors-Primary-700);
    padding: 10px 15px 10px 7px;
    border-radius: 6px;
}
a.page-back-to img {
    filter: brightness(10);
}
p.notification {
    margin: -30px 0 30px;
    background: #eaf2ff;
    padding: 10px 15px;
    border-radius: 6px;
    color: #989898;
}
@media (max-width: 992px) {
	p.notification {
		margin-top: 0;
	}
	a.page-back-to {
		left: 10px;
		top: 20px;
	}
}
main.uzman-list{
	padding-top: 0;
	margin-bottom: 100px;
}
main.uzman-detail{
    width:59%;
	margin-bottom: 64px;
}


.uzman-detail {
	position: relative;
}
.uzman-detail .comment-item:not(.child-comment-item){
	/*background-color: var(--Colors-Primary-700);*/
	background-color: var(--Colors-Primary-200);
}
.uzman-detail .comment-item:not(.child-comment-item) .comment-header h5{
	/*color: #ffffff;*/
}
.uzman-detail .comment-item:not(.child-comment-item) .comment-header span{
	/*color: #ffffff;*/
}
.uzman-detail .comment-item:not(.child-comment-item) .comment-body p{
	/*color: #ffffff;*/
}
.uzman-detail .uzman-header {
	padding-top: 0;
	margin-bottom: 0;
	position: relative;
}

@media (max-width: 992px) {
	.error404 main .flex {
		flex-direction: column;
	}
	.error404 h1 {
		font-size: 160px!important
	}
	.error404 h3 {
		font-size: 26px!important;
	}
}
main.uzman-detail .uzman-header .stars {
	width: 104px;
	height: 20px;
}
main.uzman-detail .uzman-header .stars > span {
	left: 0;
}
.uzman-header .uzman-summary {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.single-hizmet .uzman-header .uzman-summary {
    justify-content: flex-start;
    gap: 10px;
}
.uzman-header .danisan-number {
	font-size: 16px;
	color: #8C8C8C;
	line-height: 1.5;
	font-weight: 400;
}
.uzman-header h1 {
	font-size: 24px;
	margin:0;
	color: #7DBAB0;
	line-height: 1.2;
	font-weight: 600;
}
.uzman-detail .uzman-header .cat-name {
	font-size: 16px;
	color: #8C8C8C;
	font-weight: 500;
	line-height: 1.4;
}
.uzman-header .uzman-body{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.uzman-header .uzman-body .konum {
	font-size: 12px;
	margin-bottom:0;
	color: #5D5325;
	font-weight: 400;
	line-height: 1.5;
	padding: 4px 8px;
	background-color: #D8C57199;
	border: 1px solid #D8C571;
	backdrop-filter: blur(4px);
	width: fit-content;
	border-radius: 2px;
}
.uzman-header .uzman-body .konum:before {
	max-width: 20px;
	max-height: 16px;
	background-size: contain;
	margin-right: 8px;
}
.uzman-header .uzman-header-top {
	position: relative;
	z-index: 9;
	margin: 32px 0;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.uzman-header .uzman-header-top-mobile{
	display: none;
}
.uzman-header-bottom{
	display: flex;
	flex-direction: column;
	align-items: end;
	justify-content: space-between;
}
.uzman-header .mini-description {
	max-width: 340px;
	font-size: 14px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 6;
	-webkit-line-clamp: 6;
	overflow: hidden;
	display: none;
}
.single-hizmet .uzman-header .mini-description {
	max-width: 100%;
}
.uzman-header .mini-description p {
	margin: 0 0 15px;
}
.uzman-butons {
	display: flex;
	flex-direction: column;
}
.uzman-butons .btn {
	margin: 7.5px 0;
	padding: 15px 25px;
}

.popup {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center; 
	justify-content: center;
	background: #0000001f;
	z-index: 1005;
	transition: all .3s ease-in-out;
}
.popup.close {
	opacity: 0;
	visibility: hidden;
}
.popup .popup-inner {
	position: relative;
	width: 720px;
	padding: 50px 30px;
	background: #F3F7FD;
	border-radius: 28px;
	font-size: 14px;
	line-height: 1.5;
	color: #989898;
	max-height: 100vh;
	overflow: auto;
}
.cat-popup .popup-inner {
	overflow: inherit!important;
}
.popup .popup-inner::-webkit-scrollbar {
  display: none;
}
.popup .popup-close {
	position: absolute;
	left: 30px;
	top: 20px;
	width: 20px;
}
.popup .back {
	position: absolute;
	right: 30px;
	top: 20px;
	display: flex;
	color: #222;
	border: 1px solid #e3e3e3;
	padding: 3px 9px;
	border-radius: 5px;
	font-size: 12px;
}
.popup .popup-close svg {
	max-width: 100%;
}
.popup .back svg {
	width: 18px;
	margin-right: 7px;
}
.flex-50 .col {
	flex: 0 0 calc(50% - 15px);
	-ms-flex: 0 0 calc(50% - 15px);
	width: calc(50% - 15px);
}
.popup h3 {
	font-size: 20px;
	color: #03A9F4;
	margin: 0 0 10px;
}
.popup p {
	margin: 0;
}
.popup-buttons {
	display: flex;
	flex-direction: column;
}
.popup-buttons .btn {
	margin: 10px 0;
}

/* Consent Form Styles */
.consent-form-section,
.consent-form-checkbox {
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 5px;
}

.consent-form-checkbox {
    padding: 10px 15px;
    margin: 10px 0;
}

.consent-form-section .consent-checkbox,
.consent-form-checkbox .consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.consent-form-section .consent-checkbox input[type="checkbox"],
.consent-form-checkbox input[type="checkbox"] {
    margin-top: 3px;
}

.consent-form-section .consent-form-text,
.consent-form-checkbox .consent-form-text {
    font-size: 14px;
    line-height: 1.5;
}

.consent-form-section .consent-form-link,
.consent-form-checkbox .consent-form-link {
    color: #03A9F4;
    text-decoration: underline;
    margin-left: 5px;
}

.consent-form-section .consent-form-link:hover,
.consent-form-checkbox .consent-form-link:hover {
    color: #0288D1;
}

.consent-form-popup .popup-inner {
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
}

.consent-form-content {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    max-height: 60vh;
    overflow-y: auto;
}

.consent-form-content h1,
.consent-form-content h2,
.consent-form-content h3,
.consent-form-content h4,
.consent-form-content h5,
.consent-form-content h6 {
    color: #222;
    margin-top: 15px;
    margin-bottom: 10px;
}

.consent-form-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.consent-form-content ul,
.consent-form-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.consent-form-content li {
    margin-bottom: 5px;
}
.popup-step2-buttons .btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	padding: 10px 11px;
}
.popup-buttons .btn .price {
	padding: 5px 9px;
	background: #ffa622;
	color: #fff;
	border-radius: 5px;
	font-size: 12px;
}
.cizelge-wrapper {
	position: relative;
	margin-top: 30px;
	padding: 0 10px;
	width: 100%;
	overflow: hidden;
}
.scroll-container {
	position: relative;
	width: auto;
	white-space: nowrap;
	overflow: hidden;
}
.cizelge-wrapper .scroll-container {
    max-height: 30vh;
	min-height: 200px;
	overflow: auto;
}
.cizelge-nav {
    position: absolute;
    left: 10px;
    top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cizelge-nav.disable {
	opacity: 0.5;
	pointer-events: none;
}
.cizelge-nav svg {
	max-width: 100%;
}
.cizelge-nav-right {
	left: auto;
	right: 10px;
}
.cizelge-header {
    margin-bottom: 8px;
    border-left: none;
    border-right: none;
    position: sticky;
    top: 0;
}
.cizelge-body {
	min-height: 180px;
}
.cizelge-wrapper .col {
	min-width: 67px;
	text-align: center;
	font-size: 12px;
	color: #222;
	font-weight: 500;
	padding: 0 5px;
	line-height: 1.2;
}
.cizelge-header .col {
	text-align: center;
    background: #fafbfb;
    padding-bottom: 7px;
}
.cizelge-wrapper .time {
	background: #E6EEFA; /* light blue */
	color: #2F5AA8; /* primary text */
	padding: 10px 0;
	font-size: 13px;
	font-weight: 600;
	border-radius: 10px;
	display: block;
	width: 72px;
	margin: 0 auto 12px;
	text-decoration: none;
	border: 1px solid #D5E3F7;
	transition: all .2s ease;
}
.cizelge-wrapper .time:hover { background: #DDE9FD; color: #244A94; border-color: #C7D8F5; }
.cizelge-wrapper .time.active { background: #CFE1FF; border-color: #9CC0FF; color: #1C3F8A; }
.cizelge-wrapper .time.blocked-by-appointment {
    background: #f5f5f5;
    color: #999;
    border-color: #ddd;
    opacity: 0.5;
    pointer-events: none;
    display: none !important;
}
/* Skeleton loading animation */
.cizelge-wrapper .time.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    color: transparent;
    pointer-events: none;
    border-color: #e0e0e0;
}
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
/* Loading overlay for cizelge wrapper */
.cizelge-wrapper.is-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}
.cizelge-wrapper.is-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
    z-index: 10;
    pointer-events: none;
}
.cizelge-order {
    margin: 20px 0;
    max-height: 23vh;
    overflow: auto;
    border-bottom: 1px solid #7dbab0;
}
.cizelge-order-item {
    font-size: 14px;
    color: #222;
    line-height: 1;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
}
.cizelge-order-item span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.cizelge-order-item .gorusme-tip {
	font-size: 11px;
	width: 68px;
}



.cizelge-order-item .variation-name {
	font-size: 12px;
}
.cizelge-order-item .cizelge-order-remove {
    margin-left: 20px;
}
.cizelge-order-item .cizelge-order-remove:before {
	content: url('data:image/svg+xml,<svg style="width: 15px;" viewBox="-0.5 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M3 21.32L21 3.32001" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M3 3.32001L21 21.32" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></g></svg>');
	width: 15px;
	display: block;
}
.cizelge-order-item .variation-name .price {
	display: none;
}

/* New appointment order layout styles */
.cizelge-order-item-new {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif;
}

.appointment-summary {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 15px;
}

.appointment-summary .variation-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    flex: 1;
}

.appointment-summary .appointment-count-display {
    font-size: 13px;
    color: #7dbab0;
    font-weight: 600;
    background: #f0f8f6;
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid #7dbab0;
}

.details-icon {
    cursor: pointer;
    font-size: 16px;
    color: #7dbab0;
    margin: 0 10px;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
}

.details-icon:hover {
    background: #e8f4f2;
    transform: scale(1.1);
}

.remove-all-appointments {
    cursor: pointer;
    font-size: 14px;
    color: #dc3545;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.remove-all-appointments:hover {
    background: #f8d7da;
    transform: scale(1.1);
    color: #721c24;
}

.remove-variation-appointments {
    cursor: pointer;
    font-size: 16px;
    color: #dc3545;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-left: 5px;
}

.appointment-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    margin-top: 5px;
    padding: 10px;
    animation: fadeInUp 0.3s ease;
}

.appointment-detail {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.appointment-detail:last-child {
    border-bottom: none;
}

.appointment-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.appointment-info:before {
    content: "📅";
    font-size: 12px;
    flex-shrink: 0;
}

.remove-single-appointment {
    cursor: pointer;
    color: #dc3545;
    font-size: 14px;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.remove-single-appointment:hover {
    background: #f8d7da;
    transform: scale(1.1);
    color: #721c24;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .cizelge-order-item-new {
        padding: 12px;
    }
    
    .appointment-summary {
        gap: 10px;
    }
    
    .appointment-summary .variation-name {
        font-size: 13px;
    }
    
    .appointment-summary .appointment-count-display {
        font-size: 12px;
        padding: 3px 6px;
    }
    
    .appointment-tooltip {
        left: -10px;
        right: -10px;
    }
}
a.added_to_cart {
	display: none!important;
}
td.product-name dl.variation p {
	margin: 0;
}
.tab-menu-randevu-inner .note {
    font-size: 12px;
    text-align: center;
    color: #707070;
}

/* Vertical appointment rows inside new order card */
.cizelge-order-item-new .appointment-list { margin-top: 10px; display: flex; flex-direction: column; gap: 8px; }
.cizelge-order-item-new .appointment-row { display: flex; align-items: center; gap: 16px; padding: 8px 10px; border-radius: 8px; background: #F6FAFF; }
.cizelge-order-item-new .appointment-row .cizelge-order-date,
.cizelge-order-item-new .appointment-row .cizelge-order-time,
.cizelge-order-item-new .appointment-row .gorusme-tip { color: #7A8594; font-size: 13px; display: flex; align-items: center; gap: 6px; }
.cizelge-order-item-new .appointment-row .remove-single-appointment { margin-left: auto; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; transition: background .2s ease; }
.cizelge-order-item-new .appointment-row .remove-single-appointment:hover { background: #FDECEC; }
.cizelge-order-item-new .appointment-row .remove-single-appointment:before {
	content: url('data:image/svg+xml,<svg style="width: 15px;" viewBox="-0.5 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M3 21.32L21 3.32001" stroke="%23FF6B6B" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M3 3.32001L21 21.32" stroke="%23FF6B6B" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></g></svg>');
	display: block;
}

/* Booking area - visual refresh to match UI */
.tab-menu-randevu-inner {
	background: #F3FBF8; /* soft green tint from screenshot */
	border-radius: 14px;
}

.tab-header-randevu {
	display: flex;
	gap: 12px;
	background: #E2F3EE;
	padding: 6px;
	border-radius: 999px; /* pill container */
	width: fit-content;
}
.tab-header-randevu > div {
	padding: 10px 16px;
	border-radius: 999px;
	font-weight: 700;
	color: #2E6E63;
}
.tab-header-randevu > div.active {
	background: #2E6E63; /* dark green active */
	color: #ffffff;
}
.tab-header-randevu > div h3 { margin: 0; font-size: 14px; }

/* Input with icon button style */
.input-container-randevu {
	position: relative;
}
.input-container-randevu input.package {
	width: 100%;
	height: 52px;
	border: 1px solid #E4E9EE;
	border-radius: 12px;
	background: #ffffff;
	padding: 0 52px 0 16px; /* leave room for icon on right */
	font-size: 15px;
}
.input-container-randevu img.icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: #E6F3EF;
	border: 1px solid #D3EAE3;
	border-radius: 10px;
	padding: 10px;
	width: 36px;
	height: 36px;
}

/* Schedule box card */
.randevu-cizelge-box {
	background: #ffffff;
	border: 1px solid #E7EEF5;
	border-radius: 14px;
	padding: 10px 10px 0;
}
.randevu-cizelge-box .cizelge-wrapper { padding: 0 6px; }
.cizelge-header { background: #ffffff; }
.cizelge-header .col { background: transparent; }
.cizelge-header .col strong { display: block; color: #111827; font-size: 13px; margin-bottom: 3px; }
.cizelge-header .col > span { color: #6B7280; font-size: 12px; }

/* Navigator arrows color tweak */
.cizelge-nav svg path { fill: var(--Colors-Primary-200); }

/* Note spacing */
.tab-menu-randevu-inner p.note { color: #6B7280; margin-top: 12px; }
@media (max-width: 992px) {
	.tab-menu-randevu-inner{
		padding: 20px 16px !important;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
	}
	.tab-menu-randevu[data-mobile-popup] {
		overscroll-behavior: contain;
	}
	.cizelge-body {
		height: 150px;
	}
	.cizelge-order {
		max-height: calc(50vh - 220px);
		margin: 15px 0;
	}
	.tab-header-randevu{
		margin-bottom: 20px !important;
		gap: 10px;
	}
	.tab-header-randevu > div h3{
		font-size: 13px;
	}
	.randevu-cizelge-box .cizelge-wrapper{
		margin-top: 20px !important;
		z-index:1;
	}
	.newsletter-box .applications img {
		max-width: 150px;
	}
	body.sticky .site-header{
		padding: 15px 0;
	}
	body.sticky .soru-wrapper-inner{
		max-height: calc(95vh - 150px);
	}
}
.shop_table .cart_item {
	position: relative;
}
.cart-remove-item {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}
.uzman-egitims .egitim-inner {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--Colors-Primary-200);
}
.uzman-egitims .egitim-inner > div{
	flex-wrap: wrap;
}
.uzman-egitims .egitim-inner .col {
    width: calc(33%);
}
.uzman-egitims img {
	margin-right: 14px;
}
.uzman-egitims h4 {
	font-size: 24px;
	color: #CFB852;
	font-weight: 400;
	margin: 0;
	line-height: 1.5;
	margin-bottom: -5px;
}
.uzman-egitims span {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #262626;
}
.uzman-egitims .egitim-box{
	align-items: start;
}
.uzman-gallery {
	width: 358px;
	min-width: 358px;
	margin: 0;
	margin-right: 40px;
	padding-bottom: 36px;
}
.uzman-gallery img {
	width: 358px;
	height: 368px;
	border-radius: 20px;
	object-fit: cover;
}
.uzman-gallery .swiper-pagination-bullet {
	width: 7px;
	height: 7px;
	background-color: var(--Colors-Primary-200);
	bottom: 0;
}
.egitim-description h3 {
	font-size: 38px;
	color: var(--Colors-Primary-700);
	font-weight: 500;
	line-height: 1.2;
	margin:0;
}
.egitim-description .cats-name {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4;
	color: #8C8C8C;
}
.egitim-description .description {
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
	color: #262626;
	margin-top: 8px;
}
.uzman-etkinlik-wrapper {
	width: 340px;
	min-width: 340px;
	padding: 30px 30px 0;
	margin-left: 40px;
	border-radius: 20px;
	background: #F3F7FD;
}
.uzmanEtkinlikSwiper {
	padding-bottom: 10px;
}
.uzmanEtkinlikSwiper .swiper-pagination-bullet {
	width: 7px;
	height: 7px;
	background-color: #FFA722;
}
.uzman-etkinlik-wrapper h4 {
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	margin: 0 0 15px;
}
.uzman-event-item figcaption {
	text-align: center;
	padding: 10px 15px 0;
	color: #222;
}
.uzman-event-item h3 {
	font-size: 16px;
	color: #FFA722;
	font-weight: 500;
	margin: 0 0 5px;
}
.uzman-event-item figure > img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
}
.uzman-event-item h4 {
	font-size: 14px;
	font-weight: 500;
	margin: 0;
}
.uzman-event-item .cat-name {
	display: block;
	color: #989898;
	font-size: 10px;
}
.uzman-event-item .event-content {
	margin-top: 30px;
	font-size: 14px;
	font-weight: 300;
}
.uzman-event-item .event-content .col {
	width: 123px;
	margin-bottom: 10px;
}
.uzman-event-item .event-content img {
	width: 24px;
	height: 24px;
	margin-right: 5px;
}
.uzman-more .tab-content{
    display: none;
}
.uzman-more .tab-content.active{
	margin-bottom: 30px;
    display: block;
}

.tab-container {
	width: 100%;
}
.tab-button, .randevu-box .randevu-button {
	border: none;
	border-bottom: 2px solid transparent;
	background: transparent;
	padding: 0 8px 16px;
	margin-bottom: 17px;
	margin-right: 10px;
	margin-top: 17px;
	font-size: 16px;
	color: #989898;
	cursor: pointer;
}
.tab-button.active, .randevu-box .randevu-button.active {
	border-color: #03A9F4;
	color: #222;
}

.single-hizmet .tab-content {
	height: auto;
	padding: 20px;
}
.woocommerce-ResetPassword .form-row-first, .woocommerce-ResetPassword .form-row-last {
    width: 100%!important;
}
.account-bg-container {
    background: #fff;
    padding: 32px;
    border-radius: 15px;
    margin-top: 30px;
}
.woocommerce-account .tab-content {
	border-radius: 0;
	overflow: auto;
	scroll-behavior: auto;
	scroll-behavior: smooth;
}
.tab-content.active {
	height: auto;
	padding: 20px;
	display: block;
	opacity: 1;
}
.woocommerce-account .tab-content.active {
	padding: 0;
}
.tabs .klinik {
	margin-bottom: 20px;
}
.uzman-comments h3 {
	font-size: 30px;
	font-weight: 500;
	line-height: 1.3;
	color: #595959;
	margin: 0;
}
.uzman-comments h3 strong,
.uzman-comments h6 strong{
	font-weight: 500;
	/*color: var(--Colors-Primary-700);*/
	color: var(--Colors-Primary-700);
}

.uzman-comments .danisan-number{
	font-size:12px;
}

.uzman-comments .uzman-comment-wrap{
	padding-bottom: 40px;
}

.uzman-comments .swiper-button-prev, .uzman-comments .swiper-button-next{
	color: var(--Colors-Primary-700);
    font-size: 12px;
    font-weight: 500;
    gap: 4px;
    padding: 8px 8px;
    top: auto;
    border-radius: 8px;
    bottom: 0px;
    width: auto;
    height: auto;
    background: var(--Colors-Primary-100);
	align-items:flex-start;
}

.uzman-comments .swiper-button-prev{
	left:0;
}

.uzman-comments .swiper-button-next{
	right:0;
}

.uzman-comments .swiper-button-prev img, .uzman-comments .swiper-button-next img{
	filter: brightness(0) saturate(100%) invert(28%) sepia(74%) saturate(696%) hue-rotate(187deg) brightness(92%) contrast(93%);
}

.uzman-comments .swiper-button-prev:after, .uzman-comments .swiper-button-next:after{
	display:none;
}

.comment-item{
	border-radius:8px;
	font-size:14px;
}

.comment-item.child-comment-item{
	margin-top:16px;
}

.uzman-comments .comment-body{
	padding:8px;
}

.uzman-comments .comment-body p{
	margin:0;
}

.uzman-comments .comment-name, .uzman-comments .comment-checks{
	padding: 8px;
}

.uzman-comments .comment-checks{
	font-size:14px;
}

.uzman-comments .comment-checks .comment-checks-icon{
	font-size:12px;
	font-weight:500;
	color:var(--Colors-Primary-800);
}

.uzman-comments .comment-avatar{
    margin: 8px 8px 0 8px;
    border-radius: 8px;
	border:solid 1px var(--Colors-Primary-100);
}

.uzman-comment-wrap {
	margin-top: 16px;
	z-index: 0;
}
.uzman-comment-wrap .comment-item {
	max-width: 100%;
}
.child-comment-item {
	position: relative;
	margin-left: 48px;
	width: calc(100% - 48px);
	background: #F5F5F5;
}
.child-comment-item:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    width: 30px;
    height: 50%;
    border: 3px solid #e0e0e0;
    border-right: 0;
    border-top: 0;
	display: none;
}
.child-comment-item:after {
	content: '';
	position: absolute;
}
.child-comment-item:after {
    content: '';
    position: absolute;
    left: -52px;
    top: 50%;
    border-width: 5px;
    border-color: #e0e0e0 transparent transparent #e0e0e0;
    border-style: solid;
    transform: translateY(-50%) rotate(135deg);
    margin-top: 1px;
	display: none;
}
.child-comment-item:last-child{
	margin-bottom: 0;
}
.child-comment-item .comment-header h5{
	color: #454545;
}
.child-comment-item .comment-name span{
	color: #454545;
}
.child-comment-item .comment-body p{
	color: #595959;
}

section.bilgi-banner {
	padding:100px 0;
	display: flex; 
	align-items: flex-end;
}
.bilgi-banner-wrap {
	position: relative;
	height: 382px;
	background: var(--Colors-Primary-500);
	border-radius: 45px;
}
.bilgi-banner-wrap .attachment-full {
	position: absolute;
	left: 0;
	bottom: 0;
}
.bilgi-banner-wrap .bilgi-banner-inner {
	width: calc(100% - 500px);
	padding-right: 11vw;
	margin-left: auto;
	color: #fff;
}
.bilgi-banner-inner h3 {
	font-size: 48px;
	margin: 0 0 20px;
}
.bilgi-banner-inner p {
	max-width: 500px;
	line-height: 1.5;
	margin: 0 0 40px;
}

section.dortlu-kutucuk {
	position: relative;
}
.dortlu-kutucuk:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 224px;
	height: 634px;
	background: url('assets/icons/kutucuk-bg-left.svg') center no-repeat;
	transform: translateY(-50%);
}
.page-kurumsal .look-us .col:nth-child(2)::before{
	background: url('assets/icons/play-video-icon.svg') center no-repeat;
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	z-index: 9;
}
.dortlu-kutucuk:after {
	content: '';
	position: absolute;
	right: 0;
	bottom: -60px;
	width: 297px;
	height: 526px;
	background: url('assets/icons/wave.svg') center no-repeat;
	z-index: -1;
}
.dortlu-kutucuk .kutucuk-box .col {
	flex: 0 0 calc(50% - 15px);
	-ms-flex: 0 0 calc(50% - 15px);
	width: calc(50% - 15px);
}
section.baslik-aciklama {
	margin: 100px 0 50px;
}
.baslik-aciklama h3 {
	width: 500px;
	max-width: 100%;
	font-size: 48px;
	text-align: left;
}
.baslik-aciklama .description {
	width: 516px;
	max-width: 100%;
	color: #585858;
	text-align: left;
	line-height: 1.6;
}

section.kutucuklar {
	margin: 50px 0 100px;
}
.kutucuklar .col {
	flex: 0 0 calc(33.333% - 15px);
	-ms-flex: 0 0 calc(33.333% - 15px);
	width: calc(33.333% - 15px);
}
.kutucuklar .kutu-item {
	height: 100%;
	border-radius: 0;
	border-top-right-radius: 20px;
	padding-top: 35px;
	overflow: hidden;
}
.kutucuklar .kutu-item:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 18px;
	background: var(--Colors-Primary-200);
}
.kutucuklar .kutu-item h3 {
	font-size: 24px;
	color: #585858;
	margin-bottom: 15px;
}
.kutucuklar .description {
	color: #585858;
	margin-bottom: 40px;
}
.kutucuklar .btn-bordered{
	color: var(--Colors-Primary-200);
	background-color: transparent;
	border: none;
	display: flex;
	align-items: center;
	gap: 8px;
}
.kutucuklar .btn-bordered img{
	width: 10px;
	height: 20px;
}
.page-template-template-meeting .site-nav .collapse {
	display: none!important
}
.page-template-template-meeting .site-nav {
	justify-content: center;
}
section.sss {
	margin: 64px 0;
}

section.sss .col {
	margin-bottom: 30px;
}
@media (min-width: 992px) {
	section.sss .col {
		flex: 0 0 calc(50% - 30px);
		-ms-flex: 0 0 calc(50% - 30px);
		width: calc(50% - 30px);
	}
	.services-swiper .swiper-wrapper{
		justify-content: center;
	}
}
.sss-wrapper {
	width: 55%;
}
.account-bg-container .sss-wrapper {
	width: 100%;
}
.sss-wrapper h3 {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 40px;
}


.page-kurumsal .look-us .col:nth-child(1) {
	flex: 0 0 55%;
	-ms-flex: 0 0 55%;
	width: 55%;
}
.page-kurumsal .look-us .col:nth-child(2) {
	flex: 0 0 45%;
	-ms-flex: 0 0 45%;
	width: 45%;
	position: relative;
}
.page-kurumsal .look-us .attachment-full {
	border-radius: 36px;
	width: 100%;
}
.page-kurumsal .taniyin-box .title-box {
	max-width: 100%;
}
.page-kurumsal .taniyin-box p {
	width: 100%;
	margin-bottom: 15px;
}

.single-etkinlik .event-content {
    font-size: 20px;
    font-weight: 600;
    row-gap: 20px;
    column-gap: 40px;
}
.single-etkinlik .event-content img {
	margin-right: 10px;
	width: 30px;
}

.comments-rating {
	border: none;
	padding: 0;
	margin-left: 0;
}
.comments-rating label {
	display: inline-block;
}
.rating-container {
	font-size: 0;
	display: flex;
	justify-content: flex-end;
	flex-direction: row-reverse;
}
.rating-container * {
	font-size: 1.4rem;
}
.rating-container > input {
    opacity: 0;
    margin-left: -18px;
    margin-top: -13px;
    cursor: pointer;
}
.rating-container > input + label {
  	font-family: 'Font Awesome 6 Free';
	display: inline-block;
	overflow: hidden;
	text-indent: 9999px;
	width: 1em;
	min-width: 1em;
	white-space: nowrap;
	cursor: pointer;
	margin: 0;
}
.rating-container > input + label:before {
	display: inline-block;
	text-indent: -9999px;
	content: "\f005";
	color: #d9d9d9;
}
.rating-container > input:checked ~ label:before,
.rating-container > input:hover ~ label:before,
.rating-container > input + label:hover ~ label:before,
.rating-container > input + label:hover:before {
	content: "\f005";
	color: #FFA722;
	text-shadow: 0 0 1px #333;
}
.rating-container > .star-cb-clear + label {
	text-indent: -9999px;
	width: .5em;
	margin-left: -.5em;
}
.rating-container > .star-cb-clear + label:before {
	width: .5em;
}
.comment-respond .rating-container > .star-cb-clear + label, .comment-respond .rating-container > input + label:before {
	text-indent: 9999px;
}
.comment-respond .rating-container > input + label {
	text-indent: -9999px;
}
.comment-rating-box {
    display: flex;
    margin: 10px 0;
    gap: 30px;
}
.comment-rating-box input[type="checkbox"] {
    margin: -5px 7px 0 0;
}
.uzman-detail .hizmet-stars {
	color: #ffa622;
	font-size: 20px;
	display: flex;
}
.uzman-detail .uzman-img img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
}
.no-randevu {
	text-align: center;
}

.uzman-register .list-body {
	margin-top: -100px;
}
.uzman-register .list-body .attachment-full {
	margin-top: -90px;
}
.register-form {
	width: 550px;
	max-width: 100%;
	padding: 40px 30px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 3px -5px 40px 0px rgba(205, 205, 212, 0.10);
}
.register-form h2 {
	font-size: 24px;
	width: 360px;
	max-width: 100%;
	margin: 0 auto 30px;
	text-align: center;
}
.register-form h2 strong {
	color: var(--Colors-Primary-200);
}
form.wcpv-shortcode-registration-form .form-row-first,
form.wcpv-shortcode-registration-form .form-row-last {
	width: 49%;
	margin-bottom: 10px;
}
.register-form .form-row {
	position: relative;
	margin: 0 0 10px;
}
.register-form .form-row:not(div) > img {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
}
.register-form input:not([type=checkbox]) {
	width: 100%!important;
	height: 50px!important;
	padding-left: 48px!important;
	border: 1px solid #989898!important;
	border-radius: 10px!important;
	font-size: 16px!important;
	color: #222!important;
}
.register-form input:not([type=checkbox]):focus{
	border-color: var(--Colors-Primary-200) !important;
}
.register-form input:focus {
	border-color: #03A9F4;
}
.register-form input::placeholder {
	color: #989898;
}
#customer_details > div {
	gap: 50px;
}
.woocommerce form .form-row .optional {
	display: none;
}
.woocommerce-checkout form.checkout_coupon {
    padding: 0;
    border: none;
	margin: 0;
}
.woocommerce-checkout form.checkout_coupon .form-row {
	margin-bottom: 0;
}
.woocommerce-checkout form.checkout_coupon .form-row-first {
	width:60%;
}
.woocommerce-checkout form.checkout_coupon .form-row-last {
	width:40%;
}
.woocommerce-checkout form.checkout_coupon .button {
	width: 100%;
	height: 46px;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper:not(.active),
.woocommerce-shipping-fields, .woocommerce-additional-fields {
    display: none;
}
div:is(.woocommerce-billing-fields__field-wrapper, .woocommerce-address-fields__field-wrapper):not(.kurumsal-active) p:where(#unvan_field, #vergi_no_field, #vergi_dairesi_field) {
	display: none;
}
div:is(.woocommerce-billing-fields__field-wrapper, .woocommerce-address-fields__field-wrapper):is(.kurumsal-active) p:where(#billing_first_name_field, #billing_last_name_field, #tc_kimlik_field) {
	display: none;
}
.woocommerce-checkout .woocommerce-account-fields {
	display: none;
}
#thmaf_billing_alt_field {
	position: relative;
	margin-bottom: 40px;
}
#thmaf_billing_alt_field:before {
	content: '';
	position: absolute;
	left: 20px;
	top: 43px;
	width: 23px;
	height: 23px;
	background: url('data:image/svg+xml,<svg viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%2342b6f6"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><title></title><g fill="none" fill-rule="evenodd" id="页面-1" stroke="none" stroke-width="1"><g id="导航图标" transform="translate(-26.000000, -15.000000)"><g id="编组" transform="translate(26.000000, 15.000000)"><rect fill="%23FFFFFF" fill-opacity="0.01" fill-rule="nonzero" height="24" id="矩形" width="24" x="0" y="0"></rect><polygon id="路径" points="4.5 9 4.5 21 19.5 21 19.5 9 12 3"></polygon><polygon id="路径" points="4.5 21 4.5 9 2 11 12 3 22 11 19.5 9 19.5 21" stroke="%2342b6f6" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></polygon><polygon id="路径" points="9.5 14.5 9.5 21 14.5 21 14.5 14.5" stroke="%2342b6f6" stroke-linejoin="round" stroke-width="1.5"></polygon><line id="路径" stroke="%2342b6f6" stroke-linecap="round" stroke-width="1.5" x1="4.5" x2="19.5" y1="21" y2="21"></line></g></g></g></g></svg>') center no-repeat;
	background-size: contain;
    z-index: 9;
    pointer-events: none;
}
.woocommerce-checkout #thmaf_billing_alt_field .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-left: 55px;
}
.checkout-buttons {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 300px;
	max-width: 100%;
	text-align: center;
	margin: 30px auto;
}
.checkout-buttons .btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	font-weight: bold;
}
.checkout-buttons .btn svg {
	position: absolute;
	left: 15px;
}
.woocommerce-checkout .woocommerce-info {
	display: none;
}
.register-form .select2-container, .woocommerce-checkout .select2-container {
	width: 100%!important;
}
.register-form .select2-container--default .select2-selection--single, body:is(.woocommerce-checkout, .woocommerce-account) .select2-container--default .select2-selection--single {
	border-color: #D9D9D9;
	border-radius: 10px;
	height: 50px;
}
.register-form-box .select2-container--default .select2-selection--single .select2-selection__rendered, 
body:is(.woocommerce-checkout, .woocommerce-account) .select2-container--default .select2-selection--single .select2-selection__rendered {
	font-size: 16px;
	color: #909090;
	line-height: 50px;
	padding: 0;
	padding-left: 40px;
}
body:is(.woocommerce-checkout, .woocommerce-account) .page-content .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-left: 15px;
}
.register-form-box .select2-container--default .select2-selection--single .select2-selection__arrow,
body:is(.woocommerce-checkout, .woocommerce-account) .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 9px;
}
.register-form textarea {
	height: 150px;
	resize: none;
	border: 1px solid #989898;
	border-radius: 10px;
	padding: 10px;
	font-size: 16px;
	font-family: inherit;
	color: #989898;
	outline: 0;
}
.register-form textarea::placeholder {
	color: #989898;
}
.register-form textarea:focus {
	border-color: #03A9F4;
}
.register-form span {
	font-size: 12px;
	color: #989898;
}
.register-form span a {
	color: var(--Colors-Primary-200);
}
.register-form .btn-primary {
	width: 100%;
	margin-top: 10px;
	text-transform: uppercase;
}
span.is-member {
	display: block;
	text-align: center;
	font-size: 14px;
}
span.is-member a {
	font-weight: bold;
}
img.register-bg {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	max-width: 32vw;
}
img.login-bg {
	position: absolute;
	left: 0;
	top: 20%;
	width: 100%;
	z-index:-1;
}
.login-form {
	margin: 0 auto;
}
.form-popup .popup-inner {
    background: transparent;
}
.form-popup .popup-close {
    left: auto;
    right: 100px;
    top: 60px;
}
.register-form .lost_password a {
	font-size: 12px;
	color: #03A9F4;
}
.page-giris-yap .list-header {
	min-height: 40vh;
}
.woocommerce-account .iti {
	width: 100%;
}
.woocommerce-account .iti input.input-text[type="tel"] {
    padding-left: 48px;
}
.register-form .iti {
	width: 100%;
}
.register-form .iti input {
	padding-left: 50px;
}
.register-form .form-row-first, .register-form .form-row-last {
	float: left;
	width: 49%;
	overflow: visible;
}
.register-form .form-row-last {
	float: right;
}
.register-form .clear {
	clear: both;
}
form.custom-registration-form {
	margin-bottom: 20px;
}
.woocommerce-checkout .page-content div:not(.woocommerce-billing-fields) > h3 {
	font-size: 48px;
	text-align: center;
}
.woocommerce-form-coupon-toggle {
	display: none;
}
.checkout-cols {
	width: 45%;
}
@media (max-width: 992px) {
	.checkout-cols {
		width: 100%;
	}
}
.woocommerce-checkout form .form-row .required {
	display: none;
}
.woocommerce-checkout form .form-row-first, .woocommerce-checkout form .form-row-last {
	width: 49%;
}
form input[disabled] {
    cursor: no-drop;
}
#order_review .shop_table {
	border-color: transparent;
	background-color: #e0e5ed;
	font-size: 14px;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
	background-color: transparent;
}
.payment_method_iyzico_pwi {
	display: none;
}
#add_payment_method #payment ul.payment_methods, .woocommerce-cart #payment ul.payment_methods, .woocommerce-checkout #payment ul.payment_methods {
	padding: 0;
}
#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
	display: none;
}
#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
	padding: 15px;
	background-color: #e0e5ed;
	border-radius: 10px;
	font-size: 14px;
	color: #989898;
}
.wc_payment_methods p {
	margin: 0 0 15px;
}
.wc_payment_methods br {
	display: none;
}
#add_payment_method #payment div.payment_box .wc-credit-card-form, .woocommerce-cart #payment div.payment_box .wc-credit-card-form, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form {
	margin-top: 0;
	color: #222;
}
#add_payment_method #payment div.payment_box input.input-text, #add_payment_method #payment div.payment_box textarea, .woocommerce-cart #payment div.payment_box input.input-text, .woocommerce-cart #payment div.payment_box textarea, .woocommerce-checkout #payment div.payment_box input.input-text, .woocommerce-checkout #payment div.payment_box textarea {
	border-color: transparent;
}
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
	background: #7DBAB0;
	font-size: 14px;
	font-weight: 400;
	padding: 12px 20px;
	width: 100%;
	text-transform: uppercase;
}

.blog .header-title {
	margin: -30px auto 30px;
}
.blog .list-wrapper, .category .list-wrapper {
	width: 100%;
}

.single-sigorta .hero .post-hero-content .attachment-post-thumbnail {
	margin-top: 0;
}
.single-sigorta section.hero {
    height: 50vh;
    padding-top: 0;
    height: auto;
    min-height: auto;
}
.hero .post-hero-content > img {
	max-width: 40%;
}
.single-sigorta .single-main {
    margin: 50px 0 100px;
}
@media (max-width: 992px) {
	.hero .post-hero-content {
		flex-direction: column;
		gap: 30px;
	}
}
.single-post .page-main {
	line-height: 1.5;
	margin-bottom: 100px;
}
.woocommerce-account form .form-row input.input-text, .woocommerce-account form .form-row textarea, .woocommerce-account form .form-row .select2-selection--single {
	background: #f3f7fe;
}
.woocommerce-account fieldset {
    border-color: #f3f7fe;
    border-style: solid;
}
.woocommerce-account .page-content h3 {
	text-align: center;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
	width: 100%;
	display: flex; 
	overflow: auto;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex;
	flex-wrap: wrap;
    justify-content: center;
    list-style: none;
	gap: 10px;
    margin: 0 0 30px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}
.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block;
    font-size: 14px;
	text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #32a9f4;
    border-radius: 10px;
    padding: 15px;
	white-space: nowrap;
    border: none;
    transition: all .3s ease-in-out;
}
.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--customer-logout a {
    background: #ff4848;
    box-shadow: none;
    color: #fff;
    font-weight: 500;
}
.woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
    float: none;
    display: block;
}
body:is(.woocommerce-edit-address) .woocommerce-MyAccount-content {
    padding: 20px;
    background: #fff;
    box-shadow: 0 0px 10px rgba(0,0,0,0.05);
    border-radius: 15px;
}
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
	background: #e9e9e9;
	color: #000;
}
.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--eklinik a {
    color: #fff;
    background: #ff5600;
}
.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--enabiz a {
    color: #fff;
    background: #007f09;
}
.woocommerce-account table.shop_table {
	border: none;
	border-spacing: 0;
	border-radius: 0;
}
.woocommerce-account table.shop_table td {
	border: none;
	padding: 10px;
}
.woocommerce-account table.shop_table .woocommerce-orders-table__header-order-actions {
	width: 80px;
	text-align: center;
}
.woocommerce table.my_account_orders .button {
	white-space: nowrap;
	background: transparent;
	padding: 0;
	font-weight: 400;
}
.randevu-box .randevu-item {
	padding: 15px;
	cursor: pointer;
	border-bottom: 1px solid #ccc;
}
.randevu-box .randevu-item:nth-child(2n+1) {
	background: #f0f0f0;
}
.randevu-box .btns {
    min-width: 390px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
	gap: 20px;
}
.randevu-item:not(.active) > .randevu-item-body {
	display: none;
}
.randevu-item.active .randevu-down {
	transform: rotate(180deg);
}
.randevu-item-body {
    padding: 20px;
    background: #fff;
    margin: 20px 0 0;
}
.randevu-item-tabs {
    display: flex;
    gap: 20px;
}
.randevu-item-tabs .tabs {
	width: 100%;
}
.randevu-item-tabs .tabs .tab-content {
	background: transparent;
}
.randevu-item-tabs .child-comment-item {
    margin-left: 60px;
}
.review-popup .logged-in-as {
	display: none;
}
.review-popup .comment-form-comment br {
	display: none;
}
.review-popup #comment {
    width: 100%;
    border: none;
    margin-bottom: 30px;
	min-height: 200px;
}
.randevu-item h2, .review-popup #reply-title {
	color: #222;
	font-size: 20px;
	margin: 0;
}
.randevu-item span {
	font-size: 14px; 
	color: #989898;
	width: 270px;
	text-align: right;
}
.randevu-item span:is(.tarih, .saat) {
	width: 150px;
	text-align: center;
	color: #222;
}
.woocommerce-account .cizelge-input {
	margin-bottom: 30px;
}
.woocommerce-account form label {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
}
.woocommerce-account form .form-row {
	margin-bottom: 15px;
}
a.button.vendor-dashboard-link {
	display: none;
}
.woocommerce-account #acf-form {
	background: #fff;
}

.header-title.h1{
	font-size:2em;
	font-weight:500;
}
aside ul a {
    text-decoration: none;
    font-weight: 400 !important;
}

.politikalar-wrapper .politika-content {
    width: 100%;
}
aside ul a:hover, aside ul .current-menu-item a {
    color: var(--Colors-Primary-600);
}

.konu-button, .sss-button {
	position: relative;
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	padding: 15px 30px;
	background: #f5f5f5;
	color: #222;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 15px;
	border-radius: 10px;
}
.sss-button {
	background: #fff;
}
.konu-button.active:before, .sss-button.active:before {
	transform: translateY(-50%) rotate(90deg);
}
.konu-content, .sss-content {
	padding: 30px;
	background: #fff;
	border-radius: 10px;
}
.konu-content {
	padding-bottom: 15px;
	background: #f5f5f5;
}
.contact-konu, .sss-konu {
	margin-bottom: 15px;
}
.konu-box, .sss-box {
	margin-bottom: 15px;
}
.contact-last-boxes {
	margin: 15px 0;
}

.ekip-box {
	margin: 30px -7.5px;
}
.ekip-item {
	position: relative;
	width: calc(33.333% - 7.5px);
	margin: 0 7.5px;
}
.ekip-item img {
	height: 260px;
	object-fit: cover;
	border-radius: 10px;
}
.ekip-item .ekip-content {
	position: absolute;
	right: 10px;
	bottom: 10px;
	color: #fff;
	text-align: right;
	background: #FFA722;
	padding: 8px 15px;
	border-radius: 12px;
}
.ekip-item .ekip-content h5 {
	margin: 0;
}
.ekip-item .ekip-content span {
	font-size: 12px;
}
.wpcf7-form-control-wrap {
	width: 100%;
	display: block;
}
.wpcf7 input, .wpcf7 textarea {
	width: 100%;
	height: 40px;
	padding: 10px 15px;
	border: none;
	background: #f5f5f5;
	border-radius: 10px;
	font-weight: 600;
	color: #222;
}
.wpcf7 input::placeholder, .wpcf7 textarea::placeholder {
	color: #222;
}
.wpcf7 textarea {
	height: 200px;
	resize: none;
}
.wpcf7 input[type=submit] {
	background: #222;
	color: #fff;
	text-transform: uppercase;
}
.wpcf7-form-control-wrap[data-name=birim] {
	display: none!important;
}

.burger-button {
	display: none;
}
.mobile-filter-btn {
	display: none;
}
.filter-wrapper > h3 {
	display: none;
}
.show-category {
	display: flex;
	align-items: center;
	height: 50px;
	color: var(--Colors-Primary-700);
}
.popup:not(.show) {
	display: none;
}
.cat-popup {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: lch(0 0 0 / 0.6);
	z-index: 1005;
}
.cat-popup  .popup-inner {
	position: relative;
	width: 390px;
	max-width: 100%;
	background: #fff;
	border-radius: 10px;
	padding: 30px;
}
.cat-popup  a.popup-close {
	position: absolute;
	right: 0;
	top: -46px;
	left: auto;
}
.popup-inner a.term-item {
	display: block;
	box-shadow: none;
	padding: 0;
	margin-bottom: 30px;
	background: transparent!important;
}
.popup-inner .popup-title {
	position: absolute;
	left: 0;
	top: -53px;
	color: #fff;
}
.filter-wraps {
	height: 350px;
	overflow: auto;
}
.uzman-register .description {
	width: 330px;
	text-align: center;
	margin: 20px auto 0;
	line-height: 1.5;
	color: #999;
}
.uzman-register .description a {
	color: #03A9F4;
}
.filter-event-wrapper {
	margin-bottom: 30px;
	justify-content: center;
}
.filter-event-wrapper label {
	margin-right: 15px;
}
.filter-event-wrapper .select2 {
	width: 180px!important;
}
.filter-event-wrapper .cat-select {
	margin: 0 25px;
}
.filter-event-wrapper .filter-box{
	margin: 0 25px;
}
.randevu-end {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 50px auto 0;
	max-width: 320px;
	text-align: center;
	color: #999;
	font-size: 14px;
}
.services-swiper .service-item.active figure {
	transform: translateY(-6px);
}
.services-swiper .service-item.active figure {
	background: #e9eefd;
}
.services-swiper .service-item figure {
	transition: all .3s linear;
}

.services-swiper .service-item.active figure a {
	background: #fda720;
	color: #fff;
	padding: 10px 40px;
	font-weight: 700;
}

.doctor-swiper .doctor-item figcaption{
	transition:all .3s linear;
}
.doctor-swiper .doctor-item:hover figcaption {
	background: #efefef;
}

.services-swiper .service-item:hover figure {
	background:#e9eefd;
}
#menu-footer-menu-2 + h3 {
	margin-top: 23px;
}
.lang-currency {
	display: flex;
	flex-direction: row;
	column-gap: 10px;
	border-left: 1px solid #ccc;
	padding-left: 11px;
	height: 30px;
	align-items: center;
}


.lang-currency svg {
	max-width: 32px;
}
.brands-swiper img {
	filter: grayscale(1);
	transition:all .3s linear;
}

.brands-swiper img:hover {
	filter: grayscale(0);
}
.cats-item figure img {
	max-width: 50px;
}
.register-tab {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}
.register-tab a {
	color: #757575;
}
.radio-box {
	position: relative;
	width: 40px;
	height: 20px;
	margin: 0 12px;
	background: #F3F7FD;
	border-radius: 100px;
	cursor: pointer;
}
.radio-box:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	background: var(--Colors-Primary-200);
	border-radius: 50%;
	transition: all .3s ease-in-out;
}
.radio-box.active:before {
	left: auto;
	right: 0;
}
.filter-cevrimici .radio-box {
	background: #fff;
}
.register-form-box:not(.show) {
	display: none;
}
a.close-collapse {
	display: none;
}
.comment-reply-form {
    padding: 0 30px 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
}
.page-hesabim .comment-item:not(.child-comment-item) {
    background: #f7f7f7;
}
.comment-reply-form textarea {
	width: 100%;
	border: 1px solid #7DBAB0;
	border-radius: 8px;
	padding: 10px;
}
.filter-cevrimici {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.filter-cevrimici h3 {
	margin: 0;
}
form.lost_reset_password {
    width: 630px;
    max-width: 100%;
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    margin: 0 auto;
}
.woocommerce table.my_account_orders .button {
	color: inherit;
}
.wc-item-meta {
	display: none!important;
}
#randevu-yorum .logged-in-as {
    display: none;
}
#randevu-yorum fieldset.comments-rating {
    border: none;
}
#randevu-yorum .rating-checkbox label {
	font-weight: 400;
}
#randevu-yorum  #comment {
    width: 100%;
    height: 150px;
}
#randevu-yorum .comment-checks {
    width: 100%;
    text-align: left;
}
#randevu-yorum .comment-checks-icon {
    justify-content: flex-start;
}
/* Responsive */
@media (max-width: 992px) {
	main.uzman-detail{
		margin-bottom: 30px;
	}
	.uzman-comments{
		margin: 20px 0;
	}
	section.doctor-list, section.services-list, section.event-list, section.featured-doctors, section.blogs {
		margin: 42px 0;
	}
	section.doctor-list .doctor-slide{
		width: 257px !important;
	}
	.auto-swiper {
		padding-bottom: 0;
		padding-bottom: 50px;
		margin-bottom: -50px;
	}
	section:is(.cats, .doctor-list, .services-list, .event-list) .btn-bordered {
        position: relative;
        transform: none;
        left: auto;
        bottom: 0 !important;
        margin: 20px auto;
        display: block;
        width: 200px;
        max-width: 100%;
        text-align: center;
	}
	.mobile-hero-img {
		margin: 41px 0 -130px;
	}
	.home .mobile-hero-img {
		margin-bottom: 0;
		margin-top: 20px;
	}
	.mobile-hero-img video {
		width: 100%;
	}
	.comment-list {
		margin-left: 30px;
		margin-right: 30px;
	}
	.uzman-register .list-body .side {
		max-width: 100%;
	}
	.uzman-register .list-body .attachment-full {
		display: none;
	}
	.col {
		max-width: 100%;
	}
	.filter-wrapper > h3 {
		display: block;
	}
	.burger-button {
		display: block;
	}
	section.hero {
		height: auto;
		padding-top: 20px;
		padding-bottom: 18px;
		overflow: hidden;
	}
	
	.header-buttons {
		margin-left: 0;
	}
	.header-buttons a:not(.btn) {
		font-size: 16px;
	}
	.hero h1, .events-hero h1, .uzman-hero h2 {
		font-size: 24px;
		line-height: 1.5;
	}
	.uzman-hero h1 {
		font-size: 16px!important;
	}
	.single-etkinlik .event-content {
		font-size: 14px;
	}
	.single-etkinlik .event-content img {
		font-size: 20px;
	}

	.single-etkinlik .event-content {
		row-gap: 10px;
		column-gap: 20px;
	}
	.single section.hero {
		height: auto;
		padding-top: 60px;
		padding-bottom: 40px;
	}
	.hero p {
		font-size: 12px;
		text-align: center;
		line-height: 1.3;
		max-width: 100%;
	}
	.uzman-hero p {
		max-width: 100%;
	}
	section.hero {
		flex-direction: column;
	}
	section.hero:before {
		border-radius: 0;
	}
	section.hero .hero-img {
		width: 80vw;
		right: 0;
		top: auto;
		bottom: 0;
		height: auto;
		position: relative;
	}
	.home section.hero .hero-img {
		display: none;
	}
	.hero .searchbox {
		margin-top: 10px;
		width: calc(100% + 60px);
		border-radius: 0;
	}
	.searchbox .search-buttons {
		position: relative;
		z-index: 9;
	}
	.searchbox .search-buttons .btn-secondary {
		display: none;
	}
	.searchbox .primary-buttons {
		width: 100%;
	}
	.searchbox .primary-buttons .btn {
		width: 50%;
		padding-left: 10px;
		padding-right: 10px;
	}
	section.hero-boxes {
		margin-top: 40px;
		display: none;
	}
	.boxes-content {
		flex-direction: column;
	}
	.boxes-content .box-item {
		width: 100%;
		margin-bottom: 15px;
	}
	section.hero-boxes .boxes-content:before {
		height: calc(100% - 40px);
	}
	section.cats {
		margin: 64px 0 0;
		padding-bottom: 0;
	}
	.cats-slide:first-child {
		margin-left: 30px;
	}
	.cats-slide:last-child {
		margin-right: 30px;
	}

	.m-flex-column {
		flex-direction: column;
	}
	.m-flex-column-reverse {
		flex-direction: column-reverse;
	}
	section.look-us {
		margin: 35px 0;
		margin-bottom: 0;
		padding: 42px 0;
		overflow: hidden;
	}
	section.look-us img {
		width: 120vw;
		max-width: inherit;
		margin: 0 -100px 40px 0;
	}
	section.look-us .col {
		max-width: 100%;
	}
	.counter-item {
		align-items: flex-start;
	}
	.counter-text {
		width: 100%;
	}
	section.comments .container {
		padding: 0;
	}
	.comment-info {
		padding: 0 30px;
	}
	.comment-list {
		margin-top: 50px;
		height: auto;
	}

	.comments-swiper {
		padding-right: 0;
		max-width: 100%;
	}
	.comments-swiper>.swiper-wrapper {
		flex-direction: row;
		align-items: flex-end;
	}
	section.comments {
		margin-top: 42px;
		margin-bottom: 0;
	}
	.doctor-items {
		width:100%;
		max-width: inherit;
	}
	.doctor-items .doctor-item figcaption {
		right: 0px;
		bottom: 0;
		position: relative;
	}
	.doctor-item figure img {
		height: auto;
		border-bottom-left-radius:0;
		border-bottom-right-radius: 0;
	}
	.doctor-items .doctor-item h3, .doctor-items .doctor-item figcaption span {
		border-top-left-radius:0;
		border-top-right-radius: 0;
	}
	section.doctor-list .doctor-slide:first-child {
		margin-left: 20px;
	}
	section.doctor-list .doctor-slide:last-child {
		margin-right: 20px;
	}
	.blogs .blog-list-items {
		width: calc(100% - 1px);
	}
	.blogs .blog-list-items .swiper .swiper-slide{
		margin-bottom: 0 !important;
		width: 300px;
	}
	.blog-post-item{
		flex-direction: column;
	}
	.blog-post-item .post-content-wrapper{
		margin-top: 0;
		border-radius: 0;
	}
	.blog-post-item img {
		width: auto;
		height: auto;
		object-fit: cover;
		border-radius: 20px;
		border-radius: 0;
	}
	section.blogs {
		margin-bottom: 50px;
		margin-top: 0;
	}
	section.sss {
		margin: 40px 0;
	}
	section.brands {
		margin: 40px 0;
	}
	.doctor-items .doctor-item {
		padding: 0 10px 10px;
		width: 300px;
	}
	.footer-wrapper {
		flex-wrap: wrap;
		justify-content:space-between;
		padding-bottom: 40px;
	}
	.site-footer h3 {
		font-size: 18px;
		font-weight: 600;
		margin-bottom: 0;
	}
	.list-header, .uzman-detail .uzman-header {
		padding: 40px 0;
		min-height: auto;
	}
	.list-header:before, .uzman-detail .uzman-header:before {
		border-radius: 0 0 20px 20px;
	}
	.uzman-register .list-header {
		padding: 80px 0 130px;
	}
	.tabs address > div.flex {
		gap: 10px !important; 
	}
	.tabs address .flex-end{
		margin-left: 0;
	}
	main.uzman-list, main.uzman-detail {
		padding-top: 0;
	}
	.search-wrapper .search-box {
		height: auto;
	}
	.search-box .btn-primary {
		bottom: 10px;
	}
	.search-wrapper .search-box > .flex {
		flex-wrap: wrap;
	}
	.search-box .uzman-input {
		text-indent: 5px;
	}
	.search-box .select2-container {
		width: 100%!important;
		margin-bottom: 10px;
	}
	.search-wrapper {
		margin-top: 20px;
	}
	
	.mobile-filter-btn {
		position: relative;
		background: #dee6f2;
		width: 100%;
		margin-bottom: 30px;
	}
	.mobile-filter-btn {
		display: block;
		margin-bottom: 0;
	}
	.filter-hide {
		display: block;
	}
	.uzman-header-top {
		padding: 0;
	}
	.uzman-header-bottom {
		bottom: 0;
		position: relative;
		margin-top: 0;
		height: auto;
		margin-bottom: -32px;
	}
	.uzman-header-bottom-inner {
		width: 100%;
	}
	.uzman-thumbnail{
		margin-right: 0;
	}
	.uzman-butons {
		width: 100%;
	}
	.uzman-butons .btn {
		text-align: center;
	}
	.uzman-detail .uzman-header {
		margin-bottom: 50px;
		padding-bottom: 0;
	}
	.uzman-egitims .egitim-inner .col {
		margin-bottom: 15px;
	}
	.uzman-gallery {
		width: 100%;
		margin-right: 0;
	}
	.tabs address {
		margin-top: 15px;
	}
	.sigorta-wrapper .col {
		flex: 0 0 50%;
		width: 50%;
	}
	.events-hero .hero-img {
		display: none;
	}
	.events-hero .hero-boxes {
		width: 100%;
	}
	.events-hero {
		padding: 60px 0;
		height: auto;
		margin-bottom: 40px;
	}
	.events-hero:before {
		border-radius: 0 0 40px 40px;
	}
	.events-hero .btn-boxes a:not(.btn) img {
		width: 40px;
	}
	.post-with-image .col {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.post-with-image .title-box {
		width: 100%;
		max-width: 100%;
	}
	.post-with-image .img-wrapper img {
		border-radius: 20px;
		margin-bottom: 30px;
	}
	.title-box {
		margin-bottom: 20px;
	}
	.bilgi-banner-wrap {
		height: auto;
	}
	.bilgi-banner-wrap .bilgi-banner-inner {
		width: 100%;
		padding-right: 0;
		padding: 15px 30px;
	}
	.bilgi-banner-inner h3 {
		font-size: 24px;
		margin-bottom: 15px;
	}
	.bilgi-banner-inner p{
		margin-bottom: 20px;
	}
	.bilgi-banner-wrap .attachment-full {
		position: relative;
	}
	section.uzman-hero {
		border-radius: 0 0 40px 40px;
		padding: 0 0 30px;
	}
	.uzman-hero .btn-boxes a:not(.btn) img {
		width: 40px;
	}
	section.gorsel-box .flex:not(.kutu-item) > .attachment-full {
		width: 100%;
		margin: 0;
		border-radius: 20px;
	}
	.baslik-aciklama h3 {
		font-size: 24px;
	}
	.kutucuklar .col {
		flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		width: 100%;
	}
	.kutucuklar .kutu-item {
		margin-bottom: 15px;
		border: 1px solid var(--Colors-Primary-200);
	}
	.sss-wrapper {
		margin-left: 0;
	}
	section.uzman-hero > .container {
		display: flex;
		flex-direction: column-reverse;
	}
	section.uzman-hero {
		display: flex;
		flex-direction: column;
	}
	section.uzman-hero .hero-img2 {
		width: 85%;
		margin-top: 30px;
	}
	.kurumsal-kutucuk .col {
		flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		width: 100%;
		margin-bottom: 15px;
	}
	.page-kurumsal .look-us .col:nth-child(1), .page-kurumsal .look-us .col:nth-child(2) {
		flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		width: 100%;
	}
	.page-kurumsal .look-us .attachment-full {
		border-radius: 20px;
		margin-left: 0;
		width: 100%;
		margin: 0 0 30px;
	}
	.contact-boxs {
		flex-wrap: wrap;
	}
	.contact-box-item {
		width: calc(50% - 10px);
	}
	.contact-last-boxes {
		flex-wrap: wrap;
	}
	a.last-box-item {
		flex-direction: column;
		width: 100%;
		margin-bottom: 15px;
	}
	a.last-box-item svg {
		margin-right: 0;
		max-width: 66px;
		margin-bottom: 20px;
	}
	.mobile-searchbox:before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: #000;
		opacity: .6;
	}
	

	
	.mobile-social {
		display: block !important;
	}

	.mobile-menu {
		display: block !important;
	}

	.mobile-menu a {
		font-size: 12px !important;
		font-weight: 400 !important;
		margin-bottom: 0 !important;
	}

	.site-header .nav a {
		font-size: 16px;
	}


	.mobile-social h4 {
		font-size: 12px;
		font-weight: 400;
		margin-bottom: 0 !important;
	}

	.mobile-menu ul {
		margin-top: 15px !important;
	}

	.mobile-social .social-box a {
		margin: 0;
	}

	.mobile-social .social-box {
		justify-content: flex-start;
		column-gap: 10px;
		margin-top: 20px;
	}

	a.close-collapse {
		right: 20px !important;
		left: initial !important;
	}
	.comments-swiper .swiper-button-prev,.comments-swiper .swiper-button-next {
		background: #5fbff8;
		bottom: 0 !important;
		color: #fff;
		border-radius: 10px;
	}

	.comments-swiper .swiper-button-prev {
		left: -10px;
	}

	.comments-swiper .swiper-button-next {
		right: -14px;
	}

	.comments-swiper .swiper-slide-next .comment-item {
		min-height: inherit;
	}

	.comment-list {
		padding-left: 30px;
		padding-right: 30px;
		margin-left: 0;
		margin-right: 0;
	}

	.comments-swiper {
		overflow: inherit;
	}
	section.comments {
		overflow: hidden;
	}
	.services-list .container {
		padding: 0;
	}
	.services-swiper .swiper-pagination{
		bottom: 0;
	}
	.services-swiper .service-slide {
		width: 215px;
		margin-left: 24px;
		padding-bottom: 30px;
	}

	.service-item figcaption p {
		display: none;
	}
	.popup-buttons .btn {
		font-size: 13px;
	}

	.popup h3 {
		font-size: 16px;
	}

	.popup p {
		font-size: 12px;
	}

	.steps>div {
		flex-direction: column;
	}

	.steps .col {
		flex: 0 0 100%;
		width: 100%;
	}

	.popup .popup-inner {
		width: calc(100% - 30px);
		max-height: 100vh;
		overflow: auto;
	}

	.cizelge-header .col {
		flex: 0 0 31%;
		width: 31%;
	}


	.cizelge-nav {
		z-index: 11;
	}
	.cizelge-header .col,
	.cizelge-body .col{
		flex: 0 0 31%;
		width: 31%;
	}
	.cizelge-order-item {
		font-size: 10px;
	}
	.uzman-header .uzman-header-top>div {
		display: block !important;
	}
	.uzman-header .uzman-header-top{
		align-items: end;
		margin-bottom: 64px;
	}

	.uzman-thumbnail img {
		height: 100%;
		object-fit: cover;
	}

	.uzman-header .uzman-summary h1 {
		margin-top: 20px;
		font-size: 20px;
		margin-bottom: 3px!important;
	}
	.uzman-detail .uzman-header .cat-name {
		font-size: 14px;
	}

	.uzman-header .danisan-number {
		font-size: 12px;
		font-weight: 500;
	}

	body:not(.single-hizmet) .uzman-header .uzman-body {
		display: none;
	}

	.uzman-header .uzman-body-mobile {
		display: flex !important;
		margin-top:32px !important;
	}

}
.uzman-header .uzman-body-mobile{
	display:none;
}

.mobile-bars .mobile-bar-item svg {
	width: 30px;
	height: 30px;
}

.mobile-bars {
	position: fixed;
	width: calc(100% - 20px);
	bottom: 15px;
	left: 10px;
	z-index: 999;
	display: none;
	justify-content: space-around;
	background: #7DBAB0;
	padding: 10px 20px;
	border-radius: 50px;
	transition: all .3s ease-in-out;
}

.mobile-bars .mobile-bar-item svg path {
	fill: #fff;
}
.mobile-bars > a {
	position: relative;
	display: flex;
	align-items: center;
}

.mobile-bars > a:last-child:after {
	opacity: 0;
}
.mobile-searchbox {
	position: fixed;
	bottom: -50%;
	left: 0;
	width: 100%;
	z-index: 99;
	padding: 10px;
	background: #fff;
	transition: all .3s linear;
	opacity: 0;
	visibility: hidden;
}
.mobile-bars > a {
	flex-direction: column;
}

.mobile-bars > a span {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	padding-top: 5px;
}

.mobile-bars .mobile-bar-item svg {
	width: 25px;
	height: 25px;
}
.mobile-searchbox.active {
	display: block;
	opacity: 1;
	visibility: visible;
	bottom: 90px;
}
.mobile-bars > a span {font-size: 10px;}

.mobile-bars {
	justify-content: space-between;
	border-radius: 10px;
}
.site-nav .burger-button {
	position: relative;
}
.kategori-hashtags {
	list-style: none;
	padding: 0;
	display: flex;
	column-gap: 13px;
	flex-wrap: wrap;
}

.kategori-hashtags a {
	color: var(--Colors-Primary-700);
	font-weight: 700;
	font-size: 15px;
	transition: all .3s linear;
	white-space: nowrap;
}

.kategori-hashtags a:hover {
	color: #ffa722;
	text-decoration: underline;
	font-size: 16px;
}
.woocommerce-MyAccount-content .acf-fields > .acf-tab-wrap, .account-tabs .buttons, .randevu-box .randevu-buttons {
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 30px;
	background: #fff;
}

.woocommerce-MyAccount-content .acf-fields > .acf-field {
	margin-left: auto;
	background: #fff;
	border-radius: 10px;
	margin-bottom: 30px;
	overflow: auto;
	padding: 32px;
}

.woocommerce-MyAccount-content .acf-fields > .acf-tab-wrap ul, .account-tabs .buttons, .randevu-box .randevu-buttons {
	display: flex;
	padding: 20px;
}

.woocommerce-MyAccount-content .acf-tab-group li a, .account-tabs .buttons .tab-button, .randevu-box .randevu-button {
	padding: 10px 10px !important;
	margin-bottom: 0 !important;
	border: none;
	border-radius: 10px;
	font-weight: 600;
}
.woocommerce-MyAccount-content .acf-tab-group li.active a, .account-tabs .buttons .tab-button.active, .randevu-box .randevu-button.active {
	background: #7DBAB0;
	color: #fff;
}

.woocommerce-MyAccount-content .acf-tab-group li a:before, .account-tabs .buttons .tab-button:before, .randevu-box .randevu-button:before {
	content: '-';
	margin-right: 5px;
}
.account-tabs .buttons {
	flex-wrap: wrap;
}
.account-tabs .tabs {
	padding: 20px;
	background: #fff;
	border-radius: 15px;
}
.account-tabs .tabs .tab-content {
	background: transparent;
	overflow: hidden;
}
.woocommerce-MyAccount-content .acf-fields { margin: 0; }
.woocommerce-MyAccount-content .acf-editor-wrap iframe { width: 100%; border: 0; }
.woocommerce-MyAccount-content .wp-media-buttons .insert-media { display: inline-flex; }

.woocommerce-MyAccount-content .woocommerce-account #acf-form {
	background: transparent;
}

.woocommerce-MyAccount-content .acf-form-submit {
	border-top: 1px solid #ccc;
	padding-top: 10px;
	text-align: right;
}

.woocommerce-MyAccount-content .acf-form-submit input {
	background: var(--Colors-Primary-700) !important;
	color: #fff !important;
	padding: 15px 25px !important;
}

.woocommerce-account #acf-form {
	background: transparent;
}
.woocommerce-MyAccount-content .acf-fields > .acf-tab-wrap.sticky {
	width: 20%;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	margin-bottom:-255px;
}
.site-header.nosticky{
	position: absolute !important;
}

.meeting-box {
	position: relative;	
}
.meeting-box iframe {
	height: calc(100vh - 90px);
}
.end-meeting {
	background: #e6e6e6;
    border: #e6e6e6;
    color: #000;
}
.account-tabs .buttons .tab-button {
    margin-bottom: 0;
}
.account-tabs {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
.download-box {
    position: relative;
    left: 0;
    top: 0;
    box-shadow: 0px 1px 11px #e6e6e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    font-size: 13px;
    padding: 12px 30px;
    background: #fff;
}
a.download-app {
    display: flex;
    align-items: center;
    height: 50px;
    background: #fba723;
    border-radius: 10px;
    color: #fff;
    gap: 15px;
    padding: 0 15px;
}
input[type="date"].input-text::-webkit-inner-spin-button,
input[type="date"].input-text::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
.list-header .swiper-box .swiper-button-next:after{
	content: '';
    position: absolute;
    right: 5px;
    top: 10px;
    width: 31px;
    height: 31px;
    background: url(assets/icons/angle-left.svg) center no-repeat;
	transform: rotate(180deg);
}
.account-meeting .randevu-box{
	top: 60px;
}
.account-meeting .show-randevu-btn.active{
	color: #FFFFFF;
}
.account-meeting .show-randevu-btn.active svg{
	filter: invert(1);
}
button.actual-user {
    text-align: end;
	font-weight: 400;
	color: #547d76;
}
.comment-form fieldset.comments-rating {
    border: none;
}
.comment-form .rating-checkbox label {
	font-weight: 400;
}
.comment-form  #comment {
    width: 100%;
    height: 150px;
}
.comment-form .comment-checks {
    width: 100%;
    text-align: left;
}
.comment-form .comment-checks-icon {
    justify-content: flex-start;
}
@media (max-width: 992px) {
	.account-meeting .randevu-box{
		top: 80px;
		left: 0;
	}
	
}
@media (min-width: 992px) {
	.download-box {
		display: none;
	}
	
}
@media(max-width:768px){
	.randevu-popup-inner{
		width: 100%;
	}
	.mobile-bars{
		display:flex;
	}
	section.uzman-hero .hero-img {
		position: relative;
		top: auto;
		right: auto;
		width: 300px;
		height: 260px;
		margin-top: 30px;
		background-position: center;
		background-size: contain;
		bottom: inherit;
	}

	.uzman-hero h2 {
		max-width: 100%;
	}
	.page-giris-yap .list-header {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.header-title {
		width: 100%;
		font-size: 36px;
	}

	.register-form input:not([type=checkbox]) {
		font-size: 13px!important;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		row-gap: 10px;
		width: 100%;
	}

	.randevu-box .randevu-item {
		flex-direction: column;
		align-items: center;
	}

	.randevu-item span {
		text-align: center !important;
		margin-bottom: 7px;
	}

	.woocommerce-account h3 {
		font-size: 30px;
	}
	body:is(.woocommerce-account, .woocommerce-checkout) section.page-content > .container > h3 {
		margin-top: 0;
	}
	.uzman-more>div {
		flex-direction: column;
	}

	.uzman-etkinlik-wrapper {
		margin-left: 0;
		width: 100%;
		min-width: 100%;
		margin-top: 30px;
	}

	.filter-event-wrapper {
		padding: 20px;
		column-gap: 10px;
		flex-direction: column;
		padding-left: 0;
		padding-right: 0;
	}

	.filter-event-wrapper .filter-box {
		width: 100%;
		display: flex;
		flex-direction: column;
		margin: 0;
	}

	.filter-event-wrapper .select2 {
		width: 100% !important;
		margin: 10px 0 !important;
	}

	.events-wrapper .col {
		flex: 0 0 100%;
		max-width: 100%;
	}

	section.next-events{
		overflow:hidden;
	}
	.contact-box-item {padding: 20px;}

	.contact-box-item span {
		font-size: 18px;
		max-width: 80%;
		display: block;
	}

	.contact-box-item p {
		font-size: 13px;
	}

	.contact-box-item:before {
		top: 40px;
	}

	.footer-menu-box-field .nav {
        display: none; 
    }

	.contact-body {
		margin: 50px 0;
	}
	.woocommerce-MyAccount-content .acf-fields > .acf-field {
		float: none;
		min-width: 100%;
	}
}
@media(max-width:992px){
	.account-bg-container{
		padding: 0;
	}
	.account-bg-container .container{
		padding: 0 !important;
	}
	.account-bg-container .container .comment-reply-form{
		padding: 0;
	}
	.account-bg-container .container .comment-reply-form .comment-rating-item{
		gap: 5px;
	}
	.account-bg-container .container .comment-reply-form .rating-checkbox{
		gap:8px;
	}
	.account-bg-container .container .comment-reply-form .rating-checkbox input{
		margin: 0;
	}
	.account-bg-container .container .comment-reply-form .rating-checkbox label{
		font-weight: 400;
		line-height: 1.3;
		margin: 0;
		font-size: 14px;
	}
	.comment-reply-form textarea{
		border: 1px solid #7DBAB0;
		border-radius: 8px;
	}
	.account-bg-container .container p:last-child{
		margin-bottom: 16px;
	}
	body.page-hesabim{
		padding-bottom: 35px;
	}
	.appointment-content form{
		padding-bottom: 120px;
	}
	.cizelge-box{
		height: auto !important;
		transform: translate(-50%, -50%) !important;
		left: 50% !important;
		top: 50% !important;
		width: 350px !important;
		min-width: auto !important;
	}
	.cizelge-box .cizelge-box-inner{
		border: 1px solid #547D76;
		border-radius: 8px;
		padding: 0;
		max-width: 350px !important;
	}
	.cizelge-box .cizelge-wrapper {
		padding: 0 10px;
		margin-top: 10px;
	}
	.cizelge-box .cizelge-header .col, .cizelge-body .col {
        flex: 0 0 25%;
        width: 25%;
    }
	.woocommerce-MyAccount-content .acf-fields > .acf-tab-wrap{
		position:static !important;
		min-width:100%;
		margin-bottom: 20px !important;
	}
	.woocommerce-account .woocommerce-MyAccount-content{
		overflow:hidden;
		margin-top: 30px;
	}
	.account-tabs .buttons {
		flex-direction: column;
	}
	.randevu-item-head {
		flex-wrap: wrap;
	}
	.randevu-box .btns {
		max-width: 100%;
		min-width: inherit;
		width: 100%;
		margin-top: 10px;
	}
	.randevu-box .btns .btn {
		width: 100%;
	}
	.randevu-box .btns span {
		font-size: 12px;
		text-align: left!important;
	}
	.randevu-box .randevu-buttons {
		flex-direction: column;
		text-align: center;
	}
	.collapse .header-buttons {
		display: none;
	}
	.uzman-thumbnail:before {
		background-size: 70px;
	}
	.cevrimici {
		top: -61px;
	}
	.cevrimici:before {
		width: 10px;
		height: 10px;
	}
	.swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}
	.title-box h3 {
		font-size: 26px;
		letter-spacing: normal;
	}
	section.services-list .title-box .container {
		padding: 0 40px;
	}
	.services-swiper .service-slide:last-child {
		margin-right: 30px;
	}
	.service-slide figure img {
		height: 48px;
	}
	.service-slide figure {
		padding: 20px;
	}
	.btn {
		font-size: 14px;
	}
	section.services-list{
		margin-bottom: 0;
	}
	.services-swiper {
		padding: 0;
	}
	section.event-list .event-slide:first-child {
		margin-left: 30px;
	}
	section.event-list .event-slide:last-child {
		margin-right: 30px;
	}
	.counter-number {
		font-size: 24px;
		font-weight:500;
	}
	section.featured-doctors .counter-item .counter-text2{
		font-size: 10px;
	}
	.look-us .counter-item {
		margin-bottom: 10px;
	}
	section.comments .btn {
		display: block;
		text-align: center;
	}
	.blog-cats .cat-item h3 {
		font-size: 16px;
	}
	.blog-cats .cat-item figcaption svg {
		width: 14px;
		height: auto;
	}
    .blog-cats .cat-item figcaption {
        bottom: 0;
        border-radius: 0 0 10px 10px;
    }
	.post-content-wrapper h3 {
		font-size: 20px;
		font-weight: 500;
		color: #262626;
		line-height: 1.5;
		margin-bottom: 0;
	}
	.sss-wrapper h3{
		font-size: 22px;
		margin-top: 0;
		margin-bottom: 20px;
	}
	.brands-swiper .swiper-slide img {
		max-width: 100px;
	}
	.site-header {
		position: relative;
		z-index: 1005;
	}
	.uzman-header .mini-description {
		margin-bottom: 30px;
		width: 100%;
		text-align: center;
	}
	.single-hizmet .uzman-header .uzman-header-top {
		margin-bottom: 30px;
	}
	.single-hizmet main.uzman-detail .uzman-header .stars {
		margin-left:140px;
	}
}

.checkout-login-message {
    margin-top: 30px;
    margin-bottom: 30px;
    line-height: 1.5;
    border: 1px solid #e1e1e1;
    padding: 25px 30px;
    border-radius: 10px;
}
.checkout-billing {
    border: 1px solid #e1e1e1;
    padding: 25px 30px;
    border-radius: 10px;
	margin-bottom: 20px;
}
.checkout-billing{
    display:block;
}
.popup-box {
    max-height: 78vh;
    overflow: auto;
}
.woocommerce-form-login-toggle {
	display: none;
}
.woocommerce-billing-fields h3 {
	margin-top: 0;
}
.notice {
    position: fixed;
    left: 30px;
    top: 30px;
    z-index: 1005;
    background: #e8e8e8;
    padding: 20px 30px;
    max-width: 600px;
    text-align: center;
    line-height: 1.7;
    border-radius: 20px;
    border-top: 5px solid var(--Colors-Primary-200);
    opacity: 1;
    animation: fadeOut 0.5s forwards 10s;
	pointer-events: none;
}
.notice-error {
    border-color: red;
}
.tel-dogrula {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: var(--Colors-Primary-200);
    color: #fff;
    padding: 7px 15px;
    border-radius: 5px;
    cursor: pointer;
    letter-spacing: 1px;
	z-index: 9;
}
.popup-title2 {
    text-align: center;
    font-size: 20px;
    color: #000;
}
.verify-input {
    width: 100%;
    margin-top: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 50px;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
	appearance: textfield;
  -moz-appearance: textfield;
}

.popup .popup-note {
    text-align: center;
    font-size: 12px;
    max-width: 370px;
    margin: 20px auto 0;
}
p#popup-error {
    text-align: center;
    margin-top: 20px;
    color: red;
}
p#popup-error.popup-success {
	color: green;
}
.tel-dogrula.success {
    background: #1eb707;
}
.iti {
	z-index: 9;
}
form.uzmanlik-type {
    background: #fff2f2;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 16px;
}
form.uzmanlik-type > p {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    width: 600px;
    margin: 0 auto 30px;
    color: red;
}
.form-table {
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
	border-spacing: 0;
}
.form-table th, .form-table td {
    padding: 10px 0;
}
.form-table tr:not(:last-child) th, .form-table tr:not(:last-child) td {
    border-bottom: 1px solid #ccc;
}
.form-table select {
    width: 100%;
	max-width: 100%;
    height: 40px;
    padding: 10px;
    border: none;
    outline: 0;
}
.form-table input {
    width: 100%;
	max-width: 100%;
    height: 40px;
    border: none;
    margin-bottom: 10px;
	padding: 10px;
}
.soru-wrapper {
    position: fixed;
    bottom: 0;
    right: 100px;
    width: 400px;
    max-width: 90%;
	z-index: 99;
}
.soru-wrapper:not(.active) {
	width: 300px;
}
.soru-wrapper-inner {
    background: #fff;
    padding: 20px;
	padding-top: 0;
    border: 1px solid var(--Colors-Primary-200);
	border-top: none;
	border-bottom: none;
    max-height: calc(100vh - 130px);
    overflow: auto;
}
.soru-wrapper:not(.active) .soru-wrapper-inner {
	display: none;
}
.soru-sor-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    font-weight: bold;
}
.soru-wrapper [data-name="uzman-mail"] {
	display: none;
}
.file-box {
    background: #f5f5f5;
    font-size: 14px;
    font-weight: bold;
    padding: 1px 15px 0;
    border-radius: 10px;
}
.file-box input {
	padding: 0;
	border-radius: 0;
}
.erapor-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.erapor-content a {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 10px;
    color: #000;
    font-size: 14px;
}
.erapor-content a img {
    width: 30px;
}
.enabiz-onizleme table {
    width: 100%;
    border-spacing: 0;
}
.enabiz-onizleme .field {
	display: flex;
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
    margin: 10px 0;
	flex-wrap: wrap;
}
.enabiz-onizleme .package-name {
    text-align: center;
    font-weight: bold;
    background: #ccc;
    padding: 10px 0;
	margin: 10px 0;
}
.enabiz-onizleme .field > div {
    width: 50%;
    padding: 15px 0;
}
.enabiz-onizleme .field .field-name {
    font-weight: bold;
}
.enabiz-onizleme .field-wide > div {
    width: 100%;
}
.recete-kayit-div, .rapor-kayit-div {
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.recete-kayit-div .recete-item, .rapor-kayit-div .rapor-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 11px 15px;
    background: #ffc8c8;
}
.recete-content {
    background: #e5e5e5;
    padding: 15px;
    border-bottom: 1px solid #cccc;
}
.recete-content h3 {
    margin: 0;
    font-size: 18px !important;
    padding: 20px 15px;
    margin-bottom: 20px;
    background: #ccc;
}
.recete-content h3.flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.enabiz-filtre-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    background: #ff4848;
    padding: 10px 15px;
    margin: -10px 0;
    border-radius: 5px;
}
.enabiz-filtre-btn:before {
	content: url('data:image/svg+xml,<svg width="17" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M3 4.6C3 4.03995 3 3.75992 3.10899 3.54601C3.20487 3.35785 3.35785 3.20487 3.54601 3.10899C3.75992 3 4.03995 3 4.6 3H19.4C19.9601 3 20.2401 3 20.454 3.10899C20.6422 3.20487 20.7951 3.35785 20.891 3.54601C21 3.75992 21 4.03995 21 4.6V6.33726C21 6.58185 21 6.70414 20.9724 6.81923C20.9479 6.92127 20.9075 7.01881 20.8526 7.10828C20.7908 7.2092 20.7043 7.29568 20.5314 7.46863L14.4686 13.5314C14.2957 13.7043 14.2092 13.7908 14.1474 13.8917C14.0925 13.9812 14.0521 14.0787 14.0276 14.1808C14 14.2959 14 14.4182 14 14.6627V17L10 21V14.6627C10 14.4182 10 14.2959 9.97237 14.1808C9.94787 14.0787 9.90747 13.9812 9.85264 13.8917C9.7908 13.7908 9.70432 13.7043 9.53137 13.5314L3.46863 7.46863C3.29568 7.29568 3.2092 7.2092 3.14736 7.10828C3.09253 7.01881 3.05213 6.92127 3.02763 6.81923C3 6.70414 3 6.58185 3 6.33726V4.6Z" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></g></svg>');
}
.enabiz-islem-form:not(.active) {
	display: none;
}
.recete-content .input-row {
	gap: 15px;
}
.recete-content .input-row.manuel-gap {
    gap: 0;
}
.recete-content .input-row.manuel-gap .enabiz-islem-item {
    margin: 8px 0;
}
.recete-content .recete-ekle-content {
    padding: 15px;
    background: #d6d6d6;
}
#ilac-listesi .ilac-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    gap: 30px;
	margin: 15px 0;
}
#ilac-listesi .ilac-item span:first-child {
    width: 37%;
}
.form-tabs-header {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}
.form-tabs-header button {
    padding: 10px 20px;
    border: none;
    background: #e3e3e3;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing:1px;
}
.form-tabs-header button.active {
	background: var(--Colors-Primary-200);
}
.form-tab-content {
	margin: 30px 0;
}
.form-tab-content:not(.active) {
	display: none;
}
.recete-content .tani-wrapper {
	margin-bottom: 15px;
}
.recete-content .tani-wrapper:is(.default-tani) .remove-tani {
	display: none;
}
.recete-content .tani-wrapper:not(.default-tani) .add-tani {
	display: none;
}
.recete-content .tani-wrapper:not(.default-tani) input, .recete-content .tani-wrapper:not(.default-tani) select {
    background: #d6d6d6;
    border: 1px solid #ccc;
    pointer-events: none;
}
.recete-content .input-wrap {
    width: calc(33.333% - 15px);
}
.recete-content .input-wrap .select2 {
	width: 100%!important;
}
.recete-content .input-wrap .iti {
	width: 100%;
}
.recete-content .input-wrap label i {
	font-weight: 400;
	font-size: 14px;
}
.recete-content .input-wrap input:not([type="checkbox"]), .recete-content .input-wrap select,
.recete-content .input-wrap textarea {
    width: 100%;
    height: 40px;
    border: none;
    padding: 10px;
	border: 1px solid #fafafa;
	background: #fff;
}
.recete-content .select2-container--default .select2-selection--single {
	border-radius: 0!important;
	height: 40px!important;
}
.recete-content .select2-container--default .select2-selection__arrow {
	top: 3px!important;
}
.recete-content .select2-container--default .select2-selection__rendered {
	line-height: 40px!important;
}
.recete-content #getTaniInput {
    width: 100%;
    height: 40px;
    border: none;
    padding: 0 10px;
}
.tani-sec-tanilar {
    position: absolute;
    font-size: 14px;
    max-height: 300px;
    overflow: auto;
    margin-bottom: 20px;
	z-index: 9;
}
.append-tanilar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    padding: 10px;
}
.append-tanilar a {
	color: #000;
}
.tanilar {
    background: #ccc;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}
.tanilar span {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tanilar .tani-remove {
    font-family: 'Work Sans';
    font-weight: 400;
	color: red;
}
ul.form-errors {
    color: red;
}
.enabiz-islem-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
	font-size: 10px;
}
.enabiz-islem-item span:nth-child(2) {
    width: 13%;
}
.enabiz-islem-item span:first-child {
    width: 20%;
}
.enabiz-islem-item span {
    width: 17%;
	padding: 0 5px;
}
.islem-detail-btn:before {
	content: url('data:image/svg+xml,<svg width="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M13 8C13 7.44772 12.5523 7 12 7C11.4477 7 11 7.44772 11 8C11 8.55228 11.4477 9 12 9C12.5523 9 13 8.55228 13 8Z" fill="%23858585"></path><path d="M12 17.75C12.4142 17.75 12.75 17.4142 12.75 17V11C12.75 10.5858 12.4142 10.25 12 10.25C11.5858 10.25 11.25 10.5858 11.25 11V17C11.25 17.4142 11.5858 17.75 12 17.75Z" fill="%23858585"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M12.0574 1.25H11.9426C9.63424 1.24999 7.82519 1.24998 6.41371 1.43975C4.96897 1.63399 3.82895 2.03933 2.93414 2.93414C2.03933 3.82895 1.63399 4.96897 1.43975 6.41371C1.24998 7.82519 1.24999 9.63422 1.25 11.9426V12.0574C1.24999 14.3658 1.24998 16.1748 1.43975 17.5863C1.63399 19.031 2.03933 20.1711 2.93414 21.0659C3.82895 21.9607 4.96897 22.366 6.41371 22.5603C7.82519 22.75 9.63423 22.75 11.9426 22.75H12.0574C14.3658 22.75 16.1748 22.75 17.5863 22.5603C19.031 22.366 20.1711 21.9607 21.0659 21.0659C21.9607 20.1711 22.366 19.031 22.5603 17.5863C22.75 16.1748 22.75 14.3658 22.75 12.0574V11.9426C22.75 9.63423 22.75 7.82519 22.5603 6.41371C22.366 4.96897 21.9607 3.82895 21.0659 2.93414C20.1711 2.03933 19.031 1.63399 17.5863 1.43975C16.1748 1.24998 14.3658 1.24999 12.0574 1.25ZM3.9948 3.9948C4.56445 3.42514 5.33517 3.09825 6.61358 2.92637C7.91356 2.75159 9.62177 2.75 12 2.75C14.3782 2.75 16.0864 2.75159 17.3864 2.92637C18.6648 3.09825 19.4355 3.42514 20.0052 3.9948C20.5749 4.56445 20.9018 5.33517 21.0736 6.61358C21.2484 7.91356 21.25 9.62177 21.25 12C21.25 14.3782 21.2484 16.0864 21.0736 17.3864C20.9018 18.6648 20.5749 19.4355 20.0052 20.0052C19.4355 20.5749 18.6648 20.9018 17.3864 21.0736C16.0864 21.2484 14.3782 21.25 12 21.25C9.62177 21.25 7.91356 21.2484 6.61358 21.0736C5.33517 20.9018 4.56445 20.5749 3.9948 20.0052C3.42514 19.4355 3.09825 18.6648 2.92637 17.3864C2.75159 16.0864 2.75 14.3782 2.75 12C2.75 9.62177 2.75159 7.91356 2.92637 6.61358C3.09825 5.33517 3.42514 4.56445 3.9948 3.9948Z" fill="%23858585"></path></g></svg>');
}
.islem-detail-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 600px;
    max-width: 100%;
    max-height: 90vh;
    background: #fff;
    transform: translate(-50%, -50%);
    overflow: auto;
    z-index: 99;
    padding: 30px;
    border-radius: 30px;
}
.islem-detail-popup:not(.active) {
	display: none;
}
.islem-detail-popup table {
	width: 100%;
}
.islem-detail-close {
    position: absolute;
    right: 30px;
    top: 30px;
}
.islem-detail-popup table td {
	padding: 10px 0;
}
.captcha-content {
    width: calc(100% - 100px);
}
.page-template-template-politikalar .contact-body,
.cky-preference-content-wrapper {
    text-align: justify;
}
.page-template-template-politikalar .contact-body table,
.cky-preference-content-wrapper table{
    border: 1px solid #ccc;
    margin: 30px 0;
    width: 100%;
}
.page-template-template-politikalar .contact-body table td,
.cky-preference-content-wrapper table td {
    padding: 10px;
    border: 1px solid #cccc;
}
.show-password img {
    width: 20px;
}
.show-password {
    position: absolute;
    right: 20px;
    top: 50%;
    background: none;
    border: none;
    padding: 0;
    transform: translateY(-50%);
    cursor: pointer;
}
.politikalar-wrapper {
    display: flex;
    gap: 50px;
}

.politikalar-wrapper aside {
    width: 30%;
}
.politikalar-wrapper {
    display: flex;
    gap: 50px;
}

.politikalar-wrapper aside {
    width: 30%;
}

.politikalar-wrapper .politika-content {
    width: 90%;
    background: #f3f7fd;
    padding: 20px;
    border-radius: 10px;
}

aside ul {
    list-style: none;
    padding: 0;
    line-height: 1.5;
}

aside ul a {
    color: #000;
    font-weight: bold;
}

aside ul li {
    border-bottom: 1px solid #e3e3e3;
    padding: 10px 0;
    text-align: left;
}
.politikalar-wrapper .politika-content {
    width: 90%;
    background: #f3f7fd;
    padding: 20px;
    border-radius: 10px;
}
.show-randevu-btn {
    position: absolute;
    top: -64px;
    display: flex;
	justify-content: center;
    gap: 10px;
    z-index: 9999;
    background: #d5d5d5;
    color: #000;
    font-weight: bold;
}
.account-meeting .show-randevu-btn {
	top: 10px;
}
.adresses-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
	margin: 0 0 20px;
}
.adresses-wrap h3 {
	margin: 0;
	font-size: 28px;
}
.adresses-wrap .btn-full {
	width: auto;
	cursor: pointer;
	padding: 15px 20px;
}
.my-addresses {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.my-addresses .address-item {
    width: calc(33.3333% - 10px);
	cursor: inherit;
}
.address-item .address-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}
.address-item .address-btns button {
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    color: var(--Colors-Primary-700);
    cursor: pointer;
}
.edit-address-form h3, .edit-address-form:not(.active) {
    display: none;
}
.edit-address-form {
    margin-top: 50px;
}
.addresses {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    overflow: auto;
}
.page-content .address-item {
	width: 224px;
    max-width: 100%;
    padding: 16px;
    background: #FAFBFB;
	border: 1px solid #DFE2E6;
	border-radius: 8px;
	cursor: pointer;
}
.address-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0;
	line-height: 1.5;
	color: #7DBAB0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.address-name input {
	margin: 0;
}
.address-name input[type='radio']:after {
	width: 15px;
	height: 15px;
	border-radius: 15px;
	top: -2px;
	left: -1px;
	position: relative;
	background-color: #d1d3d1;
	content: '';
	display: inline-block;
	visibility: visible;
	border: 2px solid white;
}
.address-name input[type='radio']:checked:after {
	width: 15px;
	height: 15px;
	border-radius: 15px;
	top: -2px;
	left: -1px;
	position: relative;
	background-color: var(--Colors-Primary-700);
	content: '';
	display: inline-block;
	visibility: visible;
	border: 4px solid #D1F0EA;
}
.address-cotent{
	color: #8C8C8C;
	line-height: 1.5;
}
#payment .payment_methods {
    display: none;
}
.woocommerce-account .site-header :is(.nav, .header-buttons) {
    display: none;
}
.woocommerce-account .page-content > .container >h3 {
	margin-top: 0;
}
.btn-politika-filter {
	display: none;
}
.comment-checks {
    margin-left: auto;
    text-align: right;
}

.comment-checks-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
}
.order-again {
    display: none;
}
.footer-menu-header img{
	display: none;
}
@media (max-width: 992px) {
	.recete-content .input-wrap {
		width: 100%;
	}
	.accordion-content{
		padding-bottom: 10px;
	}
	.soru-wrapper {
		right: 0;
		left: auto;
		bottom: 76px;
	}
	.soru-wrapper .wpcf7 textarea {
		height: 110px;
	}
	.show-randevu-box {
		background: #f3f7fd;
		padding-bottom: 15px;
	}
	.show-randevu-btn {
		position: relative;
		top: 0;
		z-index: inherit;
	}
	.page-template-template-meeting .burger-button {
		display: none;
	}
	.message-wrapper .message-history {
		height: calc(85% - 240px);
		padding: 10px;
		gap: 20px;
	}
	.message-wrapper .message-form {
		height: 200px;
	}
	.message-wrapper .message-form {
		flex-direction: column;
	}
    .btn-politika-filter:not(.page-saglik-profesyoneli-platform-kullanim-sozlesmesi-2 .btn-politika-filter) {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 15px;
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase;
    }
	#menu-politikalar:not(.active, .page-saglik-profesyoneli-platform-kullanim-sozlesmesi-2 #menu-politikalar) {
		display: none;
	}

	.page-saglik-profesyoneli-platform-kullanim-sozlesmesi-2 .politika-content{
		display: none;
	}

	.politikalar-wrapper {
		flex-direction: column;
		gap: 20px;
	}
	.politikalar-wrapper aside {
		width: 100%;
	}
	.hero .hero-content {
		margin: 0 auto;
	}
	.newsletter-box {
		align-items:end;
		margin-top: 0;
		width: 30%;
	}
	.social-box a {
		margin-left: 0;
		margin-right: 8px;
	}
}
.message-wrapper .message-typer-btn.active{
	background-color: var(--Colors-Primary-700);
}
.message-wrapper .message-submit{
	background-color: var(--Colors-Primary-700);
}
a#nm_Message_btn{
	color:var(--Colors-Primary-700);
}
.message-wrapper .message-history-filter button{
	background-color: var(--Colors-Primary-700);
}
@media (max-width: 1210px) and (min-width: 992px){
	
	
	.site-nav .nav{
		font-size:12px;
	}
	
	.nav a{
		margin:0 8px;
	}
	
	.doctor-items .doctor-item h3, .doctor-items .doctor-item figcaption span{
		text-align:center;
	}
	section.kutucuklar .kutucuk-box .kutu-content{
		display: flex;
		flex-direction: column;
		justify-content: space-around;
	}
	
}
.page-id-13 .site-nav .burger-button{
	display:none;
}

@media (max-width:992px){
	.paket-box{
		flex-direction: column;
		width: auto;
		gap: 10px;
	}
	
	.site-footer{
		padding-top: 40px;
		padding-bottom: 80px;
	}


	
	.site-footer .copyright{
		text-align:center;
	}
	.politikalar-wrapper .politika-content{
		width:100%;
		padding:10px;
		overflow: auto;
	}
	.register-form .form-row-first, .register-form .form-row-last{
		float:inherit;
		width:100%;
	}
	.captcha-content input:not([type=checkbox]) {
		padding-left: 10px !important;
	}
	.captcha-content {
    	width: 100%;
	}
	form.wcpv-shortcode-registration-form .form-row-first, form.wcpv-shortcode-registration-form .form-row-last{
		width:100%;
	}
	form.wcpv-shortcode-registration-form .form-row-first{
		float:inherit;
	}
	.acf-fields > .acf-tab-wrap:first-child .acf-tab-group{
		overflow:auto;
		align-items:center;
	}
	.acf-tab-group li{
		min-width:160px;
	}
	/*
	.acf-table > thead > tr > th:not(:first-child) {
    	min-width: 160px;
	}*/
	.acf-gallery .acf-gallery-toolbar .acf-hl{
		display:flex;
		flex-direction:column;
		gap:20px;
	}
	.enabiz-islem-item {
		flex-wrap: wrap;
		padding-bottom: 10px;
		border-bottom: 1px solid #ccc;
	}
	.enabiz-islem-item span{
		width: 50% !important;
		margin:0 10px;
	}
	.recete-content h3 {
		font-size: 16px;
	}
	.message-wrapper .message-typer{
		width:100%;
		flex-direction:row;
	}
	.message-wrapper .message-settings{
		height: 50px;
    	width: 100%;
		padding: 0 10px;
	}
	.message-wrapper .message-typer-btn {
		padding: 0 10px;
	}
	#message-search {
		height: 48px;
	}
	.postbox .stats_range{
		display:flex;
		flex-direction:column;
	}
	.postbox .stats_range .export_csv{
		float:inherit;
		border:none;
	}
	.postbox .inside.chart-with-sidebar{
		display: flex;
		padding: 0 !important;
		flex-direction: column;
	}
	.postbox .inside.chart-with-sidebar .chart-sidebar{
		padding:0;
		width:100% !important;
		float:inherit !important;
		margin-left:0 !important;
	}
	.woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr{
		border-bottom:1px solid #212121;
	}
	.woocommerce table.shop_table_responsive tr:last-child, .woocommerce-page table.shop_table_responsive tr:last-child{
		border-bottom:none;
	}
	.woocommerce-MyAccount-content .acf-fields > .acf-field{
		padding:10px;
	}
	.button-group1 a{
		padding:5px;
		margin-right:8px;
		border: 1px solid transparent;
	}
	.form-tabs-header{
		overflow:auto;
		padding-bottom:10px;
		margin-top: 0;
	}
	form.uzmanlik-type > p{
		width: auto;
		margin-bottom: 20px;
	}
	form.uzmanlik-type tbody tr th:first-child{
		padding-right: 0;
	}
	form.uzmanlik-type tbody tr th label{
		width: fit-content;
		max-width: 100px;
	}
	form.uzmanlik-type tbody tr td select,
	form.uzmanlik-type tbody tr td input{
		width: auto !important;
	}
	form.uzmanlik-type tbody tr td p{
		width: auto;
	}
	.form-tabs-header button{
		min-width:150px;
	}
	.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
		width: 100%;
	}
	.adresses-wrap {
		flex-wrap: wrap;
	}
	.woocommerce-account .page-content h3 {
		font-size: 22px;
	}

	.randevu-box .randevu-button {
		margin: auto;
	}
	.search-input-box .select2{
		max-width: 81px;
	}
	.search-input-box.yuzyuze .search-input {
		padding-left: 90px;
	}
	.blog-cats .cat-item figure {
		margin-bottom: 15px;
	}
	.blog-cats .cat-item {
		-ms-flex: 0 0 calc(50% - 8px);
		flex: 0 0 calc(50% - 8px);
		max-width: calc(50% - 8px);
	}
	.blog-cats .cat-item figure img {
		border-radius: 10px;
		height: 200px;
		object-fit: cover;
	}
	.comment-checks {
	    text-align: left;
		width: 100%;
		margin-top: 16px;
		display: none;
	}
    .comment-checks-icon {
        justify-content: flex-start;
        display: block;
        font-size: 14px;
    }
    .comment-item .comment-body p {
        margin-top: 20px;
		margin-bottom: 0;
		margin-left: 0;
    }
    .randevu-item-tabs {
        flex-direction: column;
        gap: 10px;
    }
    .page-hesabim .comment-item:not(.child-comment-item) {
        box-shadow: none;
    }
    .popup-box table tr {
        display: table-row!important;
    }
    .woocommerce-account table.shop_table .popup-box table tr td {
        display: table-cell!important;
        text-align: left!important;
    }
    .popup-box table tr td:before {
        content: ""!important;
    }
    .message-wrapper .messager-content {
        height: 530px;
    }
    .message-wrapper .message-history {
        height: 380px;
    }
    .meeting-box iframe {
		height: 100vh;
    }
}
body.opened-menu .uzman-detail,
body.opened-menu section.doctor-list {
    width: calc(100% - 390px);
	max-width: 75%;
}
.tab-menu-randevu {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    z-index: 99;
}
body.sticky .tab-menu-randevu{
	top: 81.2px;
}

.tab-menu-randevu-inner {
    width: 100%;
    height: 100%;
    background-color: #F4FBFA;
    padding: 32px 16px;
	overflow: auto;
}
  .tab-header-randevu  {
	display: flex;
	justify-content: space-between;
	background-color: #7DBAB0;
	padding:5.5px 6px;
	border-radius: 8px;
	gap: 15px;
	margin-bottom: 24px;
  }
  .tab-header-randevu div {
	cursor: pointer;
	color: #E5F6F3;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.3;
	text-align: center;
	border-radius: 8px;
	width: 48%;
	padding: 3px;
  }
  .tab-header-randevu div.active {
	background-color: #547D76;
	font-weight: 500;
	color: #FFFFFF;
  }
  .tab-header-randevu div{
	display: flex;
	align-items: center;
	gap: 5px;
	justify-content: center;
  }
  .tab-header-randevu div img{
	width: 20px;
  }
  .tab-header-randevu div h3{
	margin: 0;
	font-size: 13px;
  }
  .tab-content-randevu {
	margin-top: 10px;
	display: none;
  }
  .tab-content-randevu.active {
	display: flex;
	flex-direction: column;
	gap: 24px;
  }
  .form-group-randevu label {
	display: block;
	font-weight: bold;
	color: #81BD74;
	margin-bottom: 3px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
  }
  .input-container-randevu {
	position: relative;
  }
  .input-container-randevu input{
	padding: 8px 12px;
	border: 1px solid #D9D9D9;
	border-radius: 8px;
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	cursor: pointer;
  }
  .input-container-randevu input.required {
    border-color: red;
	}
  .input-container-randevu .icon {
	cursor: pointer;
	position: absolute;
	top: 50%;
	right: 12.75px;
	transform: translateY(-50%);
  }
  .map-link {
	color: var(--Colors-Primary-700);
	cursor: pointer;
	text-decoration: underline;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
  }
  .form-group-randevu .title-banner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
  }
  .address-container-randevu{
	background-color: #FFFFFF;
	border-radius: 8px;
	border: 1px solid #D9D9D9;
	padding: 8px 12px 8px 30px;
	position: relative;
  }
  .address-container-randevu .map-icon{
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
  }
  .address-container-randevu a {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	max-width: 100%;
	color: #999;
  }
  .popup-options-randevu {
    display: none;
    position: fixed;
    background: #00000021;
    left: 0;
	top: 0;
	height: 100vh;
    width: 100%;
    justify-content: space-between;
    z-index: 99;
    align-items: center;
    justify-content: center;
}
.popup-options-scroll-wrapper {
	max-height: 100vh;
	overflow: auto;
}
.popup-options-scroll-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari ve Opera */
}
  .popup-options-randevu .option-box{
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-bottom: 30px;
	position: relative;
  }
  .popup-options-randevu.active {
	display: flex;
  }
  .popup-options-randevu .popup-option {
	padding: 16px;
	cursor: pointer;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #FFFFFF;
  }
  .popup-options-randevu .popup-option.offer{
	border:2px solid var(--Colors-Primary-200);
	background-color: #E5F6F3;
  }
  .popup-options-randevu .popup-option:hover {
	background: #f0f0f0;
  }
  .popup-options-randevu .popup-option.offer:hover{
	background-color: #E5F6F3;
  }
  .popup-options-randevu .popup-title{
	margin-bottom: 30px;
  }
  
  /* Back button styling */
  .btn-back {
	background: #f0f0f0;
	border: 1px solid #ddd;
	padding: 8px 16px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	margin-top: 10px;
	color: #666;
  }
  
  .btn-back:hover {
	background: #e0e0e0;
  }
  
  /* Randevu türü option specific styling */
  .randevu-turu-option .variation-count {
	font-size: 14px;
	color: #666;
	margin-top: 5px;
  }
  
  /* No options message styling */
  .no-options-message {
	padding: 20px;
	text-align: center;
	border-radius: 12px;
	background-color: #f8f9fa;
	border: 1px solid #dee2e6;
  }
  
  .no-options-message p {
	color: #6c757d;
	font-size: 16px;
	margin: 0;
  }
  .popup-options-randevu .popup-title h2{
	font-size: 38px;
	font-weight: 500;
	color: var(--Colors-Primary-700);
	line-height: 1.3;
	margin: 0;
  }
  .popup-options-randevu .popup-title p{
	color: #8C8C8C;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
	margin: 0;
  }
  .close-popup{
	padding: 24px;
  }
  .close-popup img {
	padding: 10px;
	cursor: pointer;
  }
  .popup-content-randevu{
	padding: 30px 56px;
	width: 100%;
  }
  .packet-offer {
	display: flex;
	align-items: center;
	gap: 40px;
  }
  .popup-option .packet-offer span{
	background-color: #F6895E;
	color: #FFFFFF;
	padding: 12px 33px;
	border-radius: 4px;
  }
  .popup-options-randevu .detail{
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
  }
  .popup-options-randevu .detail h3{
	margin: 0;
	font-size: 24px;
	font-weight: 500;
	color: #3D3D3D;
	line-height: 1.3;
  }
  .popup-options-randevu .detail p{
	color: #8C8C8C;
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	margin-top:-5px;
  }
  .popup-options-randevu .price ins{
	text-decoration: none;
	font-size: 38px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -2px;
	color: var(--Colors-Primary-700);
  }
  .popup-options-randevu .price del {
    font-size: 24px;
    color: #940000;
	}
  .popup-options-randevu .price{
	display: flex;
	flex-direction: column;
	align-items: end;
  }
  .popup-options-randevu .price .munutes{
	font-size: 16px;
	font-weight: 400;
	color: #8C8C8C;
	line-height: 1.3;
  }
  .popup-options-randevu .button-fields{
	margin-top: 32px;
	display: flex;
	align-items: center;
	gap: 20px;
  }
  .popup-options-randevu .button-fields-randevu button{
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
	cursor: pointer;
  }
  .popup-options-randevu .button-fields-randevu .cancel-btn{
	color: var(--Colors-Primary-700);
	padding: 4px 16px;
	border: none;
	background-color: transparent;
  }
  .popup-options-randevu .button-fields-randevu .continue{
	background-color: #7DBAB0;
	padding: 8px 16px;
	color: #FFFFFF;
	border: 1px solid #93DBCF;
  }
  .overlay-randevu {
	display: none; /* Başlangıçta gizli */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam siyah */
	z-index: 9; /* Popup'ın üstünde görünmesi için */
  }
.randevu-cizelge-box .cizelge-wrapper {
	margin-top: 0;
    border: 1px solid #DFE2E6;
    margin-top: 30px;
    border-radius: 10px;
    background: #FAFBFB;
    padding: 10px 20px;
}
.randevu-cizelge-box .btn-primary {
    width: 100%;
    display: block;
}
.header-buttons a:last-child svg{ display: inline-block; }
.etbis{
	display: flex;
	justify-content: end;
	margin-bottom: 10px;
}

@media (min-width: 1200px){
	.uzman-tab-wrap {
		display: flex;
	}
	.tab-menu-randevu {
		position: sticky;
		width: 500px;
	}
}
@media (max-width: 1199px){
.tab-header-randevu div{
	padding: 8px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.main-box{
  flex-direction: column;
}
.tab-menu-randevu{
  width: 100%;
  z-index:1006;
}
}
  @media (max-width: 992px){
	.popup-content-randevu {
	  padding: 50px 38px;
	  width: 100%;
	}
	.popup-options-randevu{
	  height: 100%;
	  padding: 0 20px;
	  z-index:1007;
	  overflow:auto;
	}
	.popup-options-randevu-inner{
		max-width:100%;
	}
	.popup-options-randevu .price {
		flex-direction: row-reverse;
		align-items: center;
		width: 100%;
		justify-content: space-between;
	}
	.popup-options-randevu .popup-title {
	  margin-bottom: 24px;
	}
	.popup-options-randevu .popup-title h2{
	  font-size: 24px;
	}
	.popup-options-randevu .popup-title p{
	  font-size: 14px;
	  font-weight:400;
	}
	.popup-options-randevu .popup-option{
	  padding: 12px;
	}
	.popup-options-randevu .detail{
	  gap: 10px;
	}
	.packet-offer{
	  gap: 20px;
	}
	.popup-option .packet-offer span{
	  padding: 8px 12px;
	}
	.popup-options-randevu .price ins{
	  font-size: 32px;
	}
	.popup-options-randevu .option-box {
	  gap: 12px;
	  padding-bottom: 36px;
	}
	.popup-options-randevu .button-fields {
	  gap: 10px;
	  margin-top: 20px;
	}
	.close-popup {
	  padding: 10px;
	}
	.close-popup img{
	  width: 40px;
	}
	section.doctor-list .doctor-item figcaption{
		padding: 16px 8px;
		align-items: end;
	}
	.doctor-item h4{
		font-size: 14px;
		font-weight: 500;
		color: #262626;
		margin-bottom: 0;
	}
	.doctor-item .brans {
		color: #8C8C8C;
		font-weight: 400;
	}
	.doctor-items .doctor-item figcaption span{
		padding: 8px 12px;
	}
	.doctor-item .doctor-info{
		display: flex;
		flex-direction: column;
		align-items: end;
		font-size: 12px;
		gap: 3px;
	}
	.stars{
		width: 62px;
		height: 11px;
	}
	.doctor-item .stars{
		margin-bottom: 0;
	}
	.doctor-item .stars svg{
		width: 62px;
		margin-top: 0;
	}
	.comments .comment-numbers{
		margin-bottom: 32px;
	}
	.etbis{
		margin-bottom: 0;
	}
  }
  
  @media (max-width: 767px){
	.woocommerce table.shop_table_responsive tbody th, .woocommerce-page table.shop_table_responsive tbody th{
		display: block;
	}
	.woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before{
		display: none;
	}
	.woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td{
		text-align: start !important;
	}
	.popup-content-randevu{
	  width: 100%;
	  padding: 50px 20px
	}
	.popup-options-randevu .popup-option {
	  flex-direction: column;
	  align-items: start;
	  gap: 20px;
	}
	.close-popup{
	  position: absolute;
	  right: 0;
	}
	.popup-options-randevu.active{
	  padding: 0 10px;
	}
	.footer-menu-box-field .nav {
        display: none;
    }

	.footer-menu-header {
        cursor: pointer;
        position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
    }

	.footer-menu-header img{
		display: block;
		width: 30px;
		transition: all 0.3s ease-in;
	}

	.footer-menu-header.active img {
		transform: rotate(180deg);
	}

	

	.footer-menu-header.active + .nav {
        display: block;
		text-align: start;
		margin-top: 20px;
    }
  }
@media (max-width: 992px){
	.uzman-more .tab-container .tab-content .iletisim{
		flex-direction: column;
	}
	section.hero{
		background:#F4FBFA;
	}
	section.hero .hero-content h1{
		text-align:center;
		font-size:24px;
	}
	.hero .searchbox{
		width:100%;
		margin: 10px auto;
		max-width: 380px;
	}
	.fliptext{
		justify-content:center;
		margin-top: 20px;
	}
	section.hero{
		padding-bottom:40px;
		margin-bottom:10px;
	}
	.swiper-slide.cats-slide {
		width: 175px !important;
	}
	.event-item figcaption{
		padding:8px 16px;
		background:#F4FBFA;
		flex-direction:row-reverse;
		gap:33px;
		justify-content:space-between;
	}
	.event-item .event-date{
		margin:0;
	}
	.event-item .event-date span:first-child{
		font-weight:700;
		font-size: 14px;
		color: #D8C571;
		line-height: 1.6;
	}
	
	.event-item h3{
		font-size:14px;
		font-weight:500;
		line-height:1.5;
		color:#262626;
		margin:0;
	}
	.event-item p{
		font-size:12px;
		font-weight:400;
		color:#989898;

	/* Özet Bilgi card */
	.ozet-card { background: #F5FAFF; border: 1px solid #C7D8F5; border-radius: 14px; padding: 18px 18px 12px; box-shadow: 0 2px 6px rgba(25,33,61,0.05); }
	.ozet-card-head { margin-bottom:10px;display:flex; align-items:center; gap:10px; margin-bottom: 8px; }
	.ozet-card-head h3 { margin:0; font-size: 18px; font-weight: 700; color: #244A94; }
	.ozet-icon { width: 28px; height: 28px; border-radius: 50%; background: #E7F0FF; color:#244A94; display:inline-flex; align-items:center; justify-content:center; font-weight:700; }
	.ozet-toggle { margin-left:auto; border:0; background:transparent; padding:4px; border-radius: 8px; cursor:pointer; }
	.ozet-badges { margin: 0 0 10px; color: #6B7280; font-weight: 600; font-size: 14px; }
	.ozet-text { color: #63636A; font-weight: 500; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
	.ozet-text.expanded { display: block; -webkit-line-clamp: unset; line-clamp: unset; overflow: visible; }
	.ozet-read-more { display:inline-block; margin-top: 8px; color: #4B6AC0; font-weight: 700; text-decoration: none; }
	.ozet-read-more:hover { text-decoration: underline; }
	.btn-wa-support { display:block; width:100%; margin-top: 12px; background:#4B6AC0; border-color:#4B6AC0; }
	}
	section.event-list .event-slide{
		width:200px;
	}
	.auto-swiper .swiper-slide {
    	margin-left: 24px;
	}
	.auto-swiper .swiper-slide:first-child{
		margin-left: 40px;
	}
	.doctor-items{
		display:flex;
		width: 100%;
		margin: 0;
		flex-wrap: nowrap;
		overflow: auto;
	}
	section.featured-doctors .counter-box {
		margin: 0 0 20px;
		max-width:100%;
		gap: 10px;
	}
	.doc-info p{
		margin-bottom: 20px;
	}
	section.featured-doctors .counter-item{
		padding: 8px;
		width: auto;
		flex: 0 0 calc(50% - 10px);
		margin-right: 0;
		max-width: fit-content;
	}
	.doc-info .btn{
		display:flex;
		justify-content:center;
		text-align:center;
		border:1px solid #D9D9D9;
	}
	section.look-us .col:last-child{
		display:none;
	}
	.counter-box {
		max-width: 80%;
		margin: 0 0px 20px;
	}
	.counter-item {
		flex: 50%;
		max-width: 100%;
	}
	.look-us .counter-item{
		flex-direction:row;
		padding:0;
		align-items:center;
	}
	section.comments .container > div {
		flex-direction: column-reverse;
	}
	.comment-info .title-box {
		margin-bottom: 15px;
	}
	section.comments .container .btn-bordered{
		border:1px solid #93DBCF;
	}
	.comment-list{
		margin-top:40px;
	}
	.m-flex-column-reverse {
        flex-direction: column;
        gap: 24px;
    }
	.blog-cats .cat-item figure {
        margin-bottom: 0;
    }
	.blogs .blog-list-items:last-child > .wrap{
		gap:16px;
	}
	section.sss .container picture{
		display:none;
	}
	.sss-wrapper {
		width: 100%;
	}
	.footer-wrapper .menu-box {
		width:100%;
	}
	.subscribe-container input{
		width:100%;
	}
	#dailyView .hour-row{
		overflow:visible;
	}
	#dailyView .hour-inner-row{
		max-width:100%;
	}
	section.look-us .col:first-child{
		width: 100%;
	}
	section.look-us .col:last-child{
		width: 100%;
	}
	.blog-post-item picture{
		width: auto;
		height: auto;
	}
	.comment-item{
		margin-bottom: 0;
	}
	section.blogs .container .container{
		padding: 0;
	}
	.post-content-wrapper .btn-bordered{
		display: flex;
		width: fit-content;
	}
	.comments-swiper .swiper-slide .comment-item{
		background-color: var(--Colors-Primary-700);
	}
	.comments-swiper .swiper-slide .comment-item .comment-name h5,
	.comments-swiper .swiper-slide .comment-item .comment-name span{
		color: #FFFFFF;
	}
	.comments-swiper .swiper-slide .comment-item .comment-body p{
		color: #ffffff;
	}
}
@media (max-width: 565px){
	.swiper-slide.cats-slide{
		width: 141px;
	}
}
@media (max-width: 1200px){
	.subscribe-container {
		min-width: 240px;
	}
}

body.archive.tax-wcpv_product_vendors .uzman-detail .uzman-header::before{
	display: none;
}

.tab-container .mobile-tabs{
	display: none;
}
.tab-menu-close {
	display: none;
}

@media (max-width: 992px){
	.tab-menu-close {
		display: flex;
		margin: -5px 0 15px;
		cursor: pointer;
	}
	.vertical-posts{
		height: auto;
	}
	.uzman-more .tab-content.active{
		margin-bottom: 48px;
	}
	.uzman-gallery{
		padding-bottom: 24px;
		margin-bottom: 40px;
	}
	.uzman-gallery img{
		width: 100%;
		margin-right: 0;
		height: 202px;
	}
	.uzman-gallery .swiper-pagination{
		bottom: 0;
	}
	.uzman-egitims .egitim-box{
		padding-bottom: 48px;
	}
	.uzman-comments h3{
		font-size: 20px;
		padding-right: 10px;
	}
	.comment-header img{
		display: none;
	}
	.child-comment-item .comment-header img{
		display: block;
	}
	.site-footer .site-info {
		max-width: 100%;
		display: flex;
		gap: 40px;
		align-items: center;
	}
	.site-footer .site-info .footer-logo-field{
		display: flex;
		flex-direction: column;
		gap: 19px;
		width: 40%;
	}
	.site-footer .custom-logo-link{
		margin-bottom: 0;
	}
	.footer-menu-box-field {
		display: flex;
		justify-content: start;
		width: 60%;
		gap: 10px;
	}

	.mega-nav {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	.payment-options-img{
		margin: 18px 0;
	}
	.payment-options-img svg{
		max-height: 30px;
	}
	.newsletter-box .etbis img{
		width: 100px !important;
		height: 110px !important;
	}
	.site-footer .copyright{
		height: 64px;
	}
	.tab-container .mobile-tabs{
		display: inline-block;
		position: relative;
		width: 100%;
	}
	.mobile-tab-select{
		width: 100%;
		padding: 8px 16px;
		border-radius: 4px;
		border: 1px solid #DFE2E6;
		font-size: 14px;
		font-weight: 400;
		line-height: 1.4;
		color: #98A1B0;
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
	}
	.uzman-more .tab-content.active{
		margin-top: 32px;
	}
	.tab-container .mobile-tabs:after{
		content: "";
		position: absolute;
		top: 50%;
		right: 10px;
		width: 12px;
		height: 12px;
		background: url('assets/icons/arrow-mobile-icon.svg') no-repeat center;
		background-size: contain;
		transform: translateY(-50%);
		pointer-events: none;
	}
	section.doctor-list .btn-bordered{
		bottom: 0;
	}
	main.uzman-list{
		margin-bottom: 64px;
	}
	
	.tabs .klinik .video-wrapper{
		flex-direction: column;
	}
	.tabs .klinik .video-wrapper .col{
		width: 100%;
	}
	.tabs .klinik .egitim-gecmis{
		flex-wrap: wrap;
	}
	.egitim-gecmis:nth-child(2){
		margin-bottom: 15px;
        border-bottom: 1px solid #ccc;
        padding-bottom: 15px;
	}
	.tabs .klinik .egitim-gecmis span:first-child{
		width: 100%;
	}
	section.doctor-list{
		margin-top: 0;
		padding-bottom: 1px;
	}
	.cats-item a{
		height: 200px;
	}
	section.event-list{
		margin: 0;
	}
	section.featured-doctors{
		margin: 32px 0;
	}
	section.featured-doctors .container > div{
		flex-direction: column-reverse;
	}
	.qr-and-application{
		display: flex;
		align-items: center;
		width: 100%;
		justify-content: space-evenly;
		gap: 10px;
	}
	.newsletter-box .applications{
		flex-direction: column;
	}
}

@media (max-width: 767px){
	.uzman-detail .socials{
		justify-content: start;
		margin-top: 32px;
		margin-bottom: 0;
	}
	.comment-box{
		align-items: center;
		flex-direction: row;
		margin-top: 8px;
	}
	.uzman-header .uzman-summary h1{
		margin-bottom: 8px;
	}
	.uzman-header-bottom{
		margin-top: 32px;
	}
	.social-uzman-body{
		display: flex;
		flex-direction: column-reverse;
	}
	.uzman-egitims .egitim-inner .col{
		width: 100%;
	}
	.uzman-gallery{
		display: none;
	}
	.uzman-comments .comment-box{
		flex-direction: column;
		margin-top: -60%;
		align-items: end;
		white-space: nowrap;
	}
	.child-comment-item:last-child {
		margin-bottom: 0;
	}
	.child-comment-item .comment-body p{
		height: auto;
	}
	.uzman-comment-wrap .comment-item{
		margin-bottom: 8px;
		margin-left: 0;
		width: 100%;
	}
	.uzman-comment-wrap{
		/*padding: 0 15px;*/
	}
	.site-footer .site-info{
		flex-direction: column;
		align-items: start;
	}
	.site-footer .site-info .footer-logo-field{
		width: 100%;
		display: flex;
		justify-self: center;
		text-align: center;
	}
	.site-footer .custom-logo-link{
		display: flex;
		justify-content: center;
	}
	.site-footer .footer-desc{
		margin-bottom: 0;
	}
	.footer-wrapper{
		row-gap: 40px;
		column-gap: 20px;
	}
	.footer-menu-box-field{
		width: 100%;
		flex-direction: column;
		text-align: center;
	}
	.newsletter-box{
		width: 100%;
		align-items: center;
	}
	section.event-list .event-slide{
		width: 257px !important;
	}
	.site-footer .nav a{
		margin-bottom: 15px;
	}
	.site-footer .nav li:last-child a{
		margin-bottom: 0;
	}
	.popup-options-randevu .detail h3{
		font-size: 20px;
	}
	.popup-options-randevu .detail p{
		font-size: 14px;
	}
	.popup-options-randevu .price ins{
		font-size: 26px;
	}
	.popup-options-randevu .price .munutes{
		font-size: 14px;
	}
}

.page-id-1781 .page-content h3{
	display: none;
}
form.woocommerce-checkout .row .checkout-cols:first-child{
	width: 57%;
}
form.woocommerce-checkout .row .checkout-cols:last-child{
	width: 38.4%;
}
form.woocommerce-checkout .row .checkout-cols:last-child > div{
    background: #F4FBFA;
	height: 100%;
}
#order_review .shop_table{
	background-color: transparent;
}

#customer_details > div{
	justify-content: space-between;
}
.woocommerce-account section.page-content:not(.account-takvim, .account-meeting) .container{
	padding-right: 24px;
	max-width: 1200px;
}
.page-content.account-takvim .container, .page-content.account-meeting > .container {
	padding: 0;
}
.woocommerce-account .page-content-wrapper .account-tabs {
    display: flex;
	gap: 32px;
	justify-content: space-between;
	margin-top: 48px;
}

.woocommerce-account .page-content-wrapper .account-tabs .buttons {
    flex-wrap: nowrap;
    display: flex;
    flex-direction: column;
	background-color: transparent;
	width: 25%;
	padding: 0;
}
.woocommerce-account .page-content-wrapper .account-tabs .buttons button{
	text-align: start;
	color: #202020;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
}
.woocommerce-account .page-content-wrapper .account-tabs .buttons .tab-button.active{
    background-color: var(--Colors-Primary-200);
    color: var(--Colors-Primary-600);
}
.woocommerce-account .page-content-wrapper .account-tabs .tabs{
	width: 72%;
	padding: 32px;
}
.woocommerce-account .page-content-wrapper .account-tabs .tabs .tab-content{
	opacity: 1 !important;
	display: none;
}
.woocommerce-account .page-content-wrapper .account-tabs .tabs .tab-content.active{
	display: block;
}
.woocommerce-account .page-content-account:not(.account-takvim, .account-meeting) {
	min-height: 800px;
}
.woocommerce-account fieldset{
	margin: 0;
}
.woocommerce-account form p:last-child {
    margin-bottom: 0;
}
.woocommerce-account .page-content-wrapper .account-tabs .tabs #profile .input-text{
	background-color: transparent;
	border: 1px solid #D9D9D9;
	border-radius: 2px;
}
.woocommerce-MyAccount-content .acf-form-fields.-top{
    padding-left: 323px;
    margin-top: 48px;
}
.woocommerce-MyAccount-content .acf-form-fields .acf-tab-wrap {
    position: absolute;
    left: 0;
	background-color: transparent;
	min-width: 288px;
	margin: 0;
}
.woocommerce-MyAccount-content .acf-form-fields .acf-tab-wrap ul{
	flex-direction: column;
	background-color: transparent;
	padding: 0;
	gap: 17px;
}
.woocommerce-MyAccount-content .acf-form-fields .acf-tab-wrap ul li{
	margin: 0;
	cursor: pointer;
	margin-right: 10px;
}
.woocommerce-MyAccount-content .acf-form-fields .acf-tab-wrap ul li.active a{
background-color: var(--Colors-Primary-200);
    color: var(--Colors-Primary-700);
}
.woocommerce-MyAccount-content .acf-form-fields .acf-tab-wrap ul li a{
	background-color: transparent;
	font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}
.woocommerce-MyAccount-content .acf-form-submit input{
	border: none;
}
@media (max-width: 1200px) and (min-width: 992px){
	.page-uzman-ol section.uzman-hero {
        height: calc(100vh - 90px);
    }
}
body.page-odeme .page-content .container{
	padding-right: 0;
}

/* Checkout: variation summary card under expert card */
body.page-odeme .order-variation-card{
	display:flex;
	align-items:flex-start;
	justify-content:space-between;
	gap:12px;
	background:#fff;
	border:1px solid #E5E7EB;
	border-radius:12px;
	padding:12px;
	margin:8px 0 16px;
}
body.page-odeme .order-variation-card .ovc-left{flex:1;min-width:0}
body.page-odeme .order-variation-card .ovc-title{font-weight:600;font-size:14px;color:#111827;margin:0 0 4px}
body.page-odeme .order-variation-card .ovc-sub{font-size:12px;color:#6B7280;margin-bottom:6px}
body.page-odeme .order-variation-card .ovc-meta{display:flex;gap:8px;flex-wrap:wrap}
body.page-odeme .order-variation-card .pill{display:inline-block;font-size:11px;color:#374151;background:#F3F4F6;border:1px solid #E5E7EB;border-radius:999px;padding:4px 8px}
body.page-odeme .order-variation-card .ovc-price{white-space:nowrap;font-weight:700;color:#111827;font-size:14px;align-self:center}

/* Checkout: fatura tipi radio-card UI */
body.page-odeme .has-fatura-tipi-cards .fatura-tipi-cards{display:flex;gap:16px;align-items:stretch;margin-top:8px}
body.page-odeme .has-fatura-tipi-cards .ft-card{position:relative;display:flex;flex:1;align-items:center;gap:12px;background:rgba(255,255,255,0.73);border:1px solid #E1E6F5;border-radius:16px;padding:16px 18px;box-shadow:0 8px 50px rgba(0,79,81,0.10);cursor:pointer;transition:border-color .2s, background .2s}
body.page-odeme .has-fatura-tipi-cards .ft-card:hover{border-color:#8CA9E8}
body.page-odeme .has-fatura-tipi-cards .ft-card input[type="radio"]{position:absolute;opacity:0;inset:0;margin:0}
body.page-odeme .has-fatura-tipi-cards .ft-card .ft-content{display:flex;flex-direction:column;gap:4px}
body.page-odeme .has-fatura-tipi-cards .ft-card .ft-title{font-weight:600;color:#0F1419}
body.page-odeme .has-fatura-tipi-cards .ft-card .ft-desc{font-size:13px;color:#6C6C77;max-width:32ch}
body.page-odeme .has-fatura-tipi-cards .ft-card .ft-check{margin-left:auto;width:26px;height:26px;border-radius:8px;background:#E7F0FF;display:inline-flex;align-items:center;justify-content:center}
body.page-odeme .has-fatura-tipi-cards .ft-card .ft-check svg path{stroke:#244A94}
body.page-odeme .has-fatura-tipi-cards .ft-card.active{background:#fff;border-color:#5080D9}
@media (max-width: 768px){
	body.page-odeme .has-fatura-tipi-cards .fatura-tipi-cards{flex-direction:column}
}

section.uzman-hero .hero-content .counter-box .counter-item{
	max-width: 33%;
}

@media screen and (max-width: 1440px) and (min-width: 992px) {
	.site-header .nav a {
		font-size: 12px;
	}
	
}

.uzman-more .tab-content .iletisim address div.flex {
	 flex-wrap: wrap;
	 gap: 10px;
	 margin-bottom: 10px;
}

@media (max-width:992px){
	body:not(.single-hizmet) .uzman-header .uzman-header-top{
		display: none;
	}
	.uzman-header-top-mobile{
		display: block !important;
	}
	.egitim-gecmis span:not(:first-child) {
		width: 31%;
	}
	.woocommerce-MyAccount-content .acf-form-fields.-top {
		padding-left: 0;
		margin-top: 0;
	}
	.woocommerce-MyAccount-content .acf-form-fields .acf-tab-wrap ul {
		flex-direction: row;
		gap: 0;
	}
	.acf-tab-group li {
		min-width: inherit;
	}
	.woocommerce-MyAccount-content .acf-form-fields .acf-tab-wrap ul li a {
		white-space: nowrap;
	}
}

.woocommerce-orders .woocommerce table.shop_table tbody th{
	font-weight:400 ;
	border: none;
}
.woocommerce table.account-orders-table.shop_table tbody th {
	border-top: none;
}
.woocommerce-orders .page-content-wrapper{
	padding-top: 48px;
}

.woocommerce-orders .woocommerce-MyAccount-content{
	padding: 32px;
	background-color: #FFFFFF;
	border-radius: 12px;
}
.woocommerce-orders table.shop_table thead tr{
	background-color: #F5F5F5;
}
.woocommerce-orders table.shop_table thead tr th:first-child, .woocommerce-orders table.shop_table thead tr th:last-child {
    padding: 20px;
}
.woocommerce-orders table.shop_table tbody th, .woocommerce-orders table.shop_table tbody td:last-child {
	padding-left: 20px;
	padding-right: 20px;
}
.woocommerce-orders .woocommerce table.shop_table thead th{
	color: #0F1419;
	font-size: 14px;
}
.woocommerce-orders table.shop_table thead th:last-child {
    font-size: 0;
	font-weight: 500;
}
.woocommerce table.my_account_orders{
	font-size: 14px;
}
.woocommerce table.my_account_orders span.status{
	background-color: #42635D;
	padding: 4px 8px;
	border-radius: 4px;
	color: #FFFFFF;
}

.woocommerce-orders table.my_account_orders .button{
	border: 1px solid #8C8C8C;
	color: #8C8C8C;
	padding: 8px 16px;
	border-radius: 8px;
	display: flex;
}
.subscribe-page-content{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 50px 0;
}
.subscribe-page-content h4{
	font-size: 24px;
	margin: 15px 0;
}


@media (max-width: 992px){
	.woocommerce-account section.page-content:not(.account-takvim) .container{
		padding: 0 10px;
	}
	.woocommerce-account .page-content-wrapper .account-tabs{
		flex-direction: column;
		gap: 20px;
	}
	.woocommerce-account .page-content-wrapper .account-tabs .buttons{
		width: 100%;
		margin-bottom: 0;
		gap: 10px;
		flex-direction: row;
		overflow: auto;
		padding-bottom: 10px;
	}
	.woocommerce-account .page-content-wrapper .account-tabs .buttons .tab-button{
		margin: 0;
		white-space: nowrap;
	}
	.woocommerce-account .page-content-wrapper .account-tabs .buttons button{
		margin: 0;
		width: fit-content;
	}
	.woocommerce-account .page-content-wrapper .account-tabs .tabs {
		width: 100%;
		padding: 10px;
		padding-bottom: 70px;
	}
	.woocommerce-account form .form-row{
		margin-bottom: 10px;
	}
	.woocommerce form .form-row label{
		line-height: 1.3;
		font-size: 14px;
	}
	.woocommerce form .form-row input.input-text{
		padding: 10px;
		height: auto;
	}
	.my-addresses{
		flex-direction: column;
		gap: 10px;
	}
	.page-content .address-item{
		width: 100%;
		padding: 16px 10px;
	}
	.messager-list{
		padding: 10px;
		gap: 20px;
	}
	.messager-list .messager-user{
		min-width: 160px;
		gap: 10px;
	}
	.messager-list .messager-user img{
		width: 32px;
		height: 32px;
	}
	.messager-user-content{
		font-size: 14px;
	}
	.messager-list::-webkit-scrollbar{
		display: none;
	}
	.subscribe-page-content{
		text-align: center;
	}
	.woocommerce-orders .page-content-wrapper {
		padding-top: 0;
	}
	.woocommerce-orders table.shop_table tbody th, .woocommerce-orders table.shop_table tbody td:last-child{
		padding-right:10px;
		padding-left:10px;
	}
	.woocommerce-orders table.shop_table tbody td:last-child:before{
		font-size: 0;
	}
	.woocommerce-orders table.my_account_orders .button{
		width: fit-content;
		margin-left: auto;
	}
	body:not(.single-hizmet) main.uzman-detail .container{
		padding-right: 10px;
	}
	.post-with-image .text-wrapper{
		padding-right: 0;
	}
	section.post-with-image{
		margin-bottom: 40px;
	}
	section.bilgi-banner{
		margin: 40px 0;
	}
	.single-etkinlik .hero .hero-content{
		margin-top: 40px;
	}
	.single-etkinlik main{
		margin:  0;
	}
	section.next-events{
		margin-bottom: 40px;
	}
	section.kurumsal-kutucuk{
		margin: 40px 0;
	}
	section.gorsel-box{
		margin: 40px 0;
	}
	section.gorsel-box .m-flex-column {
		gap: 20px;
	}
	section.gorsel-box .m-flex-column .col {
		width: 100%;
	}
	.kutu-item {
		padding: 20px 15px;
		margin-bottom: 15px;
	}
	section.baslik-aciklama {
		margin: 40px 0;
	}
	section.kutucuklar {
		margin: 40px 0;
	}
	.list-body {
		margin-top: 70px;
	}
	.page-saglik-kosesi main.uzman-list{
		margin-top: 40px;
	}
	.blog-wrapper .col:last-child a {
		margin-bottom: 0;
	}
	.single section.hero{
		margin-bottom: 0;
	}
	.hero .post-hero-content{
		gap: 20px;
	}
	.hero .post-hero-content > img {
		max-width: 70%;
	}
	.kategori-hashtags{
		justify-content: center;
	}
	.single-post .page-main{
		margin-bottom: 40px;
	}
	.single-post .page-main p img{
		width: 100%;
	}
	.customize-support .event-list{
		margin:30px 0;
	}
	.page-odeme form.woocommerce-checkout .row .checkout-cols:first-child,
	.page-odeme form.woocommerce-checkout .row .checkout-cols:last-child{
		width: 100%;
	}
	.page-odeme .woocommerce.wp-block-group.alignwide{
		padding-right: 10px;
	}
	.address-name input[type='radio']:checked:after{
		top: -5px;
		right: -5px;
	}
	.woocommerce-checkout form.checkout_coupon .button {
		/*height: auto;
		width: 100%;*/
	}
	#customer_details > div{
		gap: 20px;
	}
	.addresses{
		margin-bottom: 10px;
	}
	.appointment-popup-overlay .appointment-content {
		padding: 20px;
		overflow: hidden;
	}
	.appointment-tab-menu{
		margin: 8px 20px;
	}
	.appointment-popup-overlay .appointment-content .input-field{
		gap: 10px;
	}
	.appointment-popup-overlay .appointment-content .input-field input,
	.appointment-popup-overlay .appointment-content .input-field select{
		width: 100%;
	}
	.appointment-popup-overlay .appointment-content .input-field .input-item{
		align-items: start;
		flex-direction: column;
	}
	.iti{
		width: 100%;
	}
	.popup-title-field .close-calendar-settings-popup{
		padding: 20px;
	}
	.calendar-settings-popup{
		padding: 40px 20px !important;
		border-radius: 10px;
		gap: 16px !important;
		min-width: 300px !important;
        width: calc(100% - 20px) !important;
		max-width: 400px;
	}
	.calendar-settings-popup .popup-title{
		margin-top: 0;
	}
	.calendar-settings-popup .popup-description{
		font-size: 15px;
		line-height: 1.2;
	}
	.calendar-settings-content .time-select-field{
		gap: 8px;
	}
	.calendar-settings-content .working-hours .day-time{
		gap: 5px;
	}
	.calendar-settings-content .working-hours .day-time label {
		font-size: 12px;
		width: 18%;
		margin-bottom: 0;
	}
	.calendar-settings-content .working-hours .day-time .selectbox-time{
		gap: 5px;
	}
	.calendar-settings-content .working-hours .day-time select {
        padding: 6px 10px 6px 6px;
        font-size: 14px;
	}
	.calendar-settings-content .working-hours .day-time .selectbox-time span{
		font-size: 10px;
	}
	.calendar-settings-content .working-hours .day-time button{
		padding: 3px;
	}
	.calendar-settings-content .working-hours .day-time button img{
		width: 10px;
	}
	.calendar-settings-popup .calendar-settings-tab-menu{
		gap: 3px;
	}
	.general-section .captain-box .date-filter-banner.active{
		display: block;
	}
	.general-section .captain-box .date-filter-banner .calendar{
		padding: 0;
	}
	.general-section .captain-box .date-filter-banner #show-all-randevus{
		margin-top: 20px;
		margin-bottom: 10px;
		padding: 6px;
		width: 100%;
	}
}

.date-filter-overlay {
	position: fixed;
	top: 0;
	left: 75%;
	width: 25%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam koyu alan */
	display: none;
	z-index: 999; /* Üstte olması için */
  }
  
  .date-filter-banner.active + .date-filter-overlay {
	display: block;
  }

  @media (max-width: 768px){
	.account-meeting .randevu-box .randevu-item span{
		text-align: start !important;
		margin-bottom: 0;
	}
	.account-meeting .randevu-box .randevu-item-head{
		gap: 10px;
	}
  }


.vendor-reports-wrapper :is(h2, .subsubsub) {
	display: none;
}

.meeting-randevus {
    padding: 30px;
    background: #f7f7f7;
}
.meeting-randevus h2 {
	margin-top: 0;
}
.meeting-randevus-wrapper {
    display: flex;
    overflow: auto;
    padding: 5px;
    margin: -5px;
}
.meeting-randevu-item {
	position: relative;
	display: flex;
    flex-direction: column;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-right: 10px;
    font-size: 12px;
    color: #222;
    gap: 5px;
    color: #707070;
    transition: all .3s ease-in-out;
}
.meeting-randevu-item.has-today:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 10px;
    width: 7px;
    height: 7px;
    background: #00d2b4;
    border-radius: 50%;
    animation: blink 1s infinite;
}
.meeting-randevu-item.meet-active {
    box-shadow: 0 0 0 2px #7dbab070;
}
@keyframes blink {
    0%   { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 1; }
}
.meeting-randevu-item span {
    display: flex;
    gap: 5px;
}
.meeting-randevu-item strong {
	white-space: nowrap;
    font-size: 14px;
	font-weight: 500;
}
.meeting-randevu-item .btn {
    padding: 4px;
    margin-top: 5px;
    border-radius: 8px;
    border: none;
    min-width: 120px;
}
.meeting-randevu-item .cat {
	display: none;
}
.randevu-header.meeting-header .btn img {
	display: none;
}
@media (max-width: 768px) {
    .randevu-header.meeting-header .logo {
        display: block;
    }
	.randevu-header.meeting-header .btn {
		font-size: 0;
		background-color: transparent;
		border: none;
	}
	.randevu-header.meeting-header .btn img {
		display: block;
	}
	.meeting-header .button-wrapper {
		display: flex;
		align-items: center;
	}
	.wcpv-registration-wrapper {
		padding: 0;
	}
}

/* Hide button-fields-randevu area */
.button-fields-randevu {
	display: none !important;
}

.uzman-detail-inner .uzman-item .uzman-list-end {
    display: none !important;
}


.uzman-list-cats .badge {
    max-width: 26%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}
.page-template-template-uzmanlar .site-breadcrumbs,
.tax-product_cat .site-breadcrumbs,
.tax-hizmet_kategori .site-breadcrumbs {
    display: none;
}
.cizelge-header .col {
    display: flex;
    flex-direction: column;
}

.tab-header-randevu {
    width: 100%;
    border-radius: var(--8, 8px);
    background: var(--Colors-Primary-700, #315292);
    padding: 6px;
}

.tab-header-randevu div {
    /*padding: 12px 24px;*/
	padding: 12px 8px;
}

.tab-header-randevu div.active {
    background: var(--Colors-Primary-500, #5080D9);
}

.tab-header-randevu div h3 {
    font-size: 14px;
}

.tab-menu-randevu-inner {
    background: #fff;
}

main.uzman-detail {
    margin-right: 30px;
}
.tab-menu-randevu-inner>h4 {
    margin-bottom: 13px;
    font-weight: 500;
    font-size: 1em;
}

.tab-menu-randevu-inner {
    padding: 25px 20px;
}

.tab-header-randevu {
    padding: 8px;
    margin-bottom: 17px;
}

.tab-header-randevu div h3 i {
    margin-right: 5px;
}

.input-container-randevu input.package {
    font-size: 1em;
    border-radius: 8px;
    border: 1px solid var(--Colors-Primary-400, #739FE5);
    background: rgba(97, 140, 220, 0.10);
    padding: 12px 18px;
    height: 68px;
    margin-bottom: 18px;
}

.input-container-randevu input.package::placeholder {
    color: var(--Colors-Primary-600);
}
.input-container-randevu img.icon {top: 15px;transform: none;background: transparent;border: none;padding: 5px;}

.randevu-cizelge-box {border: none;padding: 0 15px;background: #fff;border: none;}

.randevu-cizelge-box .cizelge-wrapper {
    margin-top: 0;
    border: none;
    background: #fff;
}

.cizelge-wrapper .scroll-container {
    min-height: 230px !important;
}

/* anchor time elements inherit .time styles */
a.time { text-decoration: none; }

.cizelge-wrapper .time {
    border-radius: 4px;
    background: var(--Colors-Primary-100, #E6EEFA);
    border:none;
    font-weight:400;
}

.cizelge-nav svg path {
    fill: var(--Colors-Primary-700);
}


.uzman-header-bottom-inner .uzman-butons a{
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	padding: 9px 17px;
	border: none;
	border-radius: 2px;
	background-color: var(--Colors-Primary-700);
}
.uzman-more .tab-container .tab-button {
    color: var(--Colors-Neutral-600);
    line-height: 1.6;
    padding: 8px 24px;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px !important;
}
.uzman-more .tab-container .tab-button.active{
	color: var(--Colors-Primary-200);
	border-color: var(--Colors-Primary-200);
}

.desktop-tabs {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 24px;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.73);
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
}

/* spacing wrapper for uzman-more */
.uzman-more { /* reserved for layout grouping */
	/* spacing hook */
	--_placeholder: 0;
}

.uzman-more .tab-container .tab-button.active {
    border-radius: 4px;
    background: rgba(97, 140, 220, 0.10);
    border: none;
    color: var(--Colors-Primary-500);
}

.uzman-detail-inner .uzman-item.card {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.73);
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
    border: none;
}

.site-breadcrumbs {
    padding: 24px 0;
}

.site-breadcrumbs .woocommerce-breadcrumb {
    color: var(--Colors-Neutral-600);
}

.site-breadcrumbs .woocommerce-breadcrumb a {
    color: var(--Colors-Neutral-600);
}

.tab-menu-randevu-inner {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.73);
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
}

.site-breadcrumbs .container {
    padding-top: 0;
    padding-bottom: 0;
}
.tab-menu-randevu {
    flex-direction: column;
}
.uzman-more .tab-content {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.73);
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
    padding: 18px;
    margin-bottom: 12px;
}
/* Tab-content accordion toggle */
.tab-container .tab-content { position: relative; }
.tab-container .tab-content .tab-acc-btn { 
	position: absolute; 
	right: 10px; 
	top: 10px; 
	background: #E9F3FF; 
	border: 1px solid #D5E6FF; 
	color: #244A94; 
	border-radius: 999px; 
	width: 34px; 
	height: 34px; 
	display: inline-flex; 
	align-items: center; 
	justify-content: center; 
	cursor: pointer; 
}
.tab-container .tab-content.collapsed > :not(.tab-acc-btn):not(.klinik) { display: none; }
.tab-container .tab-content.collapsed .klinik > :not(h5) { display: none; }
.tab-container .tab-content .tab-acc-btn svg { transition: transform .2s ease; }
.tab-container .tab-content.collapsed .tab-acc-btn svg { transform: rotate(-90deg); }
/* --- Uzman Accordion (Bootstrap-like) --- */
.uzman-accordion-nav { gap: .5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.uzman-accordion-nav .nav-link { background: #EDF6FF; color: #244A94; border-radius: 10px; padding: .5rem .9rem; font-weight: 600; }
.uzman-accordion-nav .nav-link.active { background: #244A94; color: #fff; }

.uzman-accordion .accordion-item { background: transparent; border: 0; margin-bottom: 12px; }
.uzman-accordion .accordion-button { background: #F4F9FF; color: #0C1B4D; border-radius: 12px; padding: .9rem 1rem; box-shadow: none; }
.uzman-accordion .accordion-button.collapsed { background: #F8FBFF; }
.uzman-accordion .accordion-button:after { display: none; }
.uzman-accordion .accordion-collapse { transition: height .2s ease, opacity .2s ease; }
.uzman-accordion .accordion-body { background: #FFFFFF; border-radius: 12px; padding: 1rem 1.1rem; border: 1px solid #E7EEF8; margin-top: .6rem; }
.uzman-accordion .klinik h5 { font-size: 18px; margin: 0 0 .6rem; color: #0C1B4D; }

@media (max-width: 767px) {
	.uzman-accordion-nav { gap: .35rem; }
	.uzman-accordion .accordion-button { padding: .8rem; }
	.uzman-accordion .accordion-body { padding: .9rem; }
}
/* removed empty ruleset: button.tab-acc-btn:before */

.tab-container .tab-content .tab-acc-btn {
    background-color: var(--Colors-Primary-700);
    top: 18px;
    right: 18px;
    width: 22px;
    height: 22px;
}

.tab-container .tab-content .tab-acc-btn svg {
    filter: brightness(0) invert(1);
    min-width: 23px;
}

.uzman-more .tab-content h3 {font-size: .875em;text-decoration: underline;}

.uzman-more .tab-content h5 {
    font-size: 16px;
    font-weight: 500;
    color: var(--Colors-Neutral-900);
    margin-bottom: 12px;
}

.tabs .klinik {
    margin-bottom: 0;
}

.uzman-more .tab-content {
    color: var(--Colors-Neutral-600, #6C6C77);
    font-size: 14px;
    font-weight: 500;
}

.uzman-more #tab2 ul li {
    position: relative;
    display: flex;
    padding: 8px 16px;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 25px;
    background: #efefefab;
}

.uzman-detail #tab2 ul li:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    box-shadow: inset 3px 0px 0 var(--lg-highlight), inset 0 0 2px var(--lg-highlight);
    pointer-events: none;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.uzman-detail #tab2 ul {display: flex;flex-direction: row;flex-wrap: wrap;list-style: none;padding: 0;gap: 8px;}
.ozet-card {
    position: relative;
    border-radius: 8px;
    border: 1px solid var(--Colors-Primary-400, #739FE5);
    background: rgba(97, 140, 220, 0.10);
    padding: 16px;
    margin-bottom: 10px;
}

.ozet-card-head .ozet-icon {max-width: 50px;position: absolute;left: 18px;top: 12px;}

.ozet-card-head {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

button.ozet-toggle {
    position: absolute;
    right: 18px;
    top: 18px;
    border: none;
    background: var(--Colors-Primary-400);
    border-radius: 9px;
    width: 24px;
    height: 24px;
    text-align: center;
    padding: 0;
}

.ozet-card-head h3 {
    padding-left: 32px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 3px;
}

.ozet-card-head .ozet-badges {
    padding-left: 32px;
}

button.ozet-toggle svg {
    width: 20px;
    height: 20px;
}

.uzman-detay-ozet {
    padding: 12px 0;
}

#ozetText {
   
    overflow: hidden;
    color: var(--Colors-Neutral-600, #6C6C77);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}
#ozetText br {
	display:none;
}
a.ozet-read-more {
    text-decoration: none;
    color: var(--Colors-Primary-500, #5080D9);
    font-size: 14px;
}

.btn-wa-support {
    width: 100%;
    border-radius: var(--8, 8px);
    background: var(--Colors-Primary-500, #5080D9);
    padding: 8px 0;
    font-size: 14px;
}
.service-modal .alert svg {
    filter: brightness(0);
}
.service-modal.modal-content{border-radius:20px;overflow:hidden}
.service-modal .modal-header{border-bottom:0;padding:20px 24px 0;align-items: center !important;justify-content: center;}
.service-modal .modal-title{font-weight:700;font-size: 1em;font-weight: 500;color: var(--Colors-Neutral-900, #28282B);width: 100%;text-align: center;}
.service-modal .modal-body{padding:16px 24px 24px}
.service-modal .alert{
	font-weight:500;background: var(--Colors-Primary-200); border: 0; border-radius: 12px; font-size: 12px; color: var(--Colors-Primary-800); padding: 8px 10px;
}
.service-modal .popup-options-scroll-wrapper{max-height:60vh;overflow:auto;padding-right:6px}
.service-modal .option-box{display:flex;flex-direction:column;gap:12px}
.service-modal .popup-option{border:1px solid #E7EAF0;border-radius:16px;padding: 18px;display:flex;justify-content:space-between;align-items:center;cursor:pointer;transition:all .2s;background:#fff}
    .service-modal .popup-option.offer .packet-offer span{background:rgba(255,255,255,.25);color:#fff}
.service-modal .popup-option:hover{box-shadow:0 4px 14px rgba(0,0,0,.06);transform:translateY(-1px)}
.service-modal .detail h3{margin:0 0 6px;font-size: 16px;margin-bottom: 2px;}
.service-modal .detail p.description{margin:0;color:#6b7280}
.service-modal .variation-count{font-size:14px;color: var(--Colors-Neutral-600, #6C6C77);margin: 0;padding: 0;}
.service-modal .price{display:flex;gap:8px;align-items:center}
.service-modal .price ins{color:#fff;background:transparent;border:1px solid rgba(255,255,255,.4);padding:6px 10px;border-radius:999px;text-decoration:none}
.service-modal .price .munutes{background: var(--Colors-Primary-600);color:#fff;padding:6px 10px;border-radius: 10px;}
.service-modal .popup-step2-buttons .popup-option{display:block}
.service-modal .button-fields-randevu{display:flex;gap:8px;justify-content:flex-end;margin-top:12px}
.service-modal .button-fields-randevu .cancel-btn{border:1px solid #E5E7EB;background:#fff;color:#111827;border-radius:10px;padding:.5rem .75rem}
.service-modal .button-fields-randevu .continue{background:#244A94;color:#fff;border-radius:10px;padding:.5rem .75rem;border:0}

.modal-header .btn-close {
    margin: 0;
    align-items: flex-end;
}

.popup-content-randevu {
    padding: 0;
    background: transparent;
}

.modal-md {
    min-width: 570px;
}



button.back-to-randevu-turu.btn-back {
    background: transparent;
    padding: 0;
}

button.back-to-randevu-turu {
    background: transparent;
    border: none;
    padding: 0;
    font-weight: 700;
}
.service-modal .popup-option {
    background: #FFFFFFBA;
    border: 1px dashed #E4E4E4;
}

.cizelge-wrapper .time.active {
    background: var(--Colors-Primary-400, #739FE5);
    color: #fff;
}

.input-container-randevu input.package {font-size: 16px;color: var(--Colors-Primary-600, #3F68B6);}

.input-container-randevu img.icon {
    background: #ecf1fb;
}

span.option-next {
    border-radius: 8px;
    background: var(--Colors-Primary-500, #5080D9);
    padding: 8px 32px;
    color: #fff;
    display: block;
    text-align: center;
}
/* Hide the side appointment panel while in step 2 */
.tab-menu-randevu.eh-hidden { display: none !important; }

/* Step 2 variation cards */
.popup-step2-variations .variation-option.card-like{
	position: relative;
	display: none; /* default hidden; shown via JS */
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 4px 16px rgba(0,0,0,0.06);
	padding: 20px;
	margin-bottom: 12px;
}
.popup-step2-variations .variation-option.card-like .card-left{min-width: 0;max-width: 63%;}
.popup-step2-variations .variation-option.card-like .packet-offer{display:flex;align-items: flex-start;gap:8px;flex-direction: column-reverse;}
.popup-step2-variations .variation-option.card-like .packet-name{font-size: 16px;font-weight: 500;margin:0;}
.popup-step2-variations .variation-option.card-like .packet-offer > span{display:inline-block;font-size:12px;color:#244A94;background:#EAF0FF;border-radius: 8px;padding: 5px 18px;position: absolute;right: 0;top: 0;}
.popup-step2-variations .variation-option.card-like .subdesc{margin:6px 0 10px;font-size: 11px;color: var(--Colors-Neutral-600, #6C6C77);}
.popup-step2-variations .variation-option.card-like .meta-pills{ display:flex; gap:8px; flex-wrap:wrap; }
.popup-step2-variations .variation-option.card-like .pill{display:inline-block;background:#F6F7F9;color:#4A4A4A;border-radius:999px;padding:8px 14px;font-weight: 500;font-size: 14px;box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);}
.popup-step2-variations .variation-option.card-like .price-number del{ color:#A0A0A0; margin-right:6px; }
.popup-step2-variations .variation-option.card-like .price-number ins{ text-decoration:none; font-weight:700; color:#1F396A; font-size:20px; }
.popup-step2-variations .variation-option.card-like .btn.btn-primary{ border-radius:12px; padding:10px 18px; }
.popup-step2-variations .variation-option.card-like.selected{ outline:2px solid var(--Colors-Primary-200); box-shadow: 0 0 0 4px rgba(166,225,216,0.3); }


.popup-option-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.popup-step2-variations .variation-option.card-like .card-right {
    text-align: right;
    gap: 13px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 20px;
}

.popup-step2-variations .variation-option.card-like .card-right .price-number ins {
    font-weight: 500;
}
/* Step 2: hide info alert and show selected tür summary */
.eh-step-2 .service-modal .alert.alert-warning{ display:none !important; }
#popup-step2 .step2-selected-summary{ margin: 0 0 12px; }
#popup-step2 .summary-card{ display:flex; align-items:center; justify-content:space-between; gap:12px; padding:14px 16px; border-radius:14px; background:#F1F7FF; border:1px solid #D3E6FF; }
#popup-step2 .summary-left{ display:flex; flex-direction:column; gap:6px; }
#popup-step2 .summary-title{ font-weight:700; color:#0F2D59; margin:0; font-size:15px; }
#popup-step2 .summary-sub{ color:#5E6A7A; margin:0; font-size:13px; }
#popup-step2 .summary-pills{ display:flex; gap:8px; flex-wrap:wrap; }
#popup-step2 .summary-pill{ display:inline-block; background:#ffffff; color:#244A94; border:1px solid #CFE0FF; border-radius:999px; padding:6px 12px; font-weight:600; font-size:12px; }
.cizelge-order-item-new {
    background: transparent;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.73);
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
    flex-direction: column;
}

.cizelge-order {
    height: auto;
    max-height: max-content;
}

.cizelge-order-item-new .appointment-list {
    width: 100%;
}

.cizelge-order-item-new .appointment-row {
    background: transparent;
    padding: 0;
}

.appointment-summary .variation-name {
    font-weight: 500;
    color: var(--Colors-Primary-600);
    font-weight: 500;
}

.remove-variation-appointments {
    font-size: 13px;
}


.appointment-summary {
    width: 100%;
}

.appointment-summary .appointment-count-display {
    background: var(--Colors-Primary-700);
    color: #fff;
    border-color: transparent;
}

.cizelge-order-item-new .appointment-row span {
    color: var(--Colors-Neutral-400);
    font-size: 14px !important;
    font-weight: 500 !important;
}
.cizelge-order-date:before,
.cizelge-order-time:before,
.gorusme-tip:before {
    content: '';
    background: url(../images/_Calendar.svg)no-repeat center center;
    width: 24px;
    height: 24px;
    background-size: cover !important;
}
.cizelge-order-time:before{
    background:url(../images/_Clock.svg)no-repeat center center;
}
.gorusme-tip:before{
    background:url(../images/_Video.svg)no-repeat center center;
}
p.limit-note {
    margin-top: 20px;
}

.randevu-cizelge-box .btn-primary {
    background: var(--Colors-Primary-500);
}

.cizelge-order {
    border: none;
    margin-bottom: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.73);
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
}

.cizelge-order-item-new {
    border: none;
}
.address-container-randevu {
    background: #f8f8f8;
    padding: 14px 16px;
    border: none;
    font-size: 14px;
    margin-top: -30px;
    display: flex;
    align-items: center;
}

.address-container-randevu:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 1px 0px 0 var(--lg-highlight), inset 0 0 2px var(--lg-highlight);
    pointer-events: none;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 0;
}

.address-container-randevu a {
    text-decoration: none;
    color: var(--Colors-Neutral-900, #28282B);
}


.address-container-randevu .map-icon {position: relative;top: 0 !important;left: 0;transform: none;margin-right: 5px;}

.address-container-randevu a small {
    color: var(--Colors-Neutral-600, #6C6C77);
    font-size: 10px;
    display: inline-block;
}

.address-container-randevu a span {
    color: var(--Colors-Neutral-900, #28282B);
}
.address-container-randevu a span{
	white-space:initial;
}
.service-modal .price .munutes {
    border-radius: 25px;
}
.checkout-cols .alert-warning {
    border-color: var(--Colors-Primary-200);
    background: rgba(97, 140, 220, 0.10);
    font-size: 14px;
    color: var(--Colors-Neutral-600, #6C6C77);
}
.checkout-cols .alert-warning strong{
    color:#0e0e0e;
}
.checkout-box {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
    margin-bottom: 20px;
}

.checkout-billing {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.73);
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
    border: none;
}

.addresses.address-billing {
    margin-bottom: 0;
}

.page-content .address-item {
    position: relative;
    width: 33%;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
}

.checkout-box p.addresses-p.billing-p {
    font-size: 14px;
    color: var(--Colors-Neutral-900, #28282B);
}

.page-content .address-item:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 2px 0px 0 var(--lg-highlight), inset 0 0 2px var(--lg-highlight);
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.address-name {
    color: var(--Colors-Neutral-700, #56565D);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.address-cotent {white-space: nowrap;text-overflow: ellipsis;overflow: hidden;max-width: 90%;font-size: 11px !important;}

.address-cotent br {
    display: none;
}

#customer_details > div {
    gap: 0;
    justify-content: space-between !important;
}

form.woocommerce-checkout .row .checkout-cols:first-child {
    width: 61%;
}

/* removed: #order-review .uzman-item {} */

#order_review .uzman-item .uzman-list-end {
    display: none !important;
}

#order-review .uzman-item > .row {
    flex-direction: row !important;
}

#order_review .uzman-item.card>.row {
    flex-direction: row;
    /*justify-content: space-between;*/
	gap: 0;
}
#order_review .uzman-item.card>.row>*{
	padding-right:0;
}

#order_review .uzman-item.card>.row>.uzman-img {
    max-width: 46%;
}

#order_review .uzman-item.card>.row>.col {
    max-width: 58%;
}

#order_review .uzman-item.card>.row>.uzman-img img {
    height: 190px;
    width: 200px;
    border-radius: 8px;
    object-fit: cover;
    object-position: top;
}

#order_review .uzman-item.card>.row {
    align-items: flex-start;
}

#order_review .uzman-list-cats {
    display: none !important;
}

#order_review .small.uzman-list-lang {
    display: none;
}

#order_review .eh-badge-right {
    text-align: left;
    align-items: flex-start !important;
}

#order_review .uzman-item .uzman-list-cat {
    margin-bottom: 10px;
}


body.page-odeme .order-variation-card {
    border: none;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
    padding: 18px;
}

body.page-odeme .order-variation-card .ovc-title {
    font-size: 16px;
    font-weight: 400;
}

body.page-odeme .order-variation-card .pill {
    position: relative;
    font-size: 14px;
    padding: 8px 12px;
}

/* removed empty rule: body.page-odeme .order-variation-card .pill:before */

body.page-odeme .order-variation-card .pill:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 2px 0px 0 var(--lg-highlight), inset 0 0 2px var(--lg-highlight);
    pointer-events: none;
    width: 100%;
    height: 100%;
}

body.page-odeme .order-variation-card .ovc-price {
    font-size: 20px;
    font-weight: 500;
}

#order_review .shop_table .cart_item {
    display: none;
}

#order_review .shop_table {
    border: none;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
    padding: 18px;
}

.woocommerce-checkout form.checkout_coupon {
    border: none;
    border-radius: 18px;
    background: transparent;
    padding: 0;
}

.woocommerce-checkout form.checkout_coupon p {
    font-size: 13px;
    color: var(--Colors-Neutral-600, #6C6C77);
    margin-bottom: 0;
}

.woocommerce table.shop_table td {
    padding: 0;
    border: none;
}

.woocommerce-checkout form.checkout_coupon .form-row-first {
    width: 64%;
}

.woocommerce-checkout form.checkout_coupon .form-row-last {
    width: 36%;
}

.woocommerce-checkout form.checkout_coupon .button {
    border-radius: var(--8, 8px);
    background: var(--Colors-Primary-500, #5080D9);
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
    /*padding: 0 32px;*/
}

input#coupon_code {
    border-radius: 8px;
    border: 1px solid #FFF;
    background: var(--Colors-Neutral-100, #F9F9F9);
}

#order_review tr.order-total {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 18px;
    background: #fff;
    padding: 18px;
    justify-content: space-between;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.73);
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
    margin: 18px 0;
    font-size: 16px;
    font-weight: 500;
}

#order_review tr.order-total td,#order_review tr.order-total th {
    border: none !important;
}

#order_review tr.order-total strong {
    font-weight: 600;
    font-size: 20px;
}

#order_review tr.order-total th {
    font-weight: 500;
}

.woocommerce-checkout form .form-row.place-order {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.73);
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
}

.woocommerce form .form-row .input-checkbox {
    width: 25px;
    height: 21px;
    border: 1px solid var(--Colors-Neutral-300, #B5B5BE);
}

.place-order label a {
    text-decoration: none;
    color: var(--Colors-Primary-500, #5080D9);
    font-weight: 500;
    font-size: 13px;
}

.woocommerce .place-order label {
    text-transform: lowercase;
}

.woocommerce .place-order label a {
    text-transform: capitalize;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {border-radius: var(--8, 8px);background: var(--Colors-Primary-500, #5080D9);padding: 16px 32px;font-size: 14px;font-weight: 500;}
.checkout-billing{
    /*display:block !important;*/
}
.woocommerce-checkout form .form-row input.input-text, .woocommerce-checkout form .form-row textarea, .woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    border: none;
    background: var(--Colors-Neutral-100) !important;
    border-radius: 8px;
    padding: 12px;
    font-size:14px;
    font-weight: 500;
    color: var(--Colors-Neutral-400, #9C9CA7);
}

body.page-odeme .has-fatura-tipi-cards .fatura-tipi-cards + span {
    display: none;
}

.woocommerce form .form-row label {
    color: var(--Colors-Neutral-900, #28282B);
    font-weight: 500;
    font-size: 1em;
}

span.select2-selection {
    border: none !important;
    background: #f9f9f9 !important;
}

.select2-selection__rendered {
    font-size: 14px !important;
}

.address-name input[type='radio']:after,.address-name input[type='radio']:checked:after {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 5px;
}

.address-name input[type='radio']:checked:after {
    background: var(--Colors-Primary-400);
}

body.page-odeme .has-fatura-tipi-cards .ft-card {
    padding: 16px 18px;
    border: none;
    cursor: pointer;
    position: relative;
}

body.page-odeme .has-fatura-tipi-cards .ft-card .ft-title {
    font-weight: 500;
    color: var(--Colors-Neutral-700, #56565D);
    font-size: 1em;
}

body.page-odeme .has-fatura-tipi-cards .ft-card .ft-content {
    gap: 0;
	max-width: 100%;
}

body.page-odeme .has-fatura-tipi-cards .ft-card .ft-desc {
    line-height: 1.3;
    font-weight: 500;
    color: var(--Colors-Neutral-400, #9C9CA7);
    font-size: 11px;
    max-width: 100%;
}

body.page-odeme .has-fatura-tipi-cards .ft-card .ft-check {width: 25px;min-width: 25px;height: 25px;border: 1px solid #ddd;background: #fff;}

.ft-card.active .ft-check {
    background: #749fe5 !important;
}

.ft-card .ft-check svg {
    opacity: 0;
}

label.ft-card:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 2px 0px 0 var(--lg-highlight), inset 0 0 2px var(--lg-highlight);
    pointer-events: none;
    width: 100%;
    height: 100%;
}

body.page-odeme .has-fatura-tipi-cards .ft-card.active {
    background: #fff;
}

body.page-odeme .has-fatura-tipi-cards .ft-card {
    background: transparent !important;
}
.woocommerce form .form-row{
    margin-bottom:20px;
}
.place-order .form-row {
    margin-bottom: 5px !important;
}

.place-order label {
    color: var(--Colors-Neutral-400, #9C9CA7) !important;
    font-size: 14px !important;
}
.eh-uzman-list-quick .eh-glass:before {
    opacity: 0;
}
.header-buttons .btn:not(.dropdown-toggle) {
    border: 1px solid;
    border-radius: 25px;
    padding-left: 18px;
    padding-right: 18px;
}
.header-buttons .dropdown-menu {
    border: none;
    border-radius: 20px;
    border: 1px dashed #efefef;
    min-width: 245px;
    padding: 0 !important;
    right: 0;
}

.header-buttons .dropdown-menu .item-text {
    display: flex;
    flex-direction: column;
}

.header-buttons .dropdown-menu .dropdown-item {
    display: flex;
    gap: 5px;
    padding: 12px 16px;
    align-items: center;
}

.header-buttons .dropdown-menu .item-text .item-title {
    color: var(--Colors-Primary-400, #739FE5);
    font-weight: 500;
    font-size: 14px;
}

.header-buttons .dropdown-menu .item-text .item-sub {
    font-size: 11px;
    color: var(--Colors-Neutral-600, #6C6C77);
    font-weight: 500;
    line-height: 1.3;
}

.header-buttons .dropdown-menu .dropdown-item .dropdown-divider {
    display: none !important;
}

.header-buttons .dropdown-menu .dropdown-divider {
    margin: 0;
}


.header-buttons .dropdown-menu .dropdown-item .item-icon {
    margin-right: 8px;
}

.header-buttons .btn {
    border: none;
}

.header-buttons .dropdown:hover .dropdown-menu {
    display: block;
}

.header-buttons .dropdown:hover>button {
    color: var(--Colors-Primary-800);
}

.header-buttons .dropdown>button {
    transition: var(--transition);
}
.header-buttons .dropdown-menu .dropdown-item:hover {
    background: transparent;
}

.header-buttons .dropdown-menu .dropdown-item:hover {
    opacity: .7;
}

.header-buttons .dropdown-menu .dropdown-item {
    transition: all .3s linear;
}

#mainNavbar ul li a {
    transition: var(--transition);
}

#mainNavbar ul li a:hover {
    color: var(--Colors-Primary-600);
}

.home .head .navbar:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 0px -3px 0 rgb(255 255 255 / 2%), inset 0 0 4px rgb(255 255 255 / 58%);
    pointer-events: none;
    width: 100%;
    height: 100%;
}
.eh-searchbox .input-group-plus img {
    filter: brightness(0) invert(1);
}
input {
    box-shadow: none;
}

input {
    outline: none !important;
    box-shadow: none !important;
}

.searchbox-input .form-control {
    font-weight: 500;
}
.search-result-wrapper > div {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 5px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 15px;
}
.search-result-wrapper span {
	font-size: 14px;
	font-weight: bold;
	color: #000;
}
.search-result-wrapper a {
	font-size: 14px;
	color: #757575;
}

.search-result-wrapper {
    position: relative;
    padding: 18px;
    border: none;
}
.search-input-box .search-input {
    color: #fff;
}
	/* Category picker styles (scoped) */
	.input-group-cats{ position: relative; display:flex; align-items:center; justify-content:center; }
	.input-group-cats .plus-icon{ width:24px; height:24px; opacity:.9 }
	.input-group-cats .selected-cat-label{ margin-left:.35rem; font-weight:600; color:#425E7A; white-space:nowrap; }
	.cat-picker{position:absolute;top: calc(100% + 20px);left: -15px;background: rgba(25,49,95,0.37);backdrop-filter:saturate(180%) blur(6px);box-shadow:0 8px 24px rgba(30,41,59,.15);border-radius:14px;padding: 16px;z-index:50;min-width: 240px;}
	.cat-picker .cat-option{position: relative;display:flex;align-items:center;gap:.6rem;width:100%;text-align:left;border: none;color:#243B53;padding: 0;border-radius: 50px;cursor:pointer;transition:.2s ease;color: #fff;background: transparent;margin-bottom: 6px;background: linear-gradient(39deg, rgba(255,255,255,.1), rgba(255,255,255,.1));}
	.cat-picker .cat-option:hover{ background:rgba(99,115,129,.18); }
	.cat-picker .ico{ display:inline-flex; width:36px; height:36px; border-radius:999px; background:#E6EDF5; align-items:center; justify-content:center; }
	.cat-picker .lbl{font-weight: 500;font-size: 14px;}
	.input-group-cats.open .cat-picker{display: flex;}

span#catPickerBtn {
    cursor: pointer;
}

.cat-picker .cat-option:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 0px 0px 0 var(--lg-highlight), inset 0 0 3px var(--lg-highlight);
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.cat-picker .cat-option:last-child {
    margin: 0;
}
.cat-picker .cat-option .ico {background: var(--Colors-Primary-400);}
.cat-picker .cat-option .ico {background: var(--Colors-Primary-400);}

.input-group-cats .selected-cat-label {
    background: transparent;
    border-radius: 50px;
    padding: 0 15px;
    font-weight: 500;
    color: #fff;
}

span.selected-cat-label:after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 0px 0px 0 var(--lg-highlight), inset 0 0 3px var(--lg-highlight);
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.input-group-cats .selected-cat-label:before {
    content: '+';
    color: #0e0e0e;
    font-size: 13px;
    opacity: .3;
    margin-right: 8px;
    fill: var(--Colors-Neutral-900, #28282B);
}
#yuzyuze-pane .select2 {
    display: flex;
    align-items: center;
}

#yuzyuze-pane .select2 span#select2-sehir-np-container {
    background: transparent;
    padding: 0 15px;
    color: var(--Colors-Primary-600);
}

#yuzyuze-pane .select2-selection--single {background: var(--Colors-Primary-200) !important;color: #fff !important;border-radius: 10px;margin-left: 6px;}

#yuzyuze-pane .select2-selection__arrow {
    display: none !important;
}
.searchbox-input .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0 13px;
    color: var(--Colors-Primary-600);
}
#yuzyuze-pane input.form-control.search-input {
    font-size: 13px;
}
.eh-featured .uzman-list-lang {
    display: none;
}

.eh-featured .uzman-item>.row {display: flex !important;}

.eh-featured .uzman-item>.row>div {
    width: 100%;
    max-width: 100%;
}

.eh-featured .uzman-img img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 8px;
}


.eh-featured .uzman-item .eh-badge-online {right: 0;position: relative;margin-right: 0;padding: 0;}

.eh-featured .uzman-item.card {
    position: relative;
    background: rgba(255,255,255,.7);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    backdrop-filter: blur(8px) saturate(140%);
}


.eh-featured .uzman-item .eh-badge-right {
    position: absolute;
    top: 30px;
    right: 30px;
}

.eh-featured .uzman-item .eh-badge-online .bg-success-subtle {
    width: 100%;
    padding-right: 15px;
}

.eh-featured .eh-badge-c.eh-exp-badge {
    display: none;
}

.eh-featured .eh-badge-c.eh-prime-badge {
    position: absolute;
    top: 210px;
}

.eh-featured .uzman-list-cats {
    display: none !important;
}

.eh-featured .uzman-list-end {
    order: 2;
    text-align: left;
    align-items: flex-start !important;
}

.eh-featured .uzman-item>.row>div .uzman-img {
    order: 1;
}

.eh-featured .uzman-item>.row>div .col {
    order: 3;
}

.eh-featured .uzman-item>.row>div {
    display: flex;
}

.eh-featured .uzman-list-end .price-online, .eh-featured .uzman-list-end .price-yuzyuze, .eh-featured .uzman-list-end .price-any {
    display: none !important;
}

.eh-featured .uzman-item>.row>div.uzman-img {
    order: 1;
    padding: 16px 8px;
    padding-bottom: 0;
}

.eh-featured .uzman-item>.row>div.col {
    order: 3;
	justify-content: space-between;
}

.eh-featured .uzman-item .btn.btn-primary {
    display: none;
}

.eh-featured .uzman-list-end .small {
    text-align: left;
}

.eh-featured .uzman-list-end .small strong {
    font-weight: 500;
    padding-left: 26px;
}

.eh-featured .uzman-item h5 {
    display: flex;
    justify-content: space-between;
    min-height: 40px;
}

.eh-featured .uzman-item h5 svg {margin-left: auto;}

.eh-featured .uzman-item>.row>div.col>div {width: 100%;max-width: 100%;flex: 0 0 100%;}

.eh-featured-swiper:after {
    content: '';
    position: absolute;
    width: 80%;
    height: 100%;
    background: red;
    top: 0;
    right: 0;
    border-radius: 20px;
    background: var(--Colors-Primary-700, #315292);
}

.eh-featured-swiper {
    padding: 18px;
}

.eh-featured .uzman-item.card:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 0px 0px 0 var(--lg-highlight), inset 0 0 3px var(--lg-highlight);
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.eh-featured .fd-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.eh-featured .eh-title {
    align-self: flex-start;
}
.eh-event-list .eh-panel-head {
    justify-content: space-between;
    display: flex;
    align-items: center;
	margin-bottom:32px;
}



.eh-event-list .eh-panel-body {
    padding: 0 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
    backdrop-filter: blur(6px);
}

.event-swiper .event-item {
    padding: 14px;
	margin:25px 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.73);
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
}

.event-item .event-date {
    padding: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,.6);
    font-size: 11px;
    padding: 3px 7px;
    backdrop-filter: blur(1px);
    font-weight: 500;
}

.event-swiper .event-item figure {
    position: relative;
}
.eh-services-list .eh-panel-head {
    gap: 10px;
    margin-bottom: 30px;
}

.eh-services-list .service-card {
    background: rgba(255,255,255,.4);
}
.eh-blogs-inner .eh-swiper-buttons > div {
    color: #fff;
    border-color: #fff;
}

.eh-blogs .blog-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.eh-blogs .blog-copy .intro {
    padding: 0;
    font-size: 1em;
    font-weight: 400;
}

.eh-blogs .btn-glass {
    align-self: flex-start;
}


/* Blog slider numbered pagination bullets */
.eh-blogs .eh-swiper-pagination {
	display: flex;
	align-items: flex-end;
	gap: 8px;
}
.eh-blogs .eh-swiper-pagination .swiper-pagination-bullet {
	position: relative;
	width: 40px !important; /* override any generic bullet sizes */
	height: 24px !important; /* room for the index above the bar */
	background: transparent !important; /* we'll draw the bar via ::after */
	opacity: 1; /* let us control opacity via inner elements */
}
.eh-blogs .eh-swiper-pagination .swiper-pagination-bullet::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 5px;
	border-radius: 5px;
	background: #ffffff;
	opacity: 0.5;
}
.eh-blogs .eh-swiper-pagination .swiper-pagination-bullet-active::after {
	background: var(--Colors-Primary-500);
	opacity: 1;
}
.eh-blogs .eh-swiper-pagination .eh-bullet-index {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	font-size: 12px;
	line-height: 1;
	color: #ffffff;
	opacity: 0.75;
	font-weight: 500;
}
.eh-blogs .eh-swiper-pagination .swiper-pagination-bullet-active .eh-bullet-index {
	opacity: 1;
}
.eh-swiper-pagination > span {
    width: 40px;
    border-radius: 5px;
    height: 5px;
    background: #fff;
}

.eh-blogs-inner .eh-swiper-buttons {
    width: 90px;
}

.eh-blogs .blog-post-item .post-title {
    min-height: 55px;
    height: 55px;
    overflow: hidden;
}

.eh-blogs .eh-swiper-pagination .swiper-pagination-bullet::after {
    background: #fff;
    bottom: -2px;
}

.eh-blogs .eh-swiper-pagination .eh-bullet-index {
    font-size: 1em;
	margin-bottom: 0;
}

.eh-blogs .eh-swiper-pagination .swiper-pagination-bullet span {
    opacity: 0;
}

.eh-blogs .eh-swiper-pagination .swiper-pagination-bullet-active span {
    opacity: 1;
}
.eh-sss-video-banner img {
    width: 100%;
}
footer.site-footer {
    margin-top: 25px;
}
/* Prime Uzman toggle styles */
.prime-filter .eh-toggle-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border-radius: 16px;
	background: linear-gradient(135deg, #3F68B6 0%, #5F81C9 100%);
	color: #fff;
}
.prime-filter .eh-toggle-wrapper label {
	margin: 0;
	color: #fff;
}
.prime-filter .eh-toggle-wrapper label i img {
	display: inline-block;
	width: 16px;
	height: 16px;
}
.prime-filter .prime-toggle {
	appearance: none;
	-webkit-appearance: none;
	width: 42px;
	height: 24px;
	border-radius: 999px;
	background: #E6EAF6;
	position: relative;
	outline: none;
	cursor: pointer;
	transition: background-color .2s ease;
	border: none;
}
.prime-filter .prime-toggle::before {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 1px 2px rgba(0,0,0,.15);
	transition: left .2s ease;
}
.prime-filter .prime-toggle:checked {
	background: #00C389;
}
.prime-filter .prime-toggle:checked::before {
	left: 21px;
}
.prime-filter .eh-toggle-wrapper {
    background: url(../images/_btnBg.svg) !important;
}
.prime-filter .eh-toggle-wrapper {
    background-size: cover !important;
    border-radius: 12px !important;
    background-position: center center !important;
    padding: 12px;
    font-size: 1em;
    font-weight: 500;
}

.prime-filter .eh-toggle-wrapper label i {
    margin-top: -3px;
}

.prime-filter .prime-toggle:checked {
    background: var(--Colors-Primary-300);
}
li.eh-filter-item label {
    cursor: pointer;
}
.uzman-detail-inner .small.uzman-list-lang {
    color: var(--Colors-Primary-500, #5080D9) !important;
}

.eh-exp-badge .badge span {
    font-weight: 500;
}

.uzman-item .eh-prime-badge span {
    padding: 10px 12px;
}

.uzman-item .badge.bg-success-subtle {
    color: #76c27e !important;
    font-weight: 500;
    font-size: 14px;
    background: transparent !important;
}

.uzman-item .eh-badge-online {
    border-radius: 10px;
    background: #EAF7EE !important;
}
.list-wrapper .uzman-img img {
    margin-top: 12px;
}
.order-expert-card .uzman-item.card {
	padding: 16px 8px !important;
}


.order-expert-card .uzman-item.card .eh-badge-right{
	flex-direction: row;
}

.order-expert-card .uzman-item.card .eh-badge-right .eh-prime-badge{
	min-width: 64px;
}

.order-expert-card .uzman-item.card .eh-badge-right .eh-prime-badge .badge{
	padding-left:8px;
	font-size:10px;
}

#order_review .uzman-item.card>.row>.uzman-img img {
    width: 180px;
    height: 170px;
    margin-top: 11px;
}

#order_review .eh-badge-online {
    display: none !important;
}
.page-template-template-etkinlikler .site-breadcrumbs,
.post-type-archive-hizmet .site-breadcrumbs,
.page-danisma-kurulumuz .site-breadcrumbs {
    display: none !important;
}

.event-list .eh-uzman-list-quick li {
    flex: 0 0 13%;
}

.event-list .eh-uzman-list-quick {
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    overflow: scroll;
}

.event-list .eh-uzman-list-quick li a {
    height: 50px;
    white-space: nowrap;
}
.eh-filters-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eh-filters-inner-top {
    margin-bottom: 30px;
}

.eh-filters-in h1 {
    font-size: 2em;
}

.eh-filters-in .eh-searchbox {
    width: 100%;
}

.eh-filters-in .eh-searchbox {
    width: 50%;
    margin: 0;
    padding: 0;
}

.eh-filters-in .eh-searchbox .searchbox-input {
    padding: 10px 12px;
    border-radius: 12px;
    border: 2px solid #FFF;
    background: rgba(24, 63, 136, 0.37);
    color: #fff;
}

.eh-filters-in .eh-searchbox .input::placeholder {
    color: #fff;
}

.eh-filters-in .searchbox-input .form-control {
    color: #fff;
}

.eh-filters-in .searchbox-input .form-control::placeholder {
    color: #fff;
}

.eh-filters-in #voiceBtn {
    filter: brightness(0) invert(1);
}
.event-list .eh-uzman-list-quick {
    gap: 10px !important;
}
.list-wrapper .events-wrapper .event-item {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.73);
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
}

.list-wrapper .event-item .event-date {
    top: 30px;
    right: 30px;
}
.hizmet-wrapper .hizmet-item {
    display: flex;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.73);
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
    padding: 18px;
    gap: 18px;
    text-decoration: none;
    margin-bottom: 18px;
}

.hizmet-wrapper .hizmet-item img {
    height: 143px;
    width: 143px;
    object-fit: cover;
    border-radius: 8px;
    max-width: 143px;
    min-width: 143px;
}

.hizmet-wrapper {
    display: flex;
    flex-direction: column;
}

.hizmet-item .hizmet-item-title {
    color: var(--Colors-Neutral-900, #28282B);
}

.hizmet-item .hizmet-item-title h3 {
    font-size: 1em;
}

.hizmet-item .hizmet-item-title .cat-name {
    display: none;
}

.hizmet-item p.description {
    overflow: hidden;
    color: var(--Colors-Neutral-600, #6C6C77);
    text-overflow: ellipsis;
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 17px;
}

.hizmet-item-inner {
    display: flex;
    flex-direction: column;
}

.hizmet-item-inner .konum {
    order: 3;
}

.hizmet-item-inner .konum:before {
    background: url(../images/_Location.svg);
}

.hizmet-item-inner .konum {
    color: var(--Colors-Primary-500, #5080D9);
    text-align: center;
    font-size: 12px;
}
.hizmet-item-inner .konum .btn {margin-left: auto;background: var(--Colors-Primary-500);border-color: var(--Colors-Primary-500);padding: 8px 32px;}

.hizmet-item-inner .konum:before {
    background-size: contain;
}

.hizmet-item-inner .konum {
    font-size: 13px;
}
/*
.register-layout .register-layout__media:before {
    content: '';
    background-image: url('../images/_FormYazi.svg');
}
.uzman-register .register-layout .register-layout__media:before {
    background-image: url('../images/_FormYazi2.svg');
}
	*/
.etkinlik-item-yeni .uzman-img img {
    margin-top: 13px;
}

/* .uzman-gallery { } removed: empty rule */

.etkinlik-tab-wrap .uzman-gallery {
    width: 100%;
    margin: 0;
}

.etkinlik-tab-wrap .uzman-gallery img {
    width: 100%;
    object-fit: cover;
}

.etkinlik-tab-wrap .desktop-tabs {
    justify-content: flex-start;
}

.etkinlik-tab-wrap .uzman-more .tab-content {
    font-size: 13px;
}

.etkinlik-tab-wrap .uzman-more .tab-content h2,.etkinlik-tab-wrap .uzman-more .tab-content h3 {
    font-size: 17px;
    color: var(--Colors-Neutral-600);
}
.etkinlik-tab-wrap .uzman-detail-inner {
    margin-bottom: 24px;
}
.etkinlik-tab-wrap .uzman-detail-inner .uzman-item.card {
    background: #fff;
}
.register-layout .register-layout__media:before {
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 70px);
    top: 20px;
    left: 10px;
	/* padding removed (was empty) */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.register-layout .register-layout__media {
    position: relative;
}
.register-layout .register-layout__media:before {
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 70px);
    top: 20px;
    left: 10px;
	/* padding removed (was empty) */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.register-layout .register-layout__media {
    position: relative;
}
.uzman-detail-inner .small.uzman-list-lang img {
    width: 24px;
    height: 25px;
    vertical-align: middle !important;
    margin-right: 0px !important;
}

.hizmet-item-yeni .small.uzman-list-lang {
    margin: 8px 0 0;
}

.hizmet-tab-wrap .tab-menu-randevu-inner .iletisim-thumb img {
    width: 80px;
    height: 80px;
}

.hizmet-tab-wrap .tab-menu-randevu-inner .bg-light {
    background: var(--Colors-Primary-100) !important;
}

.hizmet-tab-wrap .tab-menu-randevu-inner .bg-light .small {
    font-size: .875em;
    color: var(--Colors-Primary-400);
    font-weight: 500 !important;
}

.hizmet-tab-wrap .tab-menu-randevu-inner .bg-light .small + div {
    font-weight: 500 !important;
}

.hizmet-tab-wrap .iletisim-card {
    padding: 0 !important;
    box-shadow: none !important;
}

/* removed empty rule: ul.list-unstyled.m-0.d-flex.flex-column.gap-2.text-primary */

.hizmet-tab-wrap .iletisim-card li {
    color: var(--Colors-Primary-500, #5080D9);
    font-weight: 500;
    font-size: 14px;
}
.hizmet-tab-wrap iframe {
    border-radius: 20px;
    width: 100%;
    margin-top: 20px;
}
.picker-confirm {
    color: #05a5ab !important;
}

.picker-picked {
    color: #01a7ac !important;
}
/* Uzman Register Page Styles */
img.register-bg { display: none; }
					.uzman-register .list-header { display: none; }
					.uzman-register .list-body { margin: 0; background: linear-gradient(180deg, #f3f6ff 0%, #eef2ff 100%); padding: 48px 0; }
					.register-layout { 
						display: flex; 
						/*flex-wrap: wrap;*/
						gap: 48px; 
						align-items: stretch; 
						background: #ffffff; 
						border-radius: 32px; 
						padding: 48px; 
						box-shadow: 0 24px 60px rgba(23, 43, 99, 0.08); 
					}
					.register-layout__media { flex: 1 1 50%; min-height: 480px; display: flex; align-items: center; justify-content: center; }
					.register-layout__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 32px; }
					.register-layout__form { flex: 1 1 50%; display: flex; align-items: center; }
					.register-layout__form .register-form { width: 100%; box-shadow: none; padding: 0; }
					@media (max-width: 1199px) {
						.register-layout { padding: 40px; }
					}
					@media (max-width: 991px) {
						.register-layout { flex-direction: column; padding: 36px; }
						.register-layout__media { min-height: 320px; }
					}
					@media (max-width: 767px) {
						.register-layout { padding: 28px; }
						.register-layout__media { min-height: 220px; }
					}
	.page-template-template-uzman_register_new .mobile-bars {
		display: none !important;
	}
					.register-layout .register-layout__media {
		max-width: 45%;
		padding: 10px;
		background: transparent;
	}

	.register-layout .register-layout__form.side {
		width: 50%;
	}

	.register-form:not(.uzman-dogrula .register-form) {
		width: 100%;
		/*padding: 3em 0;*/
	}

	.uzman-dogrula .register-form{
		width: 100%;
	}
	.uzman-dogrula .register-form input[type="tel"] {
		padding-left: 100px !important;
	}
	.page-dogrula .iti.iti--container{
		z-index: 100000;
	}

	

	@media (max-width: 576px){
		.uzman-dogrula .register-form{
			padding: 3em 4px;
		}

		.uzman-dogrula .note{
			text-align: center;
		}
	}

	.register-layout__media img {
		object-position: center;
		border-radius: 25px;
	}
	.register-form>p {
		text-align: center;
		color: #838390;
		margin-bottom: 5px;
	}

	.register-form h2 b {
		color: var(--Colors-Primary-500);
	}

	.register-layout {
		padding: 0 48px 0 0;
	}

	.register-layout .register-layout__media {
		align-items: flex-start;
	}

	.register-layout .register-layout__form.side {
		padding-top: 50px;
	}

	.form-note a {
		color: #7dbcb0;
	}

	.register-form span {
		font-size: 1em;
	}

	span.is-member {
		margin-bottom: 30px;
	}

	.register-form .btn-primary {
		border-radius: 9px;
		text-transform: capitalize;
		font-weight: 700;
		font-size: 1em;
		padding: 8px 0;
	}

	.register-layout .register-layout__media>picture {
		height: 100%;
	}

	.uzman-register .list-body {
		background: #f5fbfa;
	}
	img.register-bg {
		display: none;
	}
	.custom-registration-form--multi .register-step .form-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px 24px;
	}
	.uzman-register .list-header {
		display: none;
	}

	.uzman-register .list-body {
		margin: 0;
		background: #f8f8f8;
		padding: 2em;
	}

	.register-form input:not([type=checkbox]) {
		background: #F9F9F9;
		border: none !important;
		border-radius: 8px;
	}

	.register-form input:not([type=checkbox])::placeholder {
		color: #9C9CA7;
		font-size: 14px;
	}
	.register-form input:not([type=checkbox]){
		padding-left:18px !important;
	}

	.custom-registration-form--multi { width: 100%; }
	.custom-registration-form--multi .register-step { transition: opacity 0.25s ease, transform 0.25s ease; }
	.custom-registration-form--multi .register-step[hidden] { opacity: 0; pointer-events: none; transform: translateX(16px); }

	.custom-registration-form--multi .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 24px; }
	.custom-registration-form--multi .form-group { display: flex; flex-direction: column; gap: 8px; }
	.custom-registration-form--multi .form-group--full { grid-column: 1 / -1; }

	.custom-registration-form--multi .form-group label { font-size: 14px; font-weight: 600; color: #14213d; }
	.custom-registration-form--multi input[type="text"],
	.custom-registration-form--multi input[type="email"],
	.custom-registration-form--multi input[type="number"],
	.custom-registration-form--multi input[type="tel"],
	.custom-registration-form--multi input[type="password"],
	.custom-registration-form--multi select { border: 1px solid #cdd8ff; background: #F9F9F9; border-radius: 12px; padding: 14px 16px; font-size: 15px; color: #1a2341; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
	.custom-registration-form--multi input:focus,
	.custom-registration-form--multi select:focus { outline: none; border-color: #4d6bff; box-shadow: 0 0 0 3px rgba(77, 107, 255, 0.15); }
	.custom-registration-form--multi input::placeholder { color: #9aa5c0; }

	.custom-registration-form--multi .phone-field input[type="tel"] { padding-left: 100px !important; }

	.form-note { margin-top: 18px; font-size: 14px; color: #577099; }

	.form-checkbox-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
	.form-checkbox { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #4b5772; line-height: 1.45; cursor: pointer; }
	.form-checkbox input { width: 18px; height: 18px; margin-top: 2px; border-radius: 4px; border: 1px solid #cdd8ff; }
	.form-checkbox a { color: #7DBAB0; font-weight: 600; }

	.input-with-toggle { position: relative; display: flex; align-items: center; }
	.input-with-toggle input { width: 100%; padding-right: 52px; }
	.input-with-toggle .show-password { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: 0; padding: 0; display: flex; align-items: center; cursor: pointer; }

	.custom-registration-form--multi .sms-controls { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
	.custom-registration-form--multi .sms-timer { font-weight: 600; color: #2c3760; }
	.custom-registration-form--multi .sms-message { margin: 0 0 12px; font-size: 14px; color: #2c3760; }
	.custom-registration-form--multi .sms-message.is-error { color: #d62f4b; }
	.custom-registration-form--multi .sms-message.is-success { color: #278758; }
	.custom-registration-form--multi .sms-code-input { display: flex; align-items: center; gap: 12px; }
	.custom-registration-form--multi .sms-code-input input { flex: 1; }
	.custom-registration-form--multi .password-hint { margin-top: 12px; margin-bottom: 20px; font-size: 13px; color: #65708c; }

	.captcha-wrapper { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
	.captcha-wrapper .captcha { min-width: 160px; }
	.captcha-wrapper .captcha-content { flex: 1 1 220px; }

	/*@media (max-width: 767px) {*/
	@media (max-width: 991px) {
		
		.custom-registration-form--multi .form-grid { grid-template-columns: 1fr; }
		.form-checkbox-list { gap: 10px; }
		.custom-registration-form--multi .sms-controls { flex-direction: column; align-items: flex-start; }
		.custom-registration-form--multi .sms-code-input { flex-direction: column; align-items: stretch; }
		.custom-registration-form--multi .sms-code-input button { width: 100%; }
		.register-layout__media {
	display: none;
}

.register-layout {
	padding: 0;
}

.register-layout .register-layout__form.side {
	width: 100%;
	padding: 20px;
}

.uzman-register .list-body {
	padding: 0;
	background: #f5fbfa;
}

.register-form h2 {
	font-size: 1.1em;
	padding: 0 30px;
}
.sms-code-input {
	display: flex !important;
	flex-wrap: wrap !important;
}

.custom-registration-form--multi .sms-code-input input {
	flex: 0 0 15%;
}

.custom-registration-form--multi .sms-code-input {
	flex-direction: row;
	gap: 0 !important;
	justify-content: space-between;
}

button.btn.btn-secondary.sms-resend-button {
	background: transparent;
	border: none;
	color: #000;
	text-decoration: underline;
}

.custom-registration-form--multi .sms-message.is-success {
	display: none;
}

p.sms-info {
	text-align: center;
	font-size: 1.1em;
}

				}
				button.btn.btn-secondary.sms-resend-button {
	background: tra;
}

.register-step.register-step--password .form-grid {
	grid-template-columns: repeat(1, minmax(0, 1fr));
	padding-top: 25px;
}
.register-step.register-step--details .form-grid {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}
p.sms-info b {
	color: #05a5ab;
}
.security-note img {
	height: 60px !important;
	width: 60px !important;
	margin: 0 auto;
}

.security-note h4 {
	text-align: center;
}

.security-note {
	text-align: center;
}

.accordion-panel p {
	font-size: 13px;
}
 /* SMS digit styles */
            .sms-code-input .sms-digit { width:48px;height:56px;text-align:center;font-size:20px;border-radius:10px;border:1px solid #e6eefc;background:#fff;padding:6px; }
            .sms-single { width:100%; box-sizing:border-box; }
            .sms-single-container { width:100%; }
            .sms-single-wrapper .sms-box { width:48px;height:43px;border-radius:10px;border:1px solid #e6eefc;background:#fff;display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:700;color:#14213d; }
            .sms-single-wrapper .sms-box.focus { box-shadow:0 0 0 3px rgba(77,107,255,0.12); border-color:#4d6bff; }
            .sms-code-input { justify-content:flex-start; }
            .accordion { margin-bottom:8px; }
            .accordion-toggle { width:100%; text-align:left; padding:12px; border:1px solid #e6eefc; background:#fff; border-radius:8px; font-weight:600; }
            .accordion-panel { padding:12px; border-left:2px solid #eef4ff; background:#fbfdff; margin-top:6px; border-radius:6px; }
            .accordion-toggle .arrow { float: right; transition: transform .18s ease; }
            .accordion-toggle.open .arrow { transform: rotate(90deg); }

            /* style select to look like inputs */
            /* prevent iOS/Android zoom on inputs by ensuring font-size >=16px on mobile */
            @media (max-width: 480px) {
                .custom-registration-form--multi input, .custom-registration-form--multi select, .sms-code-input .sms-digit { font-size:16px; -webkit-text-size-adjust:100%; }
                html, body { -webkit-text-size-adjust:100%; }
            }
            /* target touch devices broadly to prevent zoom-on-focus (iPhone Chrome) */
            @media (pointer: coarse) {
                .custom-registration-form--multi input, .custom-registration-form--multi select, .custom-registration-form--multi textarea, .sms-code-input .sms-digit { font-size:16px !important; -webkit-text-size-adjust:100%; }
            }
            /* Ensure inputs keep 16px on focus to prevent mobile browsers (Chrome/iOS) from zooming */
            .custom-registration-form--multi input:focus,
            .custom-registration-form--multi select:focus,
            .custom-registration-form--multi textarea:focus,
            .custom-registration-form--multi .sms-code-input .sms-digit:focus {
                font-size: 16px !important;
                -webkit-text-size-adjust: 100% !important;
                -ms-text-size-adjust: 100% !important;
            }
            .custom-registration-form--multi .register-step--final-details .form-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}


.register-form input:not([type=checkbox]) {
    background: #F9F9F9 !important;
}

/* removed empty rule: input.input-text.dogum-tarih-picker.flatpickr-input.flatpickr-mobile */

.select2-container--open .select2-dropdown{
    border: none;
    background: #f9f9f9;
}

span.select2-search.select2-search--dropdown {
    display: none;
}
p.password-hint b {
    color: #09a7ac;
}
.form-note a {
    color: var(--Colors-Primary-600);
}

.register-form span a {
    color: var(--Colors-Primary-600);
}
.hero-uygulama-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
header .collapse-inner {
    width: 100%;
    display: flex;
    align-items: center;
}
.eh-hk-header .eh-hk-title {
    padding: 0;
}

.eh-hizliblok .eh-hk-header {
    margin-bottom: 30px;
}
.uzman-more .tab-container .tab-button {
    white-space: nowrap;
}

.desktop-tabs {
    overflow: scroll;
}
.uzman-more iframe {
    width: 100%;
}
.page-kurumsal .site-breadcrumbs,
.page-uzman-ol .site-breadcrumbs {
    display: none;
}
.kurumsal-hero {
    height: 100vh;
    min-height: 650px;
    margin-top: -92px;
    padding-top: 120px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.kurumsal-hero .badge {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--Colors-Neutral-600) !important;
	border-radius:25px;
}
.kurumsal-hero .title b,.kurumsal-hero .title strong {
    display: block;
}

.kurumsal-hero .title {
    font-size: 3em;
    font-weight: 600;
    line-height: 1.4;
    padding: 10px 0;
}

.kurumsal-hero .title strong {
    color: var(--Colors-Primary-700);
    font-weight: 600;
}

.kurumsal-hero .description {
    color: var(--Colors-Neutral-600);
    font-weight: 500;
    font-size: .875em;
    max-width: 60%;
}

.kurumsal-hero .btn {
    background: var(--Colors-Primary-500);
	font-weight:500;
    border-radius: 10px;
    border-color: var(--Colors-Primary-500);
    padding: 8px 32px;
    font-size: .875em;
}
.kurumsal-boxes {
    background-size: cover;
    padding: 32px 0;
	overflow: scroll;
}
.kurumsal-boxes .counter-box {
    justify-content: space-between;
	gap:20px;
}

.counter-item {
    position: relative;
    overflow: hidden;
    flex: 0 0 13%;
    padding: 12px;
    border-radius: 10px;
    color: var(--lg-text);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    backdrop-filter: blur(8px) saturate(140%);
    transition: transform .25s 
ease, box-shadow .25s 
ease;
    background-color: rgba(0, 0, 0, 0.35);
}

.counter-item>div {
    display: flex;
    flex-direction: column;
}

.counter-item .counter-number {
    font-size: 14px;
}

.counter-item .counter-text {
    font-size: 11px;
}

.counter-item:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 1px 1px 0 var(--lg-highlight), inset 0 0 5px var(--lg-highlight);
    pointer-events: none;
}

.counter-item:before {
    background: var(--lg-bg-color);
}

.counter-img i {
    padding: 0;
    color: var(--Colors-Secondary-500);
    margin-right: 8px;
}
.eh-nc-heading {
    flex-direction: column;
}
.home .eh-nc-heading {
    flex-direction: row;
}
.kurumsal-hero>div {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
}

.kurumsal-hero>div .hero-content {
    flex: 0 0 50%;
}

.kurumsal-hero .description {
    max-width: 100%;
}
.counter-item .counter-img {
    margin-right: 8px;
}

.counter-item .counter-number {
    font-weight: 600;
}
.bilgi-banner-inner h3 {
    font-weight: 600;
}

.bilgi-banner-inner p {
    margin-bottom: 20px;
    max-width: 100%;
}
.page-kurumsal .eh-hakkimizda .aciklama_inner {font-size: 14px;color: var(--Colors-Neutral-700);font-weight: 500;}

.page-kurumsal .eh-hakkimizda .row {
    display: flex;
    flex-direction: row-reverse;
}

.page-kurumsal .eh-hakkimizda img {
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.page-kurumsal .eh-hakkimizda {
    background: #fff;
}

.page-kurumsal .eh-hakkimizda .baslik {
    color: var(--Colors-Neutral-1000);
}

.page-kurumsal .eh-title.eh-title-white {
    color: var(--Colors-Neutral-1000);
}

.page-kurumsal .eh-hakkimizda .btn-primary {
    border-radius: 15px;
    background: var(--Colors-Primary-500);
    border: none;
    padding: 12px 45px;
    font-weight: 500;
}
.register-layout .register-layout__form.side {
    padding-bottom: 50px;
}
.page-uzman-ol .kurumsal-hero>div {
    flex-direction: row-reverse;
}
.eh-gorsel-box {
    background: transparent;
}

.eh-gorsel-box {padding-top: 10px;}

.eh-gorsel-box .eh-title {
    color: var(--Colors-Neutral-1000, #111112);
}

.eh-gorsel-box .baslik {color: var(--Colors-Neutral-1000, #111112);}


.eh-gorsel-box img {
    border-radius: 8px;
}

.eh-gorsel-box .gorsel-kutular {
    display: flex;
    gap: 20px;
    margin-top: 32px;
}

.eh-gorsel-box .gorsel-kutular .kutu-item {
    border-radius: 20px;
    background: #FFF;

/* Drop Shadow */
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.05);
    padding: 24px;
    flex: 0 0 31%;
}

.eh-gorsel-box .gorsel-kutular h3 {
    font-size: 1em;
}

.eh-gorsel-box .gorsel-kutular p {
    color: var(--Colors-Neutral-500);
    font-size: 13px;
}

.eh-gorsel-box .aciklama_inner {
    margin-bottom: 27px;
}

.eh-gorsel-box .gorsel-kutular i {
    display: block;
    margin-bottom: 10px;
}

.eh-gorsel-box .gorsel-kutular .kutu-item:hover {
    background: var(--Colors-Primary-500);
}

.eh-gorsel-box .gorsel-kutular .kutu-item:hover * {
    color: #fff !important;
}

.eh-gorsel-box .gorsel-kutular .kutu-item:hover img {
    filter: brightness(0) invert(1);
}

.eh-gorsel-box .btn-primary {
    background: var(--Colors-Primary-600);
    border-color: var(--Colors-Primary-600);
    padding: 8px 24px;
}
.eh-dortlu-kutucuk {
    background: var(--Colors-Primary-500);
    padding: 80px 0;
}

.eh-dortlu-kutucuk .title-box {
    text-align: center;
    color: #fff;
    display: flex;
    margin-bottom: 50px;
}

.eh-dortlu-kutucuk .title-box .eh-title {
    color: #fff;
    margin-bottom: 30px;
}


.eh-dortlu-kutucuk h2 {
    font-size: 2.25em;
    font-weight: 400;
    max-width: 80%;
    margin: 0 auto;
}

.eh-dortlu-kutucuk h2 b {
    font-weight: 600;
}

.eh-dortlu-kutucuk .kutucuk-box {
    display: flex;
    color: #fff;
    flex-wrap: wrap;
    gap: 30px;
}

.eh-dortlu-kutucuk .kutucuk-box>div {
    flex: 0 0 31%;
    align-items: flex-start;
    gap: 15px;
}

.kutucuk-box svg {
    width: 40px;
    height: 40px;
    z-index: 11;
    margin: 0;
    padding: 8px;
}

.eh-dortlu-kutucuk .kutucuk-box>div h3 {
    font-size: 2em;
    font-weight: 400;
}

.eh-dortlu-kutucuk .kutucuk-box>div p {
    font-size: .875em;
}

.kutucuk-box .bg-glass:before {
    background: transparent;
    border-radius: 10px;
}

.kutucuk-box i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kutucuk-box .bg-glass {
    display: flex;
    align-items: center;
    justify-content: center;
}


.eh-dortlu-kutucuk .kutucuk-box>div h3 b {
    font-style: italic;
}
.paket-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.paket-section .title-box {
    text-align: center;
    margin-bottom: 60px;
}

.paket-section .title-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0;
}

.paket-card {
    padding: 16px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    border: 1px solid #E4E4E7;
    background: #FFF;
    padding: 24px;
}

.paket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.paket-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--Colors-Primary-700);
}

.paket-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--Colors-Primary-600);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    border-radius: 0;
}

.paket-title {
    font-size: 1.25em;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 3px;
    text-transform: uppercase;
    color: var(--Colors-Neutral-1000, #111112);
}

.paket-subtitle {
    font-size: .875em;
    margin-bottom: 25px;
    color: var(--Colors-Neutral-1000, #111112);
}

.paket-content {
    display: flex;
    gap: 30px;
    flex-grow: 1;
}

.paket-left {
    flex: 2;
}

.paket-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.paket-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.paket-price .currency {
    font-size: 1rem;
    color: #2c3e50;
}

.paket-period {
    color: inherit;
    font-size: 0.85rem;
    width: 100%;
    text-align: left;
    margin-bottom: 15px;
}

.paket-features {
    margin-bottom: 0;
}

.paket-features h6 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 0.95rem;
}

.paket-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paket-features li {
    padding: 4px 0;
    border-bottom: none;
    color: var(--Colors-Primary-1000);
    position: relative;
    padding-left: 25px;
    text-align: left;
    font-size: 14px;
}

.paket-features li:last-child {
    border-bottom: none;
}

.paket-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #007bff;
    font-weight: bold;
    font-size: 1rem;
}

.paket-btn {
    background: var(--Colors-Primary-600);
    border: none;
    padding: 12px 0;
    border-radius: 8px;
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    font-size: 0.9rem;
    margin-top: auto;
    border-color: var(--Colors-Primary-600);
}



@media (max-width: 768px) {
    .paket-card.featured {
        transform: none;
        margin-top: 30px;
    }
    
    .paket-section {
        padding: 60px 0;
    }
    
    .paket-card {
        margin-bottom: 30px;
    }
    
    .paket-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .paket-right {
        align-items: stretch;
    }
}

.paket-right .paket-price {
    width: 100%;
    text-align: left;
    font-size: 2.25em;
    color: var(--Colors-Neutral-1000, #111112) !important;
    font-weight: 600;
    margin-bottom: 0;
}

.paket-right .btn-wp {
    color: var(--Colors-Primary-700);
}

.paket-features h6 {
    font-weight: 500;
    color: var(--Colors-Neutral-1000, #111112);
}
.events-wrapper>.event-item {
    flex: 0 0 calc(33% - 10px);
}

.events-wrapper {
		gap:15px;
	flex-wrap: wrap;

}
.register-layout .modal-content {
    padding: 1em 2em !important;
}
.post-hero-content {
    text-align: center;
}

.post-hero-content .post-desc-content {
    max-width: 50%;
    margin: 0 auto;
    font-size: 14px;
    display: table;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--Colors-Neutral-500);
    font-weight: 500;
    line-height: 1.25em;
}

.post-h1-content h1 {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 2.2em;
    font-weight: 600;
    padding: 15px 0;
}

.post-img-content img {
    width: 100%;
    border-radius: 12px;
    height: 370px;
    object-fit: cover;
    object-position: top;
}

.post-h1-content {
    margin-bottom: 50px;
}

.post-h1-content .badge {
    font-weight: 500;
    color: var(--Colors-Primary-600);
}

.post-img-content {
    margin-bottom: 50px;
}

	.post-layout {display: grid;grid-template-columns: 25% 1fr;gap: 24px;}
				.post-toc {border: 1px solid #e6eefc;border-radius: 12px;padding: 16px;position: sticky;top: 100px;height: fit-content;background: transparent;border-radius: 12px;}
				.post-toc .toc-title { font-weight: 700; color: #1a2341; margin-bottom: 12px; }
				.post-toc .toc-nav ul { list-style: none; margin: 0; padding: 0; }
				.post-toc .toc-item {margin: 0;}
				.post-toc .toc-nav a {display: block;padding: 10px 12px;text-decoration: none;border: none;border-radius: 0;border-left: none;border-right: none;font-size: 1em;font-weight: 600 !important;color: var(--Colors-Neutral-500, #B5B5BE);}
				.post-toc .toc-nav a:hover { background: #ffffff; border-color: #e6eefc; }
				.post-toc .toc-nav a.active {font-weight: 600;color: var(--Colors-Neutral-900, #28282B);}
				@media (max-width: 991px) {
					.post-layout { grid-template-columns: 1fr; }
					.post-toc { position: relative; top: 0; }
				}

.post-layout .post-body {
    color: var(--Colors-Neutral-600);
    font-size: 15px;
    border-radius: 12px;
    border: 1.2px solid #EEE;
    background: #F6FEFE;
    padding: 25px;
}

.post-layout .post-body h2,.post-layout .post-body h3 {
    color: var(--Colors-Neutral-900);
    font-weight: 600;
    font-size: 1.75em;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 15px;
    padding-top: 15px;
}
.teklif-form .iti {
    width: 100%;
}

.teklif-form input,.teklif-form textarea {
    font-weight: 500;
    font-size: 14px;
    height: auto;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid #FFF;
    background: var(--Colors-Neutral-100, #F9F9F9);
}

.teklif-product-info {
    display: flex;
    gap: 10px;
}

.teklif-form textarea {
    max-height: 140px;
}

.teklif-form .btn-primary {
    width: 100%;
    background: var(--Colors-Primary-600);
    border-color: var(--Colors-Primary-600);
    font-weight: 600;
    font-size: 1em;
    letter-spacing: .3px;
}
.uzman-more .tab-content h5 {
    margin-bottom: 0;
}

.uzman-more .tab-content.active {
    margin-bottom: 12px;
}

.uzman-more .tab-content .klinik > div {
    margin-top: 12px;
}
.cizelge-header .col{
	background:#fff;
}
.eh-members-adv-banner>div {
    display: flex;
    flex-wrap: nowrap !important;
}

.eh-members-adv-banner {
    border-radius: 12px;
    background: var(--Colors-Primary-700, #315292) !important;
    border-radius: 12px;
    margin: 18px 0;
    color: #fff;
    padding: 12px 14px !important;
}

.eh-members-adv-banner div {
    color: #fff !important;
    align-items: center;
}

.eh-members-adv-banner div .rounded-circle {
    background: var(--Colors-Secondary-500) !important;
    border: 1px solid var(--Colors-Secondary-500) !important;
}

.eh-members-adv-banner div .rounded-circle svg {
    filter: brightness(0) invert(1);
}

.eh-members-adv-banner .fw-semibold {font-size: 20px !important;margin-bottom: 2px;}

.eh-members-adv-banner .text-muted {
    color: rgba(255, 255, 255, 0.60);
}

.eh-members-adv-banner .btn {
    border-radius: var(--8, 8px);
    background: var(--Colors-Primary-500, #5080D9);
    border-color: var(--Colors-Primary-500, #5080D9);
    white-space: nowrap;
}
.rf-text-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2em;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #fff;
}

.register-layout__media {
    position: relative;
}

.rf-text-inner img {
    width: auto;
    height: 25px;
    border-radius: 0;
}

.rf-text-inner .rf-title h3 {
    color: #fff;
    max-width: 90%;
    font-size: 53px;
    margin: 0;
}

.rf-text-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    padding: 2em;
}

.register-layout .register-layout__media {
    position: relative;
}

.rf-text-top img {
    border-radius: 18px;
	filter: brightness(0) invert(1);
}
.uzman-more .video-wrapper {
    flex-wrap: wrap !important;
    flex-direction: row !important;
    gap: 20px;
}

.uzman-more .video-wrapper .col {
    flex: 0 0 calc(33% - 13px);
}

.uzman-more .video-wrapper iframe {
    border-radius: 10px;
}
.egitim-kli table {
    color: var(--Colors-Neutral-600);
    white-space: nowrap;
}

.egitim-kli table thead {
    color: var(--Colors-Primary-600);
}
.eh-contact .contact-faq-input{
	font-size:16px !important;
	background:transparent !important;
	color:#fff !important;
}
.contact-boxs {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 24px;
}

.contact-boxs .contact-box-item {
    flex: 0 0 calc(50% - 12px);
    background: #fff;
    padding: 24px;
    display: flex;
    gap: 20px;
    text-decoration: none;
    border-radius: 12px;
}

.contact-boxs .contact-box-item i {
    border-radius: var(--8, 8px);
    background: var(--Colors-Primary-100, #E6EEFA);
    width: 75px;
    height: 75px;
    min-width: 75px;
	display:flex;
	align-items:center;
	justify-content: center;
}

.contact-boxs .contact-box-item span {
    color: var(--Colors-Neutral-700);
    font-weight: 500;
    font-size: .875em;
    font-weight: 600;
}

.contact-boxs .contact-box-item p {
    color: var(--Colors-Neutral-700);
    font-weight: 500;
    font-size: .875em;
    margin: 0;
}

.contact-left {
    margin-bottom: 50px;
}
.contact-boxs .contact-box-item.active {
    background: var(--Colors-Primary-700);
}

.contact-boxs .contact-box-item.active * {
    color: #fff;
}

.contact-tabs .eh-sss .accordion-item .accordion-item {
    background: #fff;
    border-radius: 8px;
}

.contact-tabs .eh-sss .accordion-item .accordion-item .accordion-button {
    color: var(--Colors-Primary-900) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding-left: 0;
    border-radius: 3px !important;
}

.contact-tabs .eh-sss .accordion-item .accordion-body {
    padding: 0 32px;
    padding-bottom: 25px;
}

.contact-tabs .eh-sss .accordion-item .accordion-item .accordion-button::before {
    filter: brightness(0);
    margin-left: 15px;
}

.contact-tabs .eh-sss .accordion-item.active .accordion-header button {
    padding: 30px;
}
.contact-tabs .eh-sss .accordion-item.active .accordion-item p {
    color: var(--Colors-Neutral-600);
    font-size: 14px;
}
a.last-box-item {
	width: calc(50% - 15px);
	padding: 30px;
	align-items: center;
	font-size: 16px;
	display: flex;
	font-weight: 500;
	gap: 15px;
	line-height: 1.5;
	border-radius: var(--16, 16px);
	background: rgba(255, 255, 255, 0.73);
	box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10);
	color: var(--Colors-Neutral-700);
	text-decoration: none;
}
.contact-tabs a.last-box-item.active {
	background: var(--Colors-Primary-700);
	color: #fff;
}
a.last-box-item svg {
	margin-right: 10px;
}

.contact-last-boxes {
    padding: 35px 0 50px;
}

.contact-tabs .contact-last-boxes img {
    border-radius: var(--8, 8px);
    background: var(--Colors-Primary-100, #E6EEFA);
    padding: 8px;
}
.address-container-randevu a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.kurumsal-hero .eh-hero-onayli {
    position: absolute;
    left: 2em;
    bottom: 2em;
}
.phone-input-wrapper input[type="tel"] {
    padding-left: 50px !important;
}
.contact-tab-item.active .accordion-item.active {
    background: var(--Colors-Primary-700);
    border-color: var(--Colors-Primary-500);
}
.page-uzman-ol .kurumsal-hero .title {
    font-size: 2.5em;
}

.page-uzman-ol .kurumsal-hero .description {
    font-size: 1em;
    line-height: 1.6;
}
.paket-title h3 {
    font-size: 21px;
    font-weight: 600;
    color: var(--Colors-Primary-700);
    text-transform: capitalize;
}
.paket-badge {
    text-align: left;
}
section#paketler .col-lg-4:last-child .paket-price,section#paketler .col-lg-4:last-child .paket-badge {
    display: none;
}

section#paketler .col-lg-4:last-child .paket-period {
    display: none;
}

section#paketler .col-lg-4:last-child .paket-price {
}

section#paketler .col-lg-4:last-child h6 {
    display: none;
}

section#paketler .col-lg-4:last-child .paket-price ul li {
}




section#paketler .col-lg-4:last-child .paket-content {
    order: 1;
}
.teklif-product-title h3 {display: none;}

section#paketler .col-lg-4:last-child .paket-right {
    order: 2;
    margin: 15px 0;
}
section#paketler .col-lg-4:last-child .btn-satin-al {
    display: none;
}
.paket-btns .btn-satin-al {
    background: #198755 !important;
}
.paket-title {
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    min-height: 85px;
    margin-top: 0;
}

.popular-badge + .paket-title {
    margin-top: 30px;
    font-size: 15px;
}

.paket-period {
    margin-bottom: 0;
    padding: 0;
    font-weight: 400;
    font-size: .8em;
    margin: 7px 0;
}

.paket-period .badge {
}

.paket-subtitle.badge.badge-success {text-align: left;width: 100%;margin-bottom: 0;padding: 0;font-weight: 300;}

.paket-badge {
    width: 100%;
    font-weight: 300;
}
.paket-btns {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}

.paket-btns .btn-satin-al {
    background: var(--Colors-Primary-800);
}

.paket-right .btn-wp {
    margin: 9px 0;
}
.post-img-content img {
    width: 100%;
}

.post-img-content {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.eh-featured .uzman-item>.row>div.uzman-img a {
    width: 100%;
}
.captcha-wrapper {
    background: transparent !important;
    padding: 0 !important;
    margin: 15px 0 !important;
}

.uzman-item.card .eh-badge-right-sm {
    display: flex;
    width: 100%;
    flex-direction: row!important;
}

.eh-one-cikan .uzman-item.card > .row{
	flex-wrap: wrap!important;
}

.eh-one-cikan .uzman-item.card .eh-badge-right-sm{
	display:none;
}

.uzman-item.card .eh-badge-right-sm .eh-badge-c{
	display: flex;
	align-self: center;
}

.uzman-item.card .eh-badge-right-sm .badge{
	padding: 7px 11px;
	font-size: 11px;
}

.eh-badge-right:not(.uzman-list .eh-badge-right){
	flex-direction: column;
}

@media (min-width: 576px) and (max-width:991px) {
	.uzman-detail .eh-badge-online{
		top: 25px!important;
		bottom:inherit!important;
	}
}

@media (min-width: 1200px) and (max-width:1399px) {
	.uzman-detail .eh-badge-online{
		position: absolute;
		bottom: 0;
		top: inherit;
		right: inherit;
		left: -311%;
	}
}

@media(max-width:991px){

	.uzman-detail .eh-badge-online{
		top: 8px;
		bottom:-27%;
		margin-right: 16px;
		right:0;
	}

	.uzman-detail .eh-badge-online .badge{
		padding:0px!important
	}

	.uzman-item .eh-badge-online:not(.eh-one-cikan .uzman-item .eh-badge-online, .uzman-detail-inner .uzman-item .eh-badge-online){
		position: absolute;
		margin-top:0px!important;
        bottom:30%;
		top:inherit!important;
		right: -16px;
	}
}


@media(max-width:1199px){

	.uzman-item .eh-badge-online:not(.eh-one-cikan .uzman-item .eh-badge-online, .uzman-detail-inner .uzman-item .eh-badge-online){
		margin-top:34px;
		margin-right: 34px;
	}
	.uzman-item .eh-badge-online .badge{
		font-size: 11px;
	}

	.uzman-list .eh-badge-right{
		align-items: center!important;
	}
}
@media(min-width:1200px){

	.uzman-list .eh-badge-right{
		flex-direction: column;
	}

}

@media(min-width:992px){
	.uzman-item.card .eh-badge-right-sm {
		display: none;
	}

}

/* Mobile Start */
@media(max-width:991px){
.register-form-box .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 15px;
}
.post-layout {
    display: flex;
    flex-direction: column;
}
.post-layout iframe {
    width: 100%;
    height: 220px;
}
.post-h1-content{
	margin-bottom:0;
}
.post-img-content img {
    height: auto;
}
	body{
		background:#fff;
	}
	section.eh-panel.eh-hakkimizda img {
    width: 100%
}
.modal-backdrop.fade.show {
    z-index: 0;
}

.eh-sss .eh-panel-head {
    flex-direction: column
}
.mobile-navbar-field .navbar-logo img {
    height: 50px;
    background: var(--Colors-Primary-600);
    padding: 0 11px;
    border-radius: 7px;
}
.site-header .topbar .container {
    width: 100%;
    padding: 0
}

.topbar {
    padding: 0;
    justify-content: center;
    font-size: 12px;
    height: 70px;
    font-weight: 500
}
.topbar .topbar-inner .text-white {
    margin: 0 !important;
}

.topbar .topbar-inner>i {
    display: none
}

.topbar .topbar-inner {
    text-align: left;
    position: relative;
    z-index: 1;
    font-size: 12px;
    display: flex;
    padding: 0 12px
}

header button.navbar-toggler {
    border: 0
}

header .navbar-toggler-icon {
    background-image: url(../images/_Hamburger.svg);
    width: 36px
}

.home .head .navbar:before {
    background: rgba(0,0,0,.025)
}

.topbar .topbar-inner:after,.topbar .topbar-inner:before {
    width: 125px;
    height: 66px;
    top: -17px;
    z-index: -1;
    background-repeat: no-repeat!important;
    background-size: contain!important;
    background-position: center center!important
}
.site-footer .site-info {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
}
.topbar .topbar-inner:before {
    background: url(../images/_TopAbs2.svg);
    left: -15px
}

.topbar .topbar-inner:after {
    background: url(../images/_TopAbs1.svg);
    right: 0;
}

.topbar .topbar-inner .text-white {
    font-size: 2em;
    margin-left: 2em
}

.topbar .topbar-inner:after,.topbar .topbar-inner:before {
    opacity: .7
}
button {
    outline: none !important;
}

.eh-hero .hero-content {
    padding-top: 60px;
}

.eh-hero h1 {
    font-size: 1.75em;
    line-height: 42px;
}

.eh-hero .hero-description {
    font-size: 1em;
}

.eh-searchbox {
    max-width: 100%;
}

.eh-searchbox>ul li .nav-link {
    padding: 12px 0;
}

.eh-searchbox>ul {
    padding: 6px;
}

.searchbox-input {
    font-size: 12px;
    padding: 4px 12px;
	align-items:center;
}

.search-input-box .search-input {
    padding-left: 10px;
}

.eh-searchbox button.btn-primary {
    padding: 8px 20px;
}

.eh-hero-uygulama {
    padding-top: 0;
}

section.eh-hero {
    background-image: url(../images/_MobileBg.svg) !important;
	background-position: center 60px;
}
.eh-hero-onayli{
	margin-top:30px;
	display:block !important;
}
.site-header .header-buttons {
    display: none !important;
}

header .navbar-collapse .collapse-inner {
    padding: 15px 0;
}
.auth-mobile{width:100%;}
	.auth-mobile .auth-card{
		border-radius: 18px;
		box-shadow: 0 6px 20px rgba(16,24,40,0.08);
		padding: 12px;
		background: rgba(255,255,255,.4);
		width: 100%;
	}
	.auth-mobile .auth-item-head{
		display:flex; align-items:center; gap:10px; width:100%;
		background: transparent; border:0; padding: 10px 6px; border-radius:12px;
		color: var(--Colors-Primary-700); font-weight:600; font-size:16px;
	}
	.auth-mobile .auth-item-head .icon{ width:24px; height:24px; display:inline-flex; align-items:center; justify-content:center; }
	.auth-mobile .auth-item-head i{ margin-left:auto; transition: transform .2s ease; color: var(--Colors-Primary-400); }
	.auth-mobile .auth-item-head[aria-expanded="true"] i{ transform: rotate(180deg); }
	.auth-mobile .auth-item-body{padding: 7px 0 0;}
	.auth-mobile .btn-row{ display:flex; gap:12px; }
	.auth-mobile .btn-row .btn{background: var(--Colors-Primary-500);color:#fff;border-radius: 8px;padding: 7px 12px;font-weight: 500;}
	.auth-mobile .auth-divider{border:0;height:1px;background: #858585;margin: 4px 0 8px;}


#mainNavbar ul li a {
    width: 100%;
    display: flex;
    font-size: 14px;
    padding: 12px 24px;
}

#mainNavbar ul li a:after {
    content: '\F285';
    font-family: 'bootstrap-icons';
    margin-left: auto;
}



.site-header .navbar-nav {width: 100%;}

.site-header .header-buttons {margin: 0 !important;width: 100%;min-width: 100%;}


.site-header .header-buttons>div {
    width: 100%;
    padding: 20px 0;
}

header .auth-actions .title {
    font-size: 14px;
    font-weight: 500;
    color: var(--Colors-Primary-400, #739FE5);
}

.auth-mobile .auth-card:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 0px -3px 0 rgb(255 255 255 / 2%), inset 0 0 4px rgb(255 255 255 / 58%);
    pointer-events: none;
    width: 100%;
    height: 100%;
}
button {
    box-shadow: none !important;
}

.navbar-toggler {
    box-shadow: none;
}

header .navbar-collapse .collapse-inner {
    display: flex;
    flex-direction: column-reverse;
}

.auth-actions {
    width: 100%;
}

.site-header .header-buttons {
    width: 100%;
}

.auth-mobile .auth-card {
    position: relative;
}

.site-header .header-buttons>div {
    padding: 20px 0 !important;
    width: 100%;
}
header .navbar-toggler .navbar-toggler-icon{
	transition:all .2s ease-in;
}
header .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-image: url(../images/_RemoveIcon.svg);
}
  body.has-mobile-nav { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0)); }
  .mobile-bottom-nav{position: fixed;left:0;right:0;bottom:0;z-index: 1030;padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0));background: transparent;}
  .mobile-bottom-nav .mobile-nav{position: relative;background: rgba(255,255,255,.92);border-radius: 25px;display: grid;grid-template-columns: repeat(4, 1fr);gap: 4px;padding: 10px 9px;}
  .mobile-bottom-nav .nav-item{text-align:center;text-decoration:none;color: var(--Colors-Neutral-500);font-weight: 500;font-size: 13px;padding: 1px 4px;border-radius: 12px;display:flex;flex-direction: column;align-items:center;gap: 5px;font-size: 12px;}
  .mobile-bottom-nav .nav-item i{ font-size: 22px; color: var(--Colors-Neutral-400); }
  .mobile-bottom-nav .nav-item.active, .mobile-bottom-nav .nav-item:active{ color: var(--Colors-Primary-600); }
  .mobile-bottom-nav .nav-item.active i{ color: var(--Colors-Primary-600); }

.mobile-bottom-nav .nav-item.active svg path {
    fill: var(--Colors-Primary-600);
}

.mobile-bottom-nav .mobile-nav:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 1px 0px 0 var(--lg-highlight), inset 0 0 2px var(--lg-highlight);
    pointer-events: none;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    z-index: -1;
}

.eh-mansetalt-item.eh-mansetalt-w-branch {
    flex: 0 100%;
}

.eh-mansetalt-item.eh-mansetalt-w-kpi {
    flex: 0 0 calc(50% - 15px);
}

.eh-mansetalt-item.eh-mansetalt-w-spark {
    flex: 0 0 calc(50% - 15px);
}

.eh-mansetalt .eh-mansetalt-cards {
    flex-wrap: wrap;
}

.eh-mansetalt-item.eh-mansetalt-w-trust {
    display: none;
}

.eh-mansetalt-item.eh-mansetalt-w-experts {
    display: none;
}

.eh-mansetalt {
    padding: 30px 0;
}

.eh-marquee-img {
    height: 40px;
}
.eh-hk-header .eh-hk-title {
    font-size: 19px;
}

.eh-hk-inner .eh-hk-pills li {
    flex: 0 0 100%;
}

.eh-hk-inner .eh-hk-pills a:after {
    left: 0;
}


.eh-hk-inner .eh-hk-pills a:after {
    top: 100%;
}

.eh-hk-inner .eh-hk-pills a {
    font-size: 19px;
    font-weight: 600;
}

.eh-featured .fd-left {
    align-items: center;
}

.eh-featured .eh-title {
    align-self: center;
}

.eh-featured h2.fd-title {
    font-size: 2.25em;
    text-align: center;
}


.eh-featured-swiper:after {
    width: 100%;
}



.eh-hakkimizda {
    padding: 40px 0;
}

.eh-hakkimizda .baslik {
    max-width: 100%;
    font-size: 1.4em;
}

.eh-hakkimizda .btn-glass {
    width: 100%;
    font-weight: 500;
    font-size: 1em;
}

section.eh-panel.eh-hakkimizda img {
    width: 100%;
    height: auto;
    margin: 30px 0 0;
}

.eh-event-list .eh-panel-head {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    margin-bottom: 30px;
}


.event-swiper .event-item {
    width: 100%;
    margin: 0;
}

.eh-event-list .eh-panel-body {
    padding: 15px 18px;
    background: var(--Colors-Primary-200);
    border-radius: 12px;
}

.eh-event-list .swiper-slide {
    max-width: 80%;
}

.eh-featured-swiper {
    overflow: initial;
}

.eh-featured {
    overflow: hidden;
}

.event-swiper {
    overflow: initial;
}

.eh-event-list {
    overflow: hidden;
}

.eh-panel-head h3 {
    text-align: center;
}

.services-swiper .swiper-slide {
    width: 70%;
    margin: 0 15px 0 0;
}

.eh-services-list .service-card {
    padding: 0 5px;
}

.eh-blogs .eh-blogs-inner {
    padding: 16px;
}

.blog-post-item figure {
    margin-bottom: 0;
    border-radius: 12px;
}

.eh-blogs .blog-post-item .post-content {
    border-radius: 12px;
}

.eh-blogs .blog-copy {
    padding-left: 0;
}

.eh-blogs .blog-copy .title-box h2 {font-size: 1.5em;}

.eh-blogs .blog-copy .title-box h3 {
    font-size: 2em;
    max-width: 90%;
}

.blog-copy .title-box {
    margin: 14px 0;
}

.eh-blogs .blog-copy .intro {
    font-size: .875em;
    margin-bottom: 36px;
}

.eh-blogs .btn-glass {
    width: 100%;
}

.eh-blogs .eh-swiper-pagination .swiper-pagination-bullet {
    width: 20px !important;
    font-size: 13px;
}

.eh-blogs .eh-swiper-pagination .swiper-pagination-bullet::after {
    height: 3px;
}

.eh-blogs .eh-swiper-pagination .eh-bullet-index {
    font-size: .875em;
    margin-top: 6px;
}

.eh-blogs-footer {
    margin: 20px 0 0;
}

.eh-blogs-inner .eh-swiper-buttons {
    width: 100px;
}

.eh-nc-heading {
    flex-direction: column;
}

.eh-nc-inner {
    background: #fff;
}

.eh-nc-steps {
    padding-left: 0;
    margin-top: 30px;
}

.eh-sss .eh-panel-head img {
    width: 100%;
}

.eh-sss .eh-panel-head-right {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
}

.eh-sss .eh-panel-head-right p {
    text-align: left;
    max-width: 100%;
}

footer .menu-box {
    margin: 0;
}

footer .menu-box button {
    margin: 0 !important;
}

.site-footer .menu-box ul {
    padding-top: 20px;
}

footer.site-footer {
    padding-top: 0;
    padding-bottom: 0;
}


.qr-and-application .etbis {
    display: none;
}

.site-footer .footer-desc {
    padding: 10px 0;
}

.site-footer .site-info .footer-logo-field {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.site-footer .custom-logo-link {
    justify-content: flex-start;
}

.eh-sss .accordion-button {
    font-size: 14px;
}

.eh-sss .accordion-item.active .accordion-header button {
    font-size: 18px;
}

.eh-sss .accordion-body {
    font-size: 14px;
    padding-right: 20px;
}
.uzman-list .eh-uzman-list-quick a {
    font-size: 12px;
    padding: 12px 0;
    color: #005B88;
}

.uzman-list .eh-searchbox {
    max-width: 100%;
    padding-top: 16px;
}




.list-header, .uzman-detail .uzman-header {
    padding: 0;
}

#searchTabEh button {
    font-size: 14px;
}

.eh-searchbtns {
    width: 100%;
}

.eh-searchbtns ul {
    display: flex;
    justify-content: space-between !important;
}

.eh-filters.list-body {
    margin: 0;
}
/* Scoped to Uzmanlar template - Mobile filters */
			@media (max-width: 767.98px) {
				/* Hide left sidebar on mobile */
				.uzman-list .eh-filters .col-md-3 { display: none; }
				/* Hide desktop pills on mobile */
				.uzman-list .list-header .eh-searchbtns { display: none; }
				/* Show mobile toolbar */
				.eh-mobile-toolbar { display: flex; }
			}
			@media (min-width: 768px) {
				.eh-mobile-toolbar { display: none; }
			}
			
			.eh-mobile-toolbar { gap: 12px; margin-top: 12px; }
			.eh-mobile-toolbar .eh-mbtn {
				display: flex;
				align-items: center;
				justify-content: space-between;
				background: #618CDC1A;
				color: #28406e;
				border: none;
				border-radius: 8px;
				padding: 12px 14px;
				font-size: 12px;
				font-weight: 500;
				height: 48px;
			}
			div#ehApptTypeDD {
				flex: 1;
			}
			.eh-mobile-toolbar .eh-mbtn .label { display: inline-flex; align-items: center; gap: 8px; }
			.eh-mobile-toolbar .eh-mbtn .chev { transform: rotate(0deg); transition: transform .2s; opacity: .9; }
			.eh-mobile-toolbar .dropdown.show .eh-mbtn .chev { transform: rotate(180deg); }

			/* Dropdown menu styling */
			.eh-mdropdown .dropdown-menu {
				border-radius: 16px; border: 1px solid #e7ecf5; box-shadow: 0 12px 28px rgba(63,104,182,.12);
				padding: 10px; min-width: 260px;
			}
			.eh-mdropdown .dropdown-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px; }
			.eh-mdropdown .dropdown-item.active, .eh-mdropdown .dropdown-item:active { background: #eaf2ff; color: #1b3b88; }
			.eh-mdropdown .dot { width: 18px; height: 18px; border: 2px solid #1b5fb8; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; }
			.eh-mdropdown .dot::after { content: ''; width: 8px; height: 8px; background: #1b5fb8; border-radius: 999px; opacity: 0; transition: opacity .15s; }
			.eh-mdropdown .dropdown-item.active .dot::after { opacity: 1; }

			/* Filter Modal */
			#ehFilterModal .modal-content { border-radius: 20px; }
			#ehFilterModal .modal-header { border-bottom: none; }
			#ehFilterModal .modal-title { font-weight: 700; color: #1d2f55; }
			#ehFilterModal .modal-body { max-height: calc(100dvh - 140px); overflow: auto; padding-top: 0; }
			#ehFilterModal .modal-footer { border-top: none; padding-top: 0; }
			#ehFilterModal .filter-wrapper .selectbox { display: block !important; }
			#ehFilterModal .filter-wrapper .listbox, #ehFilterModal .filter-wrapper .map-block, #ehFilterModal .filter-wrapper .newsletter { display: none !important; }
			#ehFilterModal .mobile-filter-submit { display: block; position: sticky; bottom: 0; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 24%); padding: 16px; margin: -8px; }
			#ehFilterModal .mobile-filter-submit .btn { width: 100%; border-radius: 12px; padding: 12px 14px; }

			/* Small polish */
			.eh-micon { display:inline-flex; width:24px; height:24px; align-items:center; justify-content:center; }

.dropdown-toggle::after {
    content: '';
}

.filter-box {
    position: relative;
    z-index: 1;
}

.filter-box h3:after {
    display: none;
}

.filter-box .eh-toggle-btn {
    display: none;
}

.filter-box h3 b {
    background: transparent;
}


.uzman-item .eh-badge-right:not(.eh-one-cikan .uzman-item .eh-badge-right, #order_review .uzman-item .eh-badge-right) {
    width: 100%;
	top:30px!important;
    flex-direction: row !important;
}

.eh-one-cikan .uzman-item .eh-badge-right{
    width: 100%;
	top:45px!important;
}

.uzman-list .uzman-list-cats {
    display: none !important;
}

.uzman-item .uzman-list-end {
    max-width: 100%;
    flex: 0 0 100%;
    align-items: stretch !important;
    gap: 7px !important;
}

.uzman-item .uzman-list-end .fw-semibold {
    text-align: center;
}

.uzman-list-end .small {
    text-align: left;
}

.uzman-item.card .eh-badge-right:not(.eh-one-cikan .uzman-item .eh-badge-right,#order_review .uzman-item .eh-badge-right) {
    display: none !important;
}

.list-wrapper  .uzman-item.card .row>.col {
    max-width: 67%;
    margin: 0;
}

.list-wrapper  .uzman-item h5 {
    justify-content: space-between;
    display: flex;
    overflow: hidden;
}

.list-wrapper .uzman-item.card .row>.uzman-img {
    max-width: 33%;
}
.list-wrapper  .uzman-item.card .uzman-img img {
    width: 100px;
    height: 100px;
    margin-top: 0;
}

.eh-mobile-toolbar {
    margin-bottom: 30px;
}

.eh-badge-right .badge {
    height: 34px;
}

.uzman-item.card {
    background: rgba(255, 255, 255, 0.73);
    box-shadow: 0 0 50px 0 rgba(0, 79, 81, 0.10) !important;
    padding-top: 30px !important;
}

.uzman-list .uzman-list-lang {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: scroll;
}
.tab-menu-randevu{
	position:relative;
}
main.uzman-detail {
    width: 100%;
}

.modal-md {
    min-width: 100%;
}
.page-template-template-uzmanlar .head .navbar {
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.10);
}

.page-template-template-uzmanlar .site-header {
    background: transparent !important;
}

.eh-filters-in {
    flex-direction: column;
}
.uzman-list .uzman-list-head {
    background-size: cover !important;
}
.uzman-list .eh-searchbox {
    width: 100%;
}
.uzman-list .uzman-list-lang{
	font-size:12px;
}
.kurumsal-hero>div {
    flex-direction: column !important;
}
.kurumsal-hero .hero-img2 img {
    width: 100%;
    height: 250px;
}
.eh-gorsel-box .gorsel-kutular .kutu-item {
    flex: 0 0 20%;
}

.eh-gorsel-box .gorsel-kutular {
    flex-direction: column;
    flex-wrap: wrap;
}

.eh-gorsel-box .gorsel-kutular .kutu-item img {
    height: 30px;
    width: auto;
}

.bilgi-banner-wrap .attachment-full {
    height: 250px;
    width: auto;
}


.title-box h3 {
    font-size: 1em;
}

.eh-dortlu-kutucuk h2 {
    font-size: 1.2em;
}

.eh-dortlu-kutucuk .kutucuk-box>div {
    flex: 0 0 100%;
    padding: 0;
}
.eh-gorsel-box .gorsel-kutular .kutu-item {
    flex: 0 0 20%;
}

.eh-gorsel-box .gorsel-kutular {
    flex-direction: column;
    flex-wrap: wrap;
}

.eh-gorsel-box .gorsel-kutular .kutu-item img {
    height: 30px;
    width: auto;
}

.bilgi-banner-wrap .attachment-full {
    height: 250px;
    width: auto;
}


.title-box h3 {
    font-size: 1em;
}

.eh-dortlu-kutucuk h2 {
    font-size: 1.2em;
}

.eh-dortlu-kutucuk .kutucuk-box>div {
    flex: 0 0 100%;
    padding: 0;
}

.counter-box {
    max-width: 100%;
    margin: 0;
    flex-direction: column;
    flex-direction: row;
}

.counter-item {
    flex: 0 0 39%;
}

.kurumsal-hero {
    height: auto;
    margin-bottom: 30px;
}

.kurumsal-hero .hero-img2 {
    display: none;
}
.events-wrapper>.event-item{
	flex:0 0 100%;
}
.eh-members-adv-banner>div {
    flex-direction: column;
}
.uzman-more .video-wrapper {
    flex-direction: column !important;
}

.uzman-more .video-wrapper .col {
    flex: 0 0 100;
}
.contact-boxs .contact-box-item{
	flex:0 0 100%;
}
.contact-last-boxes>a {
    flex: 0 0 100%;
    text-align: center;
}
.topbar .topbar-inner .text-white {
    font-size: 1em;
}

.home .head .navbar {
    padding: 0;
    background: transparent;
    border: none;
}
.home .head .navbar:before {
    opacity: 0;
}

.head {
    padding: 10px 0;
}

.eh-searchbox>ul li .nav-link {
    font-size: 12.5px;
}

.eh-mansetalt-item.eh-mansetalt-w-kpi {
    flex: 0 0 calc(50% - 20px);
}

.eh-mansetalt-w-kpi .eh-mansetalt-float-icon {
    top: 20px;
}
.site-header .head .navbar {
    padding: 0;
}
.site-header .header-buttons {
    display: none !important;
}

header .navbar-collapse .collapse-inner {
    padding: 15px 0;
}
.search-input-box.yuzyuze .search-input {
    padding: 0;
}


#yuzyuze-pane input.form-control.search-input {
    padding-left: 15px;
}

#yuzyuze-pane .search-input {
    font-size: 13px !important;
}

.searchbox-input .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0 9px;
    font-size: 11px !important;
}

#yuzyuze-pane input.form-control.search-input:before {
    content: 'asdasd';
}

.eh-hk-inner .eh-hk-pills a {
    font-size: 16px;
}

.event-item .event-content h3 {
    height: 52px;
    overflow: hidden;
}

.home .eh-nc-heading {
    flex-direction: column;
}

.uzman-register .list-body {
    background: #fff;
}

.register-form .btn-primary {
    font-size: .875em;
}

.register-form span {
    font-size: 12px;
}
.page-uye-ol .site-footer,
.page-giris-yap .site-footer,
.page-uzman-kayit .site-footer {
    display: none;
}

.page-uye-ol .site-breadcrumbs,
.page-giris-yap .site-breadcrumbs,
.page-uzman-kayit .site-breadcrumbs {
    display: none;
}
.page-uye-ol,
.page-giris-yap,
.page-uzman-kayit{
    position: relative;
	background-image: url(../images/_LoginBg.jpg);
	  background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-uye-ol:before,
.page-giris-yap:before,
.page-uzman-kayit:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #0058FF 0%, #0058FF 100%) lightgray 50% / cover no-repeat;
    background-blend-mode: color, normal;
    z-index: -1;
}
.page-uye-ol .mobile-bottom-nav,
.page-giris-yap .mobile-bottom-nav,
.page-uzman-kayit .mobile-bottom-nav {
    display: none;
}

.page-uye-ol header.site-header,
.page-giris-yap header.site-header,
.page-uzman-kayit header.site-header {
    background: transparent;
}
.uzman-register .list-body {
    background: transparent;
    padding-top: 30px;
}


.register-layout .register-layout__form.side {
    background: transparent;
}

.register-layout__form .register-form {
    background: transparent;
    position: relative;
    z-index: 11;
}

.register-layout {
    background: transparent;
    box-shadow: none;
    border: 1px solid #fff;
    border-radius: 15px;
    position: relative;
}

.register-layout:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 12px;
    box-shadow: inset 1px 1px 0 var(--lg-highlight), inset 0 0 5px var(--lg-highlight);
    pointer-events: none;
}

.register-layout:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--lg-bg-color);
    opacity: .5;
    border-radius: inherit;
}

.register-form span:not(.iti span) {
    color: #fff;
}
.register-layout .register-layout__form.side {
    position: relative;
    z-index: 1;
}
.cky-revisit-bottom-left {
    display: none !important;
}
.button-fields-randevu {
	display: none !important;
}

.uzman-detail-inner .uzman-item .uzman-list-end {
    display: block !important;
}
.button-fields-randevu {
	display: none !important;
}
.uzman-detail .uzman-img img {
    width: 90px;
    height: 90px;
}

.uzman-detail .uzman-detial.inner {}

.uzman-detail-inner .row>.col {
    max-width: 65%;
}

.uzman-detail-inner .small.uzman-list-lang {
    font-size: 11px;
}

.uzman-detail-inner  .uzman-item h5 {
    font-size: .875em;
}

.uzman-detail-inner .uzman-item .uzman-list-cat {}

.uzman-detail-inner .small.uzman-list-lang svg {
    width: 20px;
    height: 20px;
}
.uzman-detail-inner .uzman-list-cats .badge{
	display:none;
}
.uzman-detay-ozet {
    display: none;
}
.archive .site-breadcrumbs {
    display: none;
}

.uzman-detail-inner .uzman-item.card {
    border: 1px solid rgba(0,0,0,0.1) !important;
}
.tab-header-randevu div {
    padding: 12px 3px;
}

.tab-header-randevu div h3 {
    font-size: 13px;
}

.input-container-randevu input.package {
    font-size: 13px;
}

.randevu-cizelge-box .cizelge-wrapper {
    padding: 0;
}

.randevu-cizelge-box {
    padding: 0;
}

.cizelge-header .col {max-width: 79px;}
.service-modal .price {
    flex-direction: column;
}

.service-modal .price .munutes {
    font-size: 12px;
    white-space: nowrap;
}

.service-modal .detail h3 {
    font-size: 13px;
}

.service-modal .variation-count {
    font-size: 12px;
}
.popup-step2-variations .variation-option.card-like .price-number ins {
    font-size: 14px;
}

.popup-step2-variations .variation-option.card-like .price-number {
    font-size: 14px;
}

.popup-step2-variations .variation-option.card-like .card-left {max-width: 100%;}

.popup-option-cards {
    flex-direction: column;
}

.popup-step2-variations .variation-option.card-like .packet-offer > span {
    position: relative;
}

.popup-step2-variations .variation-option.card-like .price-number {
    text-align: center;
}

.popup-step2-variations .variation-option.card-like .pill {
    font-size: 12px;
}

.meta-pills {}

span.option-next {
    font-size: 14px;
}
.uzman-item .uzman-list-end .fw-semibold {
    margin: 9px 0;
}
.cizelge-warning .text {
    font-size: 13px;
}
.cizelge-header .col {
    font-size: 10px;
}

.cizelge-header .col > span {
    font-size: 10px;
}

.cizelge-header .col {
    max-width: 82px;
}
.archive .swal2-container{
    z-index: 9999;
}
.popup-step2-variations .variation-option.card-like .packet-name {
    font-size: 14px;
}
.etkinlik-tab-wrap .uzman-detail-inner .row>.col {
    max-width: 100%;
}

.site-breadcrumbs {
    padding: 12px 0;
}

.site-breadcrumbs .woocommerce-breadcrumb {
    font-size: 12px;
}
.event-list .eh-uzman-list-quick li a {
    padding: 10px 12px;
    height: 40px;
}

.customize-support .event-list {
    margin: 0;
}

.hizmet-wrapper .hizmet-item {
    flex-direction: column;
}

.hizmet-wrapper .hizmet-item img {
    max-width: 100%;
    min-width: 100%;
}

.eh-filters-in h1 {
    font-size: 1.25em;
}
.event-list .eh-uzman-list-quick li a {
    padding: 10px 12px;
    height: 40px;
}

.customize-support .event-list {
    margin: 0;
}

.hizmet-wrapper .hizmet-item {
    flex-direction: column;
}

.hizmet-wrapper .hizmet-item img {
    max-width: 100%;
    min-width: 100%;
}

.eh-filters-in h1 {
    font-size: 1.25em;
}
.kurumsal-hero>div .hero-content {padding-top: 20px;}

.kurumsal-hero {
    padding-top: 110px;

}

.kurumsal-hero .badge {
    font-size: 12px;
}

.kurumsal-hero .title {
    font-size: 2em;
}

.kurumsal-hero .description {
    font-size: .75em;
}

.kurumsal-hero .eh-hero-onayli {
    position: static;
}

.eh-nasilcalisir .eh-nc-copy {
    gap: 25px;
}

.eh-nc-step {
    font-size: 13px;
}

section.bilgi-banner {
    padding-top: 0;
    padding-bottom: 0;
}

.bilgi-banner-wrap .attachment-full {
    height: 200px;
    margin-top: -40px;
}

.bilgi-banner-wrap .bilgi-banner-inner {
    padding: 10px 30px 35px;
}

.eh-nc-heading {
    font-size: 1em;
    font-weight: 600;
}

.eh-sss .eh-panel-head-right p {
    font-size: 14px;
}

.eh-sss .accordion-item.active .accordion-header button {
    font-size: 16px;
}

.eh-sss .accordion-body {
    font-size: 13px;
}

.eh-sss .accordion-button {
    padding: 20px 15px;
}

.eh-sss .accordion-button::before {
    width: 28px;
    min-width: 28px;
}
.page-saglik-kosesi main.uzman-list {
    margin: 0;
}
.single section.hero {
    padding-top: 20px;
}

.post-hero-content .post-desc-content {
    max-width: 90%;
}

.post-img-content img {
    height: 250px;
}

.post-img-content {
    margin-bottom: 0;
}

.post-toc .toc-nav a {
    font-weight: 500 !important;
    font-size: 13px;
    padding: 7px 12px;
}

.post-layout .post-body h2, .post-layout .post-body h3 {
    font-size: 1.25em;
}

.post-layout .post-body {
    font-size: 14px;
}

.wp-block-buttons .wp-block-button__link {
}

.bilgilendirme-alert .alert {
    font-size: 13px;
}
.contact-body {
    margin-top: 0;
}

.eh-searchbox h2 {
    font-size: 16px;
}

.eh-contact .contact-faq-input {
    font-size: 12px !important;
}

.eh-searchbox {
    margin-bottom: 0 !important;
}

.contact-boxs .contact-box-item p {
    font-size: .8em;
}

.contact-boxs .contact-box-item i {
    width: 50px;
    height: 50px;
    min-width: 50px;
}

.contact-left {
    margin-bottom: 0;
}

.contact-tabs .eh-sss .accordion-item.active .accordion-header button {
    padding: 15px 10px;
}


.contact-tabs .eh-sss .accordion-item .accordion-item .accordion-button {
    font-size: 13px !important;
}

.contact-tabs .eh-sss .accordion-item .accordion-body {padding: 0 20px;}
.list-wrapper .uzman-item.card .uzman-img img{
	width:95px;
	height:95px;
}
section.eh-gorsel-box.eh-panel.eh-hakkimizda .row {
    display: flex;
    flex-direction: column-reverse;
}

.eh-dortlu-kutucuk .kutucuk-box>div h3 {
    font-size: 1em;
    font-weight: 600;
}
.eh-mansetalt-item.eh-mansetalt-w-trust {}

.eh-mansetalt-item.eh-mansetalt-w-experts {
    display: block;
}

.eh-mansetalt .eh-mansetalt-avatar {
    width: 85px;
    height: 70px;
}
div#ehFilterModal .modal-dialog {
    border-radius: 0 !important;
}

#ehFilterModal .modal-content {
    border-radius: 0;
}

#ehFilterModalBody .filter-box.isim-ara {
    display: none;
}

.filter-box {
    margin-bottom: 20px;
}

.filter-box h3 b {
    font-weight: 600;
}

.filter-box .select2-container--default .select2-selection .select2-selection__rendered {
    text-indent: 3px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: var(--Colors-Primary-200);
    color: var(--Colors-Primary-700);
    border-color: var(--Colors-Primary-200);
}
.eh-mdropdown .dropdown-item {
    padding: 9px 10px;
    font-size: 13px;
}
.kurumsal-hero .title {
    font-size: 1.8em !important;
}
.page-uzman-ol .kurumsal-hero .description{
	font-size:.875em;
}
.danisman-kurulu .row {
    flex-direction: row;
    align-items: flex-start !important;
    justify-content: flex-start !important;
}

.danisman-kurulu .uzman-list-desc {
    height: 120px;
    overflow: scroll;
}
}

/* OTP Input Boxes - Active State with Blink Animation */
.otp-box {
    transition: all 0.2s ease;
    cursor: pointer;
}

.otp-box.active {
    border-color: #4472C4 !important;
    background: #f0f6ff !important;
    animation: blink-border 0.8s ease-in-out infinite !important;
}

@keyframes blink-border {
    0%, 100% {
        border-color: #4472C4;
        box-shadow: 0 0 0 0 rgba(68, 114, 196, 0.4);
    }
    50% {
        border-color: #6b9aed;
        box-shadow: 0 0 0 3px rgba(68, 114, 196, 0.2);
    }
}

.otp-single-wrapper {
    cursor: pointer;
}

@media (min-width: 992px) and (max-width: 1100px) {
	#mainNavbar ul li a {
		white-space: initial;
        font-size: 13px;
	}

	main.uzman-detail {
		width: 100%;
	}
}

/*Şahan Kod Üstüne Kod Zorla mecbur*/
.uzman-detail {
    background-color: #f4f7f9;
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    color: #333;
    width: 100%;
}

.uzman-detail .container2 {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px;
}

.uzman-detail .row > .col-lg-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.uzman-detail .reviews-container {
    background-color: #fff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    margin-top: 20px;
    margin-bottom: 20px;
}

.uzman-detail .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    padding: 0 5px 15px 5px;
    border-bottom: 1px solid #f9f9f9;
}

.uzman-detail .header-rating-box { display: flex; align-items: center; gap: 6px; height: 100%; font-size:14px; }
.uzman-detail .header-star { font-size: 11px !important; color: #ffc107 !important; display: flex; align-items: center; justify-content: center; height: 100%; transform: translateY(-1px); }
.uzman-detail .rating-score { font-weight: 500; color: #212529; line-height: 1; display: flex; align-items: center; }

.uzman-detail .review-card { border-bottom: 1px solid #f0f0f0; padding-bottom: 30px; margin-bottom: 30px; }
.uzman-detail .review-card:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.uzman-detail .review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.uzman-detail .user-profile { display: flex; align-items: center; gap: 12px; }

.uzman-detail .avatar-box { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 600; font-size: 16px; overflow: hidden; object-fit: cover; }
.uzman-detail .avatar-patient { background-color: #5b86e5; color: #fff; box-shadow: 0 3px 6px rgba(91, 134, 229, 0.2); text-transform: uppercase; }
.uzman-detail .avatar-doctor-text { background-color: #EBF4FF; color: #5b86e5; border: 1px solid #dae8f9; }
.uzman-detail .avatar-doctor-img { background-color: #f0f0f0; border: 1px solid #eee; }

.uzman-detail .user-name { font-weight: 500; font-size: 14px; color: #222; }

.uzman-detail .stars { 
    color: #ffc107; 
    font-size: 12px; 
    letter-spacing: 2px; 
    width: auto !important; 
    white-space: nowrap !important; 
}

.uzman-detail .review-content { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 20px; }

.uzman-detail .review-meta-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; font-size: 12px; color: #999; }
.uzman-detail .meta-group-left { display: flex; align-items: center; gap: 8px; }
.uzman-detail .bullet { font-size: 4px; color: #ccc; vertical-align: middle; }

.uzman-detail .meta-tags-right { display: flex; align-items: center; gap: 20px; }
.uzman-detail .badge-clean { display: flex; align-items: center; font-weight: 500; color: #777; background: transparent; padding: 0; font-size: 12px; white-space: nowrap; }
.uzman-detail .badge-icon-clean { display: flex; align-items: center; justify-content: center; width: 16px; height: 16px; margin-right: 6px; }
.uzman-detail .badge-icon-clean svg { width: 14px; height: 14px; fill: #999; }

.uzman-detail .doctor-reply { background-color: #F8F9FB; border-radius: 16px; padding: 24px; border: none; }
.uzman-detail .doc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.uzman-detail .doc-name { font-size: 14px; font-weight: 500; color: #222; }
.uzman-detail .doc-text { font-size: 14px; color: #555; line-height: 1.6; }

.uzman-detail .doc-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; gap: 15px; }
.uzman-detail .doc-tags-left { display: flex; align-items: center; gap: 20px; }
.uzman-detail .doc-date-right { font-size: 12px; color: #999; white-space: nowrap; }

.uzman-detail .btn-show-more-wrapper { display: flex; flex-direction: column; align-items: center; justify-content: center; margin-top: 20px; text-align: center; border-top: 1px solid #f1f1f1; padding-top: 25px; }
.uzman-detail .btn-text-only { background: none; border: none; color: #5b86e5; font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 5px; transition: color 0.2s ease; text-decoration: none; cursor: pointer;}
.uzman-detail .btn-text-only:hover { color: #4a76c7; }
.uzman-detail .btn-text-only:disabled { color: #ccc; }

.uzman-detail #loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 15px; 
    width: 100%;
}

.uzman-detail .spinner-icon {
    color: #5b86e5;
    font-size: 20px;
}

.uzman-detail .spinner-text {
    color: #5b86e5;
    font-size: 14px;
    font-weight: 600;
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
}


@media (max-width: 992px) {
    .uzman-detail .container2 { max-width: 960px; }

    .uzman-detail .row > .col-lg-12 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 768px) {
    .uzman-detail .container2 { max-width: 720px; padding-left: 0; padding-right: 0; }
    .uzman-detail .section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .uzman-detail .review-meta-row { flex-direction: column; align-items: flex-start; gap: 12px; }
    .uzman-detail .meta-tags-right { width: 100%; flex-wrap:wrap; justify-content: flex-start; }
    
    .uzman-detail .reviews-container { 
        padding: 15px;
        border-radius: 16px; 
    }
    
    .uzman-detail .doc-footer { flex-direction: row !important; flex-wrap: nowrap !important; align-items: center; justify-content: space-between; gap: 10px; }
    .uzman-detail .doc-date-right { order: 0; margin: 0; width: auto; font-size: 11px; }
    .uzman-detail .doc-tags-left { width: auto; flex-shrink: 1; overflow: hidden; }
    .uzman-detail .doc-tags-left .badge-clean { font-size: 12px; }
}

@media (max-width: 576px) {
    .uzman-detail .container2 { max-width: 100%; }
	.uzman-detail .meta-tags-right {gap: 0;}
}

/* Şahan Kod: Multi Language System */

.btn-lang-desktop {
    width: 30px;
    height: 30px;
	padding:0;
    border: solid var(--Colors-Primary-400) 1px;
    /*background: transparent;
    color: #64748b;*/
	background-color: var(--Colors-Primary-400);
	color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
	outline: none;
}

.btn-lang-desktop svg{
	width: 24px;
	height: 24px;
}

.btn-lang-desktop:hover {
    border-color: var(--Colors-Primary-500);
	background-color: var(--Colors-Primary-500);
}

.user-separator {
    width: 1px;
    height: 24px;
    background-color: #e2e8f0;
}

.btn-lang-mobile {
    width: 30px;
    height: 30px;
	padding: 0	;
    /*border: solid var(--Colors-Primary-200) 1px;*/
	border: solid var(--Colors-Primary-400) 1px;
    background: var(--Colors-Primary-400);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

.btn-lang-mobile svg{
	width: 24px;
	height: 24px;
}


#regionalSettingsModal { z-index: 99999; }

@media (min-width: 575.98px) {

	#regionalSettingsModal .modal-content {
		border-radius: 16px;
		border: none;
		box-shadow: 0 15px 40px rgba(30, 41, 59, 0.12);
	}

}

#regionalSettingsModal .modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
}
#regionalSettingsModal .modal-title {
    color: #1e293b;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}
#regionalSettingsModal .btn-close { font-size: 12px; opacity: 0.5; }

#regionalSettingsModal .modal-body { padding: 24px; }

#regionalSettingsModal .form-label-custom {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 5px;
}
#regionalSettingsModal .form-label-custom i { color: #94a3b8; margin-right: 8px; font-size: 14px; }

#regionalSettingsModal .form-desc-custom {
    font-size: 12px;
    line-height: 1.4;
    color: #64748b;
    margin-bottom: 8px;
    display: block;
}

#regionalSettingsModal .form-select-custom {
    font-size: 13px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    font-weight: 500;
    cursor: pointer;
    background-color: #fff;
    transition: border-color 0.2s;
}
#regionalSettingsModal .form-select-custom:focus {
    border-color: #4475ea;
    box-shadow: 0 0 0 3px rgba(68, 117, 234, 0.1);
}

#regionalSettingsModal .link-switch-lang {
    font-size: 12px;
    font-weight: 600;
    color: #4475ea;
    text-decoration: none;
}

#regionalSettingsModal .btn-action-save {
    background-color: #4475ea;
    border: none;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    transition: background 0.2s;
}
#regionalSettingsModal .btn-action-save:hover { background-color: #3560c5; }

#regionalSettingsModal .btn-action-cancel {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    transition: all 0.2s;
}
#regionalSettingsModal .btn-action-cancel:hover { background-color: #f8fafc; color: #1e293b; }

.footer-sub .footer-logo-field img{
	max-width: inherit!important;
    width: auto!important;
    height: 28px!important;
}

.footer-sub .footer-links{
    font-size:12px;
}

.footer-sub .footer-links a{
    color: #8b8b8b;
}

.footer-sub .footer-links a:hover{
    color: #000000;
}

.footer-sub .e-health-link{
    text-decoration:none;
    color:#000; 
    font-size:16px;
}

.footer-sub .e-health-link:hover{
    text-decoration:underline;
}

.footer-sub .cert-icons{}

.footer-sub .cert-icons img {
    height: 45px;
    width: auto;
    transition: opacity 0.2s;
}

.footer-sub .cert-icons img:hover {
    opacity: 0.8;
}

.footer-sub .footer-divider{
    display: block;
    height: 35px;
    border-left: solid 1px #e9ecef;
    margin: 0 4px;
}

@media (max-width: 768px) {
	.footer-sub .cert-icons img {
		height: 38px;
	}
}

@media (max-width: 991px) {
    .footer-sub .footer-divider{
        display: none;
    }
}