
	/******************** GENEL SAYFA ********************/
	:root {
		--kurumrenk: var(--bs-primary);
	  	--kurum-bodyrenk: #f4f5f7;
	  	--gradient-renk : linear-gradient(to left, #303c5e2e, #153464);
    	--breadcrumbs-renk: var(--gradient-renk);
    	--navbar-renk: linear-gradient(to left, #303c5ed9, #122f5a);
    	--anasayfa-renk: var(--gradient-renk);
    	--giris-renk: var(--gradient-renk);
    	--arabtn-renk: var(--kurumrenk);
    	--ozelborder-renk : var(--kurumrenk);
    	--ozelbtn-renk : var(--kurumrenk);
    	--ozelikon-renk : var(--kurumrenk);
    	--ozeltext-renk : var(--kurumrenk);
    	--swal2-confirm-button-background-color : var(--kurumrenk)!important;
	}

	@font-face {
		font-family: 'PT Sans Narrow';
		src: url('../fonts/PTSansNarrow-Regular.ttf') format('truetype');
	}


	html {
		font-family: 'PT Sans Narrow', sans-serif !important;
		font-size: 90%;
	}


	body {
	 	margin: 0;
	 	background-color: var(--kurum-bodyrenk);
		font-family: 'PT Sans Narrow', sans-serif !important;
		transition: 0.3s;
		padding-bottom :200px
	}

	mark{
	    padding: 0.005em 0.025em; /* dikey | yatay */
	    border-radius: 0.25rem;
	    background-color: #ffe06640;
	    color: inherit;
	}


	a{
		text-decoration: none;
	}

	.c-pointer{ cursor: pointer; }

	.c-grab{ cursor: grab; }

	.bg-modal-primary{
		background: #153464!important;
	}

	.bg-gradient-primary{
		background: var(--breadcrumbs-renk)!important;
	}

	.w-20{
		width: 20%;
	}

	.body-renk{
		background-color: var(--kurum-bodyrenk);
	}

	.alarm {
		animation: pulse 0.6s ease-in-out infinite alternate;
	}

	.alarmKisa {
		animation: flash 0.3s ease-in-out 3 alternate;
	}

	.alarmKisa-success {
		animation: flash 0.3s ease-in-out 3 alternate;
		background-color: #26964036;
	}	

	.icon-kurumsal{
		color : var(--ozelikon-renk)!important;
	}

	.text-kurumsal{
		color : var(--ozeltext-renk)!important;
	}

	.btn.btn-kurumsal {
		background: var(--ozelbtn-renk);
		transition: filter 0.3s ease;
		color: white;
	}

	.btn.btn-kurumsal:hover {
		filter: brightness(120%); 
	}

	@keyframes pulse {
		from { opacity: 1; }
		to { opacity: 0.4; }
	}

	@keyframes flash {
		from { opacity: 1; }
		to { opacity: 0.2; }
	}


	/******************** LIQUID SIDEBAR ********************/
	.sidebar {
	  position: fixed;
	  top: 50%;
	  left: 20px;
	  transform: translateY(-50%);
	  width: 68px;
	  height: auto;
	  max-height: 90vh;
	  background: linear-gradient(145deg,rgba(255, 255, 255, 0.25),rgba(255, 255, 255, 0.05));
	  backdrop-filter: blur(18px) saturate(160%);
	  -webkit-backdrop-filter: blur(18px) saturate(160%);
	  border-radius: 22px;
	  border: 1px solid rgba(255, 255, 255, 0.28);
	  overflow-x: hidden;
	  transition: width 0.45s cubic-bezier(.4,0,.2,1), background 0.4s ease, box-shadow 0.4s ease;
	  z-index: 10;
	}

	.sidebar:hover {
		width: 250px;
		background: linear-gradient(145deg,rgba(255, 255, 255, 0.35),rgba(255, 255, 255, 0.12));
		box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.5);
	}

	.sidebar .nav-link {
		position: relative;
		color: var(--bs-dark);
		white-space: nowrap;
		overflow: hidden;
		font-size: 0.92rem;
		padding: 0.85rem 1.2rem;
		height: 53px;
		display: flex;
		align-items: center;
		gap: 12px;
		border-radius: 14px;
		margin: 4px 8px;
		transition: color 0.3s ease,transform 0.3s ease,background 0.3s ease;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.sidebar .nav-link i {
		font-size: 18px;
		min-width: 24px;
	}

	.sidebar .nav-link span {
		opacity: 0;
		transform: translateX(-6px);
		transition: 0.35s ease;
	}

	.sidebar:hover .nav-link span {
		opacity: 1;
		transform: translateX(0);
	}

	.sidebar .nav-link::before {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(120deg,rgba(255,255,255,0.35),rgba(255,255,255,0.05));
		opacity: 0;
		transition: 0.4s ease;
		border-radius: inherit;
	}

	.sidebar .nav-link:hover::before {
		opacity: 1;
	}

	.sidebar .nav-link:hover {
		color: var(--ozelbtn-renk);
		transform: translateX(4px);
	}

	.sidebar .nav-link.active {
		background: var(--gradient-renk);
		color: #fff !important;
	}

	.sidebar::-webkit-scrollbar {
		display: none;
	}

	.sidebar.force-close {
		width: 68px !important;
	}

	.sidebar.force-close .nav-link span {
		width: 0px!important;
	}

	.sidebar.force-close .nav-link span {
		opacity: 0;
		transform: translateX(-6px);
	}

	.sidebar.sidebarGizle{
	    transform: translateX(-150%);
	}

	.sidebarAcBtn{
	    position: fixed;
	    top: 42%;
	    left: 0;
	    z-index: 9999;
	    background: #fff;
	    border-radius: 0 6px 6px 0;
	    padding: 12px 6px;
	    box-shadow: 2px 0 6px rgba(0,0,0,.15);
	    cursor: pointer;
	    display: none;
	    flex-direction: column;
	    align-items: center;
	    font-weight: 600;
	    letter-spacing: 1px;
	}

	.sidebarAcBtn span{
	    writing-mode: vertical-rl;
	    transform: rotate(180deg); 
	    white-space: nowrap;
	}

	/******************** ustAnaNavbar ********************/

	nav.ustAnaNavbar {
	  z-index: 2;
	}

	main > div.main-content {
	  min-height: calc(100vh);
	}


	.breadcrumbs-renk{
		background : var(--breadcrumbs-renk);
	}
	.navbar-renk{
		background : var(--navbar-renk);
	}

	.ustBilgiBar {
	    border-bottom: 1px dashed #9ea7af;
	}

	.border-bottom-dashed {
	    border-bottom: 1px dashed #9ea7af!important;
	}

	.border-dashed {
	    border: 1px dashed #9ea7af;
	}

	.rounded-soft {
		border-top-right-radius: 12px!important;
		border-bottom-left-radius: 12px!important;
	}

	@keyframes yanSonenAlarm {
	  0%   { background-color: #fff0f0; border-color: #dc3545; }
	  50%  { background-color: #ffe5e5; border-color: #f08080; }
	  100% { background-color: #fff0f0; border-color: #dc3545; }
	}

	.silAlarm {
	  animation: yanSonenAlarm 1s infinite!important;
	  transition: all 0.3s ease-in-out!important;
	}


	.ustAnaNavbar {
	    transition: background-color 0.5s ease, color 0.5s ease;
	}

	.ustAnaNavbar .kurumBaslik span.h5{
		text-shadow: 1px 1px 4px rgba(0,0,0,0.4)!important;
	}

	.ustAnaNavbar .kurumBaslik .slogan{
		font-size: 12px;
	}

	.kurumBaslik, .ustAnaNavbar .nav-link{
	    transition: color 1s ease;
	}

	.girisBtn {
	    transition: color .5s ease;
	    border-color: var(--bs-secondary);
	}

	.girisBtn:hover {
	    background-color: var(--ozelbtn-renk);
	    border-color: var(--ozelbtn-renk);
	    color: white!important;
	}

	.altKunyeBilgiler .yayinAltBilgiler{
	    font-size: .820rem;
	    background-color: var(--bs-light);
	    min-height: 27px;
	}


	.ozelModal .modal-header {
	    overflow: hidden;
	}

	.ozelModal .modal-title {
	    white-space: nowrap;
	    overflow: hidden;
	    text-overflow: ellipsis;
	    flex: 1 1 auto;
	    min-width: 0;
	}

	

    @media (min-width: 768px) {
    	.ustAnaNavbar {
    		min-height: 60px;
    	}
    }


	/*********************************yayinFormPage*******************************************/
	#yayinFormPage .koleksiyonSecimBtn{
	  height: 100%;
	}

	#yayinFormPage .arastirmaciItemSecili:hover, .arastirmaciItemSecili.active {
	   background: #d7d7e5!important;
	}

	#yayinFormPage .sortable-placeholder {
	  background-color: #e9ecef;
	  border: 2px dashed #ced4da;
	  height: 60px;
	  margin-bottom: 10px;
	  border-radius: 10px;
	}

	#yayinFormPage .stepper {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  overflow-x: auto;
	  position: relative;
	}

	#yayinFormPage .stepper-step {
	  position: relative;
	  flex: 1 1 0;
	  text-align: center;
	}

	#yayinFormPage .stepper-step::after {
	  content: '';
	  position: absolute;
	  top: 30%;
	  right: -45px;
	  width: 90px;
	  height: 3px;
	  background: var(--ozelbtn-renk);
	  transform: translateY(-50%);
	  z-index: 0;
	}

	#yayinFormPage .stepper-step:last-child::after {
	  display: none;
	}

	#yayinFormPage .step-icon {
	  width: 60px;
	  height: 60px;
	  background-color: #e9ecef;
	  color: #6c757d;
	  margin: 0 auto 8px auto;
	  font-size: 20px;
	  transition: all 0.3s ease;
	}

	#yayinFormPage .stepper-step.active .step-icon {
	  background-color: var(--ozelbtn-renk);
	  border: 2px dashed var(--bs-info);
	  color: white;
	}

	#yayinFormPage .step-content{
	  min-height:200px
	}

	.text-shadow {
	  text-shadow: 1px 1px 2px rgba(0,0,0,0.25);
	}



	/*********************************anasayafaPage*******************************************/

	#anasayafaPage #anasayfaArama {
        min-height: calc(100vh - 115px);
        background: var(--anasayfa-renk), url(/kurumsal/anasayfa.png);
        background-size: cover;
        background-position: center;
    }

    #anasayafaPage .kutusayac {
        background-color: rgba(255, 255, 255, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        color: #ffffff;
        z-index: 1;
        pointer-events: auto;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 15px;
        width: 100%;
    }

    #anasayafaPage .kutusayac:hover {
        transform: translateY(-15px) scale(1.05);
        z-index: 10;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    #anasayafaPage .arama-karti {
        margin-top: -100px;
        z-index: 0;
    }

    #anasayafaPage .anasayfaswiper {
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
        overflow: hidden;
    }

    #anasayafaPage .swiper-slide {
        background-position: center;
        background-size: cover;
        height: 110px;
        position: relative;
        display: flex;
        align-items: stretch;
        pointer-events: auto !important;
    }

    #anasayafaPage .swiper-wrapper {
        pointer-events: none;
    }

    #anasayafaPage .swiper-wrapper * {
        pointer-events: auto;
    }

    #anasayafaPage .swiper-button-next,
    #anasayafaPage .swiper-button-prev {
        color: #fff !important;
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 50%;
        padding: 10px;
    }

    #anasayafaPage .blur-container {
        max-height: 1500px;
        overflow: hidden;
        position: relative;
    }

    #anasayafaPage .blur-container::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;  
        background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
        pointer-events: none;
    }

    #anasayafaPage .ozel-kart-container {
        height: 210px;
        overflow: hidden;
        position: relative;
    }

    #anasayafaPage .ozel-kart-container span {
        cursor: pointer!important;
    }

    #anasayafaPage .bmsk-badge {
        display: inline-block;
        color: #3a3f51;
        border-radius: 0.5rem;
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;
        font-weight: 500;
    }

    #anasayafaPage .carousel-control-prev{
        left: -23px;
    }
    #anasayafaPage .carousel-control-next{
        right: -23px;
    }

    #anasayafaPage #populer-basliklar a{
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    #anasayafaPage #populer-basliklar a:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
    }

    #anasayafaPage #bmskCarousel {
      position: relative;
    }

    #anasayafaPage .bmsk-btn-group {
      position: absolute;
      bottom: 10px;
      right: 12px;
      display: flex;
      gap: 8px;
      z-index: 10;
    }

    #anasayafaPage .bmsk-btn-group .carousel-control-prev,
    #anasayafaPage .bmsk-btn-group .carousel-control-next {
      position: static;
      width: 30px;
      height: 30px;
      border: none;
      border-radius: 50%;
      background: rgba(255,255,255,0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    }

    #anasayafaPage .bmsk-btn-group i {
      font-size: 1.2rem;
    }

    #anasayafaPage .no-scrollbar::-webkit-scrollbar {
        display: none;
    }

    #anasayafaPage .no-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
        
    @media (max-width: 576px) {
        #anasayafaPage .swiper-slide {
            width: 45% !important;
            height: 100px !important;
        }
        #anasayafaPage .kutusayac {
            padding: 8px !important;
            font-size: 0.85rem;
        }
        #anasayafaPage .anasayfaswiper {
            padding: 10px 0;
        }
    }
    
    @media (min-width: 1367px) {
        #anasayafaPage #anasayfaArama {
            min-height: calc(100vh - 115px);
        }
    }

    @media (min-width: 1567px) {
        #anasayafaPage #anasayfaArama {
            min-height: 700px;
        }
    }



	/*********************************yayinDetayPage*******************************************/

	#yayinDetayPage #yayinAltTab .nav-link.active {
	  	color: #000 !important;
		border-bottom: 3px solid var(--ozelborder-renk)!important;
		background: transparent;
	}

	#yayinDetayPage .yayinDetayKapsayan {
	  	min-height: 100vh;
	  	background: var(--bs-arkarenk);
	}

	#yayinDetayPage .kurumsalIkonRenk {
	  	color: var(--ozelbtn-renk);
	}

	#yayinDetayPage .custom-scroll-tabs {
	    overflow-x: auto;
	    overflow-y: hidden;
	    display: flex;
	}

	#yayinDetayPage .custom-scroll-tabs::-webkit-scrollbar {
	    height: 0px;
	    background: transparent;
	}

	#yayinDetayPage .custom-scroll-tabs .nav-link {
	    white-space: nowrap;
	    padding-left: 15px;
	    padding-right: 15px;
	}

	@media (max-width: 768px) {

	    #yayinDetayPage #yayinAltTab .nav-link {
	      font-size: 0.85rem;
	      padding: 0.5rem 0.75rem;
	    }

	    #yayinDetayPage #yayinKapak{
	      max-width: 50%;
	    }

	    #yayinDetayPage #yayinNavbarMenu {
	        position: fixed;
	        bottom: 0px;
	        z-index: 1050;
	        background: rgba(var(--bs-body-bg-rgb), 0.95);
	        backdrop-filter: blur(10px);
	        width: 100%;
	        left: 0px;
	        border-top: 1px solid rgba(0,0,0,0.1);
	        box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
	        padding-bottom: env(safe-area-inset-bottom); /* iPhone çentiği için */
	    }

	    #yayinDetayPage #yayinNavbarMenu button {
	       padding: 15px!important;
	    }

	  }

	@media (min-width: 768px) {

	    #yayinSolMenu {
	      position: relative;
	      top: -90px;
	    }

	  }


	/*********************************arastirmaciPage*******************************************/

	#arastirmaciPage .ustBar {
	    height: 20vh;
	    background: var(--breadcrumbs-renk), url(/kurumsal/anasayfa.png);
	    background-size: cover;
	    background-position: center;
	}
	
	#arastirmaciPage .ustBar #particle {
	    position: absolute;
	    height: 150px;
	    width: 96%;
	    z-index: 0;
	    overflow: hidden;
	}    
	
	#arastirmaciPage .profilkapsayan{
	    position: relative;
	    top: -15vh;
	}

	#arastirmaciPage .profilkapsayan .profil-avatar{
	    width: 160px;
	    height: 160px;
	    /*object-fit: cover;*/
	}
	
	#arastirmaciPage .profilKart{
	    min-height: 270px;
	}


	#arastirmaciMenuKapsayan{
	    position:sticky;
	    top: 0px;
	    z-index: 2;
	    background-color: var(--kurum-bodyrenk);
	}


	#arastirmaciMenu {
	    scrollbar-width: thin;
	    scrollbar-color: var(--bs-primary) transparent;
	    white-space: nowrap;
	}

	#arastirmaciPage #arastirmaciMenu li button{
	    min-width: 120px;
	}


	#arastirmaciPage #arastirmaciMenu li button.active{
	    border-bottom: 4px solid var(--ozelborder-renk);
	}

	#arastirmaciPage #yayinlar-tab-pane .yayin-filtre-btn.active{
	    background-color: #93b0ca!important;
	}

	#arastirmaciPage #arastirmaciMenu li .profil-avatar-tabs{
	    width: 37px;
	    height: 37px;
	    object-fit: cover;
	}

	#arastirmaciPage #bmskGraph > svg, #arastirmaciPage #arastirmaciGraph > svg{
	    height: 100%;
	    width: 100%;
	    object-fit: cover;
	}

	#arastirmaciPage .platformlinkler{
	    width:25px; 
	    height:25px;
	    overflow: hidden;
	}


	/*********************************bmskPage*******************************************/

	#bmskPage .bmsk-card {
	  overflow: hidden;
	  transition: transform .2s ease, box-shadow .2s ease;
	}

	#bmskPage .bmsk-card:hover {
	  transform: translateY(-5px);
	  box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
	}

	#bmskPage .bmskImage {
	  max-height: 120px;
	  object-fit: contain;
	}

	#bmskPage .bmsk-badge {
	  display: inline-block;
	  background-color: #eef1f8;
	  color: #3a3f51;
	  border-radius: 0.5rem;
	  padding: 0.35rem 0.75rem;
	  font-size: 0.8rem;
	  margin-right: 0.4rem;
	  margin-bottom: 0.4rem;
	  font-weight: 500;
	}

	#bmskPage .bmsk-badge[data-type="1"] {
	  background-color: #e3f2fd;
	  color: #0d47a1;
	}

	#bmskPage .bmsk-badge[data-type="2"] {
	  background-color: #e8f5e9;
	  color: #1b5e20;
	}


	@media (max-width: 768px) {
	  #bmskPage .bmskImage {
	    max-height: 150px;
	    margin-bottom: 1rem;
	  }
	}



	/*********************************aramaPage*******************************************/

	#aramaPage .menuorta {
        position: sticky;
        top: 0rem;
        z-index: 1;
    }

    #aramaPage .menuorta .nav-item {
        border-right: 1px solid #dee2e6;
    }

    #aramaPage .menuorta .nav-item:last-child {
        border-right: none;
    }

    #aramaPage .menuorta .nav-item.modul-active {
        border-bottom: 0.2rem solid var(--ozelborder-renk);
    }

    #aramaPage .aramaustbar {
        height: 150px;
        background: var(--breadcrumbs-renk), url(/kurumsal/anasayfa.png);
        background-size: cover;
        background-position: center;
    }

    #aramaPage .aramaustbar #particle {
        position: absolute;
        height: 160px;
        width: 95%;
        z-index: 0;
        overflow: hidden;
    }

    #aramaPage .facet-baslik{
        border: none;
        border-left: 3px solid var(--ozelborder-renk);
    }

    #aramaPage .facet-baslik:hover{
        border: none;
        border-left: 3px solid var(--bs-primary);
    }

    #aramaPage .aramaFiltrelemeDegerler{
        border-top-left-radius: 2px;
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 2px;
        border-left: 3px solid var(--ozelborder-renk)!important; 
    }

    #aramaPage .aramaFiltrelemeDegerler .kapat{
        color: var(--bs-danger)!important;
    }

    #aramaPage .btn-underline-bottom{
        border-bottom: 2px dotted var(--bs-primary);
    }

    #aramaPage .ozelgosterim-filtre{
        border-left: 4px solid var(--ozelborder-renk);
    }

    @media (max-width: 768px) {
        #aramaPage .aramaustbar {
            height: 13rem;
        }

		#aramaPage #solFiltreMenu.acik {
		    display: block !important;
		    position: fixed;
		    top: 0;
		    left: 0;
		    z-index: 9999;
		    width: 100%;
		    height: 100vh;
		    overflow-y: auto;
		    background: #fffbfb;
		    padding: 20px;
		}
    }

    #aramaPage .facetKapsayan input[type='text']:focus{
        box-shadow: none;
    }


    #aramaPage .siralama-dropdown{
        position: absolute; 
        z-index: 6666;
    }

    #aramaPage form#siralaForm{
        position: relative; 
        z-index: 3
    }

    #aramaPage .excelExportBtn{
        z-index: 6;
    }

    #aramaPage .yayinAramaDisLink > img{
        height: 20px;
    }

	@media (max-width: 767px) {
	    #aramaPage #mainNav .nav-link {
	        padding: .45rem .6rem;
	    }

	    #aramaPage #mainNav i {
	        font-size: 1.25rem;
	    }
	}

	/*********************************koleksiyonlarPage*******************************************/

	#koleksiyonlarPage .kirilim{
	    border-left: 3px solid var(--ozelborder-renk);
	    border-bottom: 1px dashed #9ea7af!important;
	}


	/*********************************cookiePopup*******************************************/

	#cookiePopup {
	  position: fixed;
	  bottom: -120px;
	  right: 20px;
	  width: 350px;
	  max-width: 90%;
	  transform: translateX(0%) translateY(20px);
	  padding: 16px 18px;
	  background: linear-gradient(145deg, rgb(255 255 255 / 78%), rgba(255, 255, 255, 0.12));
	  backdrop-filter: blur(16px) saturate(160%);
	  -webkit-backdrop-filter: blur(16px) saturate(160%);
	  border-radius: 18px;
	  box-shadow: 0 20px 40px rgba(0,0,0,0.35), inset 0 1px 1px rgba(255,255,255,0.45);
	  z-index: -10;
	  opacity: 0;
	  transition: 0.8s ease;
	}

	#cookiePopup.show {
		bottom: 20px;
		right: 20px;
		z-index: 20;
		opacity: 1;
		transform: translateY(0);
	}

	#cookiePopup .cookie-emoji {
		right: 25px;
		top:10px;
		opacity: 0.2;
		font-size: 110px;
		position: absolute;
	}

	#cookiePopup .btn {
		position: relative;
		z-index: 99;
		background-color: var(--ozelbtn-renk);
	}

	/*********************************girisPage*******************************************/

	#girisPage{
        position: relative;
        background: var(--giris-renk), url(/kurumsal/giris.png);
        background-size: cover;
        background-position: center;
    }

    #girisPage:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(/assets/img/tarama.gif);
        opacity: 0.2;
    }

    #girisPage .kurumLogoKapsayan{
    	position: relative;
        z-index: 1;
    }

	@media (max-width: 767px) {
	    #girisPage {
	        padding-top: 70px;
	        padding-bottom: 70px;
	    }
	}

	/*********************************dogrulamaPage*******************************************/

    #dogrulamaPage {
        background: var(--giris-renk), url(/kurumsal/giris.png) center/cover no-repeat;
        position: relative;
        z-index: 1;
    }
    #dogrulamaPage::before {
        content: ''; position: absolute; inset: 0;
        background: url(/assets/img/tarama.gif); opacity: 0.15; z-index: -1;
    }

    #dogrulamaPage .captcha-area { 
        width: 300px; 
        height: 150px; 
        position: relative; 
        overflow: hidden; 
        background-repeat: no-repeat;
        background-position: center;
        background-size: 300px 150px !important;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    #dogrulamaPage .puzzle-shape {
        width: 50px; height: 50px; 
        position: absolute;
        clip-path: polygon(0% 35%, 35% 35%, 35% 0%, 65% 0%, 65% 35%, 100% 35%, 100% 65%, 65% 65%, 65% 100%, 35% 100%, 35% 65%, 0% 65%);
    }
    
    #dogrulamaPage .puzzle-hole { 
        background: #000000c7; 
        box-shadow: inset 0 0 5px rgba(0,0,0,0.8); 
        z-index: 10; 
    }
    
    #dogrulamaPage .puzzle-piece {
        left: 0; 
        z-index: 20;
        background-repeat: no-repeat;
        background-size: 300px 150px !important; 
        filter: drop-shadow(0 0 4px rgba(255,255,255,0.9));
    }

    #dogrulamaPage .custom-range {
        -webkit-appearance: none;
        width: 100%;
        height: 50px;
        background: #f0f2f5;
        border-radius: 25px;
        outline: none;
        padding: 2px;
        box-shadow: inset 0 2px 6px rgba(0,0,0,0.1);
        cursor: pointer;
        transition: background 0.3s;
    }

    #dogrulamaPage .custom-range::-webkit-slider-thumb {
        position: relative;
        bottom: 14px;
        -webkit-appearance: none;
        appearance: none;
        width: 42px; 
        height: 42px;
        background-color: #fff;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%230d6efd' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 50%; /* Tam yuvarlak */
        box-shadow: 0 3px 8px rgba(0,0,0,0.15); /* Hafif gölge */
        border: 2px solid transparent;
        cursor: grab;
        transition: all 0.2s ease;
    }

    #dogrulamaPage .custom-range::-webkit-slider-thumb:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 12px rgba(0,0,0,0.2);
    }

    #dogrulamaPage .custom-range:active::-webkit-slider-thumb {
        cursor: grabbing;
        background-color: #f8f9fa;
        transform: scale(0.95);
    }

    #dogrulamaPage .is-valid .custom-range { background: #d1e7dd; }

    #dogrulamaPage .is-valid .custom-range::-webkit-slider-thumb {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23198754' viewBox='0 0 16 16'%3E%3Cpath d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z'/%3E%3C/svg%3E");
        box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.2);
    }

    #dogrulamaPage .is-invalid .custom-range { background: #f8d7da; }
    
    #dogrulamaPage .is-invalid .custom-range::-webkit-slider-thumb {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23dc3545' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.2);
    }

	@media (max-width: 767px) {
	    #dogrulamaPage {
	        padding-top: 70px;
	        padding-bottom: 70px;
	    }
	}


	/*********************************pulseLinkeGit*******************************************/

	@keyframes pulseLinkeGit {
	    0% { transform: scale(1); }
	    50% { transform: scale(1.1); }
	    100% { transform: scale(1); }
	}

	#loaderLogo {
	    animation: pulseLinkeGit 1s infinite;
	    height: 90px;
	    z-index: 220;
	}