 
	@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
	
	
	* {	-webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; }

	
	:root {
	  font-family: 'Inter', 'Helvetica Neue', sans-serif;
	  --font-regular: 400;
	  --font-bold: 600;
	  --btn-radius:6px;
	}
	
	html, body {height: 100%}

	html {
		font-family: var(--font-base);
		font-weight:var(--font-regular);
		line-height: 1.15;
		-webkit-text-size-adjust: 100%;
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	}
	
	
	body {
		margin: 0;
		font-family: var(--font-base);
		font-size: 1rem;
		font-weight: var(--font-regular);
		line-height: 1.5;
		color: #444;
		text-align: left;
		background-color:rgba(232,235,255,0.1);
	}
	
	.Page {
		min-height:calc(100% - 80px);
		padding:12px 0px;
	}
	

	
 
 	.Standart {
		float:left;
		width:100%;
		position:relative;
	}
	
 
	
	.Centerer { 	
		width:1180px;	
		margin:0 auto;  
		padding-left:0px;
		padding-right:0px; 
	} 
	
	@media only screen and (max-width:1228px) {
		.Centerer { 	
			width:calc(100%); 
			padding-left:24px;
			padding-right:24px;
		}  
	}
	
	
	
	
	
	
	.x_top {
		position:fixed;
		width:100%;
		border-bottom:0.1em solid rgba(234, 234, 234, 1);
		padding:16px 0px;
		background: linear-gradient(to bottom, #ffffff 0%, #f7f8fa 100%);
		text-shadow: 2px 2px 2px rgba(234, 234, 234, 1);
		z-index:999;
		height:80px;
	}
	
	
	.x_bottom {
		border-top:0.1em solid rgba(234, 234, 234, 1);
		padding:12px 0px;
		background: linear-gradient(to bottom, #ffffff 0%, #f7f8fa 100%); 
		z-index:999;
		height:80px;	
	}
	.x_bottom_in {
		font-size:14px;
		color:rgba(0,0,0,0.6);
		font-weight:400; 
		text-align:center
		
	}
	
	.x_bottom_in a {
		text-decoration:none;
		color:rgba(0,0,0,0.7);
		font-weight:500; 
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	.x_l {
		float:left;
		height:48px;
		width:48px;
		background-image:url(/Assets/Logo_Small.png);
		background-repeat:no-repeat;
		background-size:contain;
	}
	
	.x_t {
		float:left;
		height:48px;
		line-height:48px;
		padding-left:16px;
		text-decoration:none !important;
	}
	.x_a, .x_b {
		font-size:22px;
		font-weight:600
	}
	.x_a { color:#1e66b1 }
	.x_b { color:#f02e39 }


	h1.CountryTitle{
		font-size: 1.6rem; 
		line-height: 1.4;
		margin: 1rem 0;
		font-weight: 600;
	}
	
	.cityname_span {
		color:#333;
		font-weight:600;
	}

	.CityLink {
		float:left;
		width:100%;
		background: linear-gradient(to bottom, #ffffff 0%, #f7f8fa 100%);
		border-radius:6px;
		border:0.1em solid rgba(234, 234, 234, 1);
		padding:12px;
		margin-bottom:1rem;
		text-decoration:none;
		color:#555;
		border-left:5px solid #66CC00;
		transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
	}
	
	.CityLinkAll {
		border:0.1em solid rgba(214, 214, 214, 1);
		border-left:5px solid #1e66b1;
		transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
	}
	
	.CityLink:hover,  .CityLinkAll:hover {
		box-shadow: 0 6px 16px rgba(0,0,0,.08);
		transform: translateY(-1px);
	}






	
	/* Gender Box Selector Page Css */
	.GenderBox {
		float: left;
		width: 100%;
	}
	.GenderTitle {
		font-size: 1.25rem;
		font-weight:600;
		margin:16px 0px 28px 0px;
		text-align: center;
	}
	.GenderChoices {
		display: flex;
		gap:20px;
		flex-wrap: wrap;
	}
	.GenderOpt {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 10px 14px;
		border: 1px solid rgba(0, 0, 0, 0.4);
		border-radius: 12px;
		cursor: pointer;
		user-select: none;
		transition: box-shadow 0.18s ease, border-color 0.18s ease,
			transform 0.18s ease;
		min-width: 140px;
		flex: 1;
		text-decoration: none;
	}
	.GenderOpt:hover {
		border-color: rgba(0, 0, 0, 0.14);
		box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
		transform: translateY(-1px);
		text-decoration: none;
	}
	.GenderOpt input {
		position: absolute;
		opacity: 0;
		pointer-events: none;
	}
	.GenderOpt span {
		font-size: 1rem;
		font-weight: 600;
		color: rgba(44, 44, 44, 1);
		text-decoration: none;
	}
	.GenderOpt input:checked + span {
		text-decoration: none;
	}
	.GenderOpt:has(input:checked) {
		border-color: rgba(0, 0, 0, 0.22);
		box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
	}
	.GenderHint {
		margin-top: 20px;
		font-size: 0.9rem;
		opacity: 0.7;
		text-align: center;
	}
	
	@media (max-width: 520px) {
		.GenderOpt {
			min-width: 100%;
			margin-bottom: 12px;
			padding: 16px 3px;
		}
	}
	/* Gender Box Selector Page Css */




	.tiles{
		display: grid;
		grid-template-columns: repeat(3, 1fr); /* mobile */
		gap:18px;
	}
	
	@media (min-width: 992px){
		.tiles{
			grid-template-columns: repeat(8, 1fr); /* desktop */
		}
	}
	
	.tile {
		position: relative;
		aspect-ratio: 1 / 1;
		display: block;
		border-radius: 12px;
		overflow: hidden;
		background: linear-gradient(to bottom, #ffffff 0%, #f7f8fa 100%);
		border-radius:6px;
		border:0.2em solid rgba(204,204,204,1);
		overflow:hidden;
		filter: grayscale(25%);
		transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
		font-size:10px;
		text-align:center;
		text-decoration:none;
		color:rgba(0,0,0,0.6);
		padding-top:12px
	}
	
	.tile_f {
		border:0.2em solid #f02e39 !important
	}
	.tile_m {
		border:0.2em solid #1e66b1 !important
	}
	
	/* img tile'ı doldursun */
	.tile > img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}
	
	/* spinner overlay */
	.tile.is-loading::after{
		content: "";
		position: absolute;
		inset: 0;
		margin: auto;
		width: 28px;
		height: 28px;
		border-radius: 50%;
		border: 3px solid rgba(0,0,0,.15);
		border-top-color: rgba(0,0,0,.55);
		animation: spin .8s linear infinite;
	}
	
	.tile_in {
		position:absolute;
		left:0px;
		right:0px;
		bottom:0px;
		top:0px;
		background-repeat:no-repeat;
		background-size:cover;
		background-position:top center;
	}
	
	
	.tile_in_name {
		position:absolute;
		left:0px;
		right:0px;
		bottom:0px;
		padding:4px 0px;
		padding-top:22px;
		background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #ffffff 100%);
		font-size:10px;
		text-align:center;
		color:rgba(51,51,51,1);
		font-weight:700
	}	
	
	
	@keyframes spin { to { transform: rotate(360deg); } }
	
	
	.tile:hover {
		box-shadow: 0 6px 16px rgba(0,0,0,.08);
		transform: translateY(-1px);
	}


	
	
		
		
	.load-more-wrapper {
	  display: flex;
	  justify-content: flex-end;  
	  margin: 24px 0;
	}
 
	
	.load-more-btn {
		padding: 12px 28px;
		font-size: 15px;
		font-weight: 500;
		color: #333;
		cursor: pointer;
		
		border: 0.1em solid rgba(234, 234, 234, 1);
		padding: 14px 32px;
		background: linear-gradient(to bottom, #f9fafb 0%, #eef1f5 100%);
		border-radius: 8px;
		color:rgba(0,0,0,0.6);
		text-decoration:none;
		box-shadow: 0 2px 6px rgba(0,0,0,0.06);
		
		transition: all 0.2s ease;
	}
	
	 
	.load-more-btn:hover {
		box-shadow: 0 4px 10px rgba(0,0,0,0.08);
		transform: translateY(-1px);
	}
	
 
	.load-more-btn:active {
	  transform: translateY(0);
	  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
	}


	@media (max-width: 768px) {
	  .load-more-wrapper {
		justify-content: center;
		width: 100%;
	  }
	
	  .load-more-btn {
		width: 100%; 
		text-align:center;
	  }
	}
	