#preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.loader-logo {
	width: 200px;
	height: auto;
	margin-bottom: 20px;
}

.spinner {
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #00eaff;
  border-right-color: #00eaff;
  animation: spin-outer 2s linear infinite;
}

.spinner::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-left-color: #ff007f;
  border-bottom-color: #ff007f;
  animation: spin-inner 1.5s linear infinite reverse;
}

.spinner::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #f7ff00;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-center 1s ease-in-out infinite alternate;
  box-shadow: 0 0 10px #f7ff00, 0 0 20px #f7ff00;
}

@keyframes spin-outer {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-inner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-center {
  from {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.7;
  }
  to {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

/* Sticky header */
.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1030;
}

.placeholder {
	height: 70px;
	/* navbar yüksekliği kadar */
}
.border-left-primary {
	border-left: .25rem solid #4e73df !important;
}

.text-primary {
	color: #4e73df !important;
}

.border-left-success {
	border-left: .25rem solid #1cc88a !important;
}

.text-success {
	color: #1cc88a !important;
}

.border-left-info {
	border-left: .25rem solid #36b9cc !important;
}

.text-info {
	color: #36b9cc !important;
}

.border-left-warning {
	border-left: .25rem solid #f6c23e !important;
}

.text-warning {
	color: #f6c23e !important;
}

.border-left-secondary {
	border-left: .25rem solid #858796 !important;
}

.text-secondary {
	color: #858796 !important;
}

.border-left-danger {
	border-left: .25rem solid #e74a3b !important;
}

.text-danger {
	color: #e74a3b !important;
}

.text-gray-300 {
	color: #dddfeb !important;
}

.text-gray-400 {
	color: #d1d3e2 !important;
}

.text-gray-800 {
	color: #5a5c69 !important;
}

.text-xs {
	font-size: .7rem;
}

.shadow-sm {
	box-shadow: 0 .125rem .25rem 0 rgba(58, 59, 69, .2) !important;
}

.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*=col-] {
	padding-right: 0;
	padding-left: 0;
}

.card .card-body {
	padding: 1rem;
	/* Kart içi boşluğu ayarlar */
}

.card .btn {
	font-size: 0.8rem;
	padding: 0.3rem 0.75rem;
}

/* Buton boyutunu ayarlar */

.plan-card {
	transition: transform .2s ease-in-out, box-shadow .2s ease-in-out;
	overflow: hidden;
	/* Kenarlıklar veya taşan öğeler için */
}

.plan-card:hover {
	transform: translateY(-5px);
	/* Kartı hafifçe yukarı kaldır */
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
	/* Gölgeyi belirginleştir */
}

.plan-card .card-body {
	padding: 1rem;
	/* İç boşluğu ayarla */
}

.plan-card .badge-danger {
	font-size: 0.65rem;
	/* Hot etiketini biraz küçült */
	padding: 0.2em 0.5em;
	vertical-align: middle;
	/* Dikey hizalama */
}

.opacity-75 {
	opacity: 0.75;
}

.plan-card .btn {
	padding: 0.5rem 0.75rem;
	/* Buton boyutunu ayarla */
	font-size: 0.85rem;
}

/* Mobil cihazlarda font boyutlarını biraz küçültebiliriz (isteğe bağlı) */
@media (max-width: 575.98px) {
	.plan-card h5 {
		font-size: 1rem;
	}

	.plan-card .h4 {
		font-size: 1.25rem;
	}

	.plan-card .small {
		font-size: 75%;
	}

	.plan-card .btn {
		font-size: 0.8rem;
		padding: 0.4rem 0.6rem;
	}

	.plan-card .fa-2x {
		font-size: 1.75em;
		/* İkonu mobilde biraz küçült */
	}
}

.bottom-nav-custom {
	height: 65px;
	align-items: stretch;
	padding: 0;
}

.bottom-nav-item {
	color: #6c757d;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0.5rem 0.25rem;
	line-height: 1.1;
	transition: color 0.2s ease-in-out;
	position: relative;
	overflow: visible;
}

.bottom-nav-item:hover {
	color: #007bff;
	text-decoration: none;
}

.bottom-nav-item.active {
	color: #007bff;
	font-weight: bold;
}

.bottom-nav-label {
	font-size: 0.65rem;
	display: block;
	margin-top: 2px;
}

.bottom-nav-item-center {
	padding-top: 0;
}

.bottom-nav-center-icon {
	background-color: #007bff;
	color: white;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	position: relative;
	top: -15px;
	font-size: 1.2rem;
	z-index: 1;
}

.bottom-nav-item-center:hover .bottom-nav-center-icon {
	background-color: #0056b3;
}

.bottom-nav-item-center.active .bottom-nav-center-icon {
	background-color: #0056b3;
}

.bottom-nav-item-center .bottom-nav-label {
	position: relative;
	top: -15px;
}

.bottom-nav-spacer {
	height: 65px;
	display: block;
}

body {
	padding-bottom: 65px;
}

@media (min-width: 768px) {
	body {
		padding-bottom: 0;
	}

	.bottom-nav-spacer {
		display: none !important;
	}

	.bottom-nav-custom {
		display: none !important;
	}
}

/* Chart */
.chart-wrapper {
	position: relative;
	height: 45vh;
	min-height: 250px;
	width: 100%;
	/* Enin 100% olduğunu təmin et */
}

@media (max-width: 576px) {
	.chart-wrapper {
		height: 40vh;
	}
}

/* Başlıq üçün yuxarı və aşağı boşluq */
h2.chart-title {
	margin-top: 1rem;
	margin-bottom: 0.5rem;
	/* Başlığın kənarlara yapışmaması üçün standart container paddingi */
	padding-left: 15px;
	padding-right: 15px;
}

/* Qrafik row-unun daxili boşluqlarını (gutter) ləğv et */
.chart-row.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.chart-row.no-gutters>.col-12 {
	padding-right: 0;
	padding-left: 0;
}

/* Mobile app banner */
.mobile-app-banner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1050;
	/* Bootstrap modalından (1050) bir az aşağı və ya ona bərabər ola bilər */
	opacity: 0;
	/* Başlanğıcda görünməz */
	transition: opacity 0.5s ease-in-out;
	/* Görünmə effekti */
}

.mobile-app-banner.show {
	opacity: 1;
	/* Görünür etmək üçün */
}

/* Balaca ekranlarda yaxınlaşdırma düyməsinin ölçüsünü tənzimləmək üçün */
@media (max-width: 575.98px) {
	.mobile-app-banner .close {
		/* padding: 0.25rem 0.5rem; */
		/* Lazım olarsa ölçünü tənzimləyin */
	}

	.mobile-app-banner .banner-text {
		font-size: 0.9rem;
		/* Balaca ekranlarda mətni bir az kiçildin */
	}
}

/* Bootstrap 'close' düyməsinin default stilini bir qədər üstələmək */
.mobile-app-banner .close {
	/* position: relative;
	top: auto;
	right: auto; */
	padding: 0.25rem 0.5rem;
	/* Daha yaxşı klik sahəsi */
	text-shadow: none;
	/* Kölgəni qaldır */
	opacity: 0.7;
}

.mobile-app-banner .close:hover {
	opacity: 1;
}


/* Language selector */
.language-selector-button {
	font-size: 0.9rem;
	font-weight: 500;
	padding: 0.55rem 0.75rem;
	border-radius: 50px;
	background-color: #e7f1ff;
	color: #0056b3 !important;
	border: 1px solid #b8d8ff;
	box-shadow: 0 2px 4px rgba(0, 123, 255, 0.1);
	transition: all 0.25s ease-in-out;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	margin-right: 5px;
}

.language-selector-button:hover,
.language-selector-button:focus {
	box-shadow: 0 4px 10px rgba(0, 123, 255, 0.15);
	transform: translateY(-1px);
	background-color: #d0e3ff;
	border-color: #a0caff;
	color: #004085;
}

.language-selector-button .current-flag {
	width: 22px;
	height: 16px;
	border-radius: 3px;
	margin-right: 0;
	display: inline-block;
	background-size: cover;
	background-position: center;
	flex-shrink: 0;
	border: 1px solid #dee2e6;
}

@media (min-width: 576px) {
	.language-selector-button {
		padding: 0.6rem 1.1rem;
	}

	.language-selector-button .current-flag {
		margin-right: 8px;
	}
}

.language-selector-button .btn-text {
	vertical-align: middle;
	font-weight: 500;
}

#languageSelectModalUnique .modal-content {
	border-radius: 18px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
	border: none;
	overflow: hidden;
}

#languageSelectModalUnique .modal-header {
	background: linear-gradient(to right, #6a82fb, #fc5c7d);
	color: white;
	border-bottom: none;
	padding: 1.1rem 1.6rem;
	border-top-left-radius: 18px;
	border-top-right-radius: 18px;
	position: relative;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

#languageSelectModalUnique .modal-header .close {
	color: rgba(255, 255, 255, 0.85);
	opacity: 1;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	font-size: 1.9rem;
	padding: 0.5rem 1rem;
	margin: -0.5rem -1rem -0.5rem auto;
}

#languageSelectModalUnique .modal-header .close:hover {
	color: white;
}

#languageSelectModalUnique .modal-title {
	font-weight: 600;
	font-size: 1.25rem;
	display: flex;
	align-items: center;
}

#languageSelectModalUnique .modal-title .title-icon {
	margin-right: 10px;
	opacity: 0.9;
}

#languageSelectModalUnique .modal-body {
	padding: 0;
	background-color: #fdfdff;
}

#languageSelectModalUnique .language-list .list-group-item {
	border: none;
	padding: 0.9rem 1.6rem;
	font-size: 1rem;
	transition: all 0.25s ease-in-out;
	color: #5a6268;
	cursor: pointer;
	display: flex;
	align-items: center;
	background-color: transparent;
	border-bottom: 1px solid #f0f3f7;
}

#languageSelectModalUnique .language-list .list-group-item:last-child {
	border-bottom: none;
	border-bottom-left-radius: 18px;
	border-bottom-right-radius: 18px;
}

#languageSelectModalUnique .language-list .list-group-item:hover,
#languageSelectModalUnique .language-list .list-group-item:focus {
	background-color: rgba(106, 130, 251, 0.08);
	color: #343a40;
	transform: translateX(4px);
}

#languageSelectModalUnique .language-list .list-group-item.active {
	background-color: rgba(106, 130, 251, 0.15);
	color: #2c3e50;
	font-weight: 500;
}

#languageSelectModalUnique .language-list .list-group-item.active .list-flag-icon {
	box-shadow: 0 0 0 2px rgba(106, 130, 251, 0.5);
}

#languageSelectModalUnique .list-flag-icon {
	width: 28px;
	height: 20px;
	margin-right: 15px;
	border-radius: 4px;
	object-fit: cover;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
	vertical-align: middle;
	background-size: cover;
	background-position: center;
	flex-shrink: 0;
}

#languageSelectModalUnique .language-name {
	flex-grow: 1;
}

.language-selector-button .current-flag.flag-tr,
#languageSelectModalUnique .list-flag-icon.flag-tr {
	background-image: url('https://flagcdn.com/w40/tr.png');
}

.language-selector-button .current-flag.flag-us,
#languageSelectModalUnique .list-flag-icon.flag-us {
	background-image: url('https://flagcdn.com/w40/us.png');
}

.language-selector-button .current-flag.flag-en,
#languageSelectModalUnique .list-flag-icon.flag-en {
	background-image: url('https://flagcdn.com/w40/us.png');
}

.language-selector-button .current-flag.flag-es,
#languageSelectModalUnique .list-flag-icon.flag-es {
	background-image: url('https://flagcdn.com/w40/es.png');
}

.language-selector-button .current-flag.flag-fr,
#languageSelectModalUnique .list-flag-icon.flag-fr {
	background-image: url('https://flagcdn.com/w40/fr.png');
}

.language-selector-button .current-flag.flag-de,
#languageSelectModalUnique .list-flag-icon.flag-de {
	background-image: url('https://flagcdn.com/w40/de.png');
}

.language-selector-button .current-flag.flag-ru,
#languageSelectModalUnique .list-flag-icon.flag-ru {
	background-image: url('https://flagcdn.com/w40/ru.png');
}

.language-selector-button .current-flag.flag-az,
#languageSelectModalUnique .list-flag-icon.flag-az {
	background-image: url('https://flagcdn.com/w40/az.png');
}