:root {
	--primary-color: #33aacc;
	--text-darkest: #184670;
	--text-dark: #336699;
	--text-light: #6ba1b5;
	--text-lightest: #f0f0f0;
	--bg-primary: #ffffff;
	--bg-secondary: #ffffff;
	--bg-light: #abcdef;
	--bg-lightest: #ddeeff;
	--bg-dark: #234567;
	--bg-darkest: #123456;

	--bg:       #f0f2f7;
	--card-bg:  #ffffff;
	--border:   #e4e8f0;
	--shadow:   0 2px 16px rgba(60,80,140,.08), 0 1px 4px rgba(60,80,140,.05);
	--accent:   #3a5bd9;
	--text:     #1a2035;
	--muted:    #6b7a9e;
	--label:    #3d4b6e;
	--input-bg: #f7f8fc;
	--input-focus-shadow: 0 0 0 3px rgba(58,91,217,.13);
	--radius:   14px;
	--radius-sm: 8px;
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-darkest);
	justify-content: center; /* bunu ekle */
}





/* ¦¦ PRELOADER ¦¦ */
#preloader {
  position:fixed;
  inset:0;
  z-index:2000;
  background:rgba(192,192,192,.55);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:20px;
}

#preloader.open-left {
  clip-path:inset(0 50% 0 0);
  transform:translateX(-100%);
  transition:transform 950ms cubic-bezier(.76,0,.24,1);
}
#preloader.open-right {
  clip-path:inset(0 0 0 50%);
  transform:translateX(100%);
  transition:transform 950ms cubic-bezier(.76,0,.24,1);
}

/* logo */
#logo-wrap {
  position:relative;
  flex-shrink:0;
}

#logo-wrap img {
  position:absolute; inset:0;
  display:block;
}

#logo-dim   { opacity:0.18; }
#logo-sharp { clip-path:inset(var(--clip-top,100%) 0 0 0); }

/* label */
#loader-label {
  color:var(----text-dark);
  font-size:.7rem;
  letter-spacing:.25em;
  white-space:nowrap;
  transition:opacity .3s;
}







/* Main Header */
#main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-nav {
    padding: 8px 0;
}


.logo img {
    max-height: 80px;
    transition: opacity 0.3s;
}
.logo img:hover {
    opacity: 0.8;
}
@media (max-width: 991px) {
	.logo img {
		max-height: 50px;
	}
}


/* Main Menu (Used for both Desktop & Mobile) */
.main-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    color: var(--text-darkest);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
	white-space: nowrap;
}

.main-menu > li > a:hover {
    color: var(--primary-color);
}

.dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s;
    z-index: 1;
}

.dropdown-icon.rotated {
    transform: rotate(180deg);
}


/* Dropdown Level 1 */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
	white-space: nowrap;
    min-width: 250px;
    background: var(--bg-primary);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
	z-index: 123;
}

.main-menu > li:hover > .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom li {
    list-style: none;
    position: relative;
}

.dropdown-menu-custom > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    color: var(--text-darkest);
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu-custom > li > a:hover {
    background-color: var(--bg-lightest);
    color: var(--primary-color);
    /* padding-left: 20px; */
}

.dropdown-toggle-icon {
    transition: transform 0.3s;
    font-size: 12px;
    z-index: 1;
}

.dropdown-toggle-icon.rotated {
    transform: rotate(180deg);
}

.dropdown-menu-custom .has-children > a .dropdown-toggle-icon {
    position: absolute;
    right: 10px;
    top: 15px;
    transform: none;
    pointer-events: none;
}

.dropdown-menu-custom .has-children > a .dropdown-toggle-icon.rotated {
    transform: rotate(180deg);
}

/* Nested Dropdowns (Accordion Style) */
.nested-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: var(--bg-lightest);
    padding-left: 30px;
    list-style: none;
}

.nested-dropdown .nested-dropdown {
    padding-left: 20px;
}

.nested-dropdown.active {
    max-height: 1000px;
}

.nested-dropdown li {
    position: relative;
}

.nested-dropdown li a {
    padding: 10px 10px 10px 0;
    display: block;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    border-bottom: 1px solid var(--text-lightest);
}

.nested-dropdown li a:hover {
    background-color: var(--bg-lightest);
    color: var(--primary-color);
    /* padding-left: 5px; */
}

.nested-dropdown .has-children > a .dropdown-toggle-icon {
    position: absolute;
    right: 10px;
    top: 15px;
    transform: none;
    pointer-events: none;
}

.nested-dropdown .has-children > a .dropdown-toggle-icon.rotated {
    transform: rotate(180deg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-darkest);
    cursor: pointer;
    transition: color 0.3s;
    padding: 6px;
    align-items: center;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

/* Mobile Menu Wrapper */
.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: var(--bg-primary);
    z-index: 1999;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-wrapper.active {
    left: 0;
}

.mobile-menu-header {
    padding: 15px;
    border-bottom: 1px solid var(--text-lightest);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-darkest);
}


/* Mobile Menu Content Styles */
.mobile-menu-content {
    padding: 0;
}

.mobile-menu-content .main-menu {
    display: block;
    padding: 0;
}

.mobile-menu-content .main-menu > li {
    border-bottom: 1px solid var(--text-lightest);
}

.mobile-menu-content .main-menu > li > a {
    padding: 10px;
    justify-content: space-between;
    position: relative;
	white-space: normal;
}


.mobile-menu-content .dropdown-menu-custom {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin: 0;
	white-space: normal;
    background-color: var(--bg-lightest);
}

.mobile-menu-content .dropdown-menu-custom.active {
    max-height: 1000px;
}

.mobile-menu-content .dropdown-menu-custom > li > a {
    border-bottom: 1px solid var(--text-lightest);
	padding: 10px 0;
}

.mobile-menu-content .has-children > a .dropdown-toggle-icon {
    position: absolute;
    right: 10px;
    top: 15px;
    transform: none;
}

.mobile-menu-content .dropdown-toggle-icon.rotated {
    transform: rotate(180deg) !important;
}


/* Nested Dropdowns (Accordion Style) */
.mobile-menu-content .nested-dropdown {
    padding-left: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .main-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
}




/* Arama Butonu */
.search-trigger {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-darkest);
    cursor: pointer;
    transition: color 0.3s;
    padding: 10px;
    display: flex;
    align-items: center;
}

/* Arama Paneli */
.search-bar-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
	border-top: 1px solid var(--text-lightest);
}

.search-bar-wrapper.active {
    max-height: 70px;
    padding: 12px 0;
    opacity: 1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.search-form .input-group {
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid var(--bg-lightest);
    border-radius: 30px;
    overflow: hidden;
    transition: border-color 0.3s;
    background: var(--bg-lightest);
}

.search-form .input-group:focus-within {
    border-color: var(--primary-color);
}

.search-form .form-control {
    border: none;
    padding: 8px 20px;
    font-size: 14px;
    height: 38px;
    box-shadow: none !important;
}

.search-form .btn {
    border: none;
    background: none;
    color: var(--text-light);
    padding: 0 15px;
    transition: color 0.3s;
}

.search-form .btn:hover {
    color: var(--primary-color);
    background: none;
}

@media (max-width: 991px) {
    .search-bar-wrapper.active {
        max-height: 60px;
        padding: 10px 0;
    }
    .search-form .input-group {
        max-width: 90%;
    }
}







/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    position: relative;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-darkest);
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 991px) {
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-header {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}




#secret-tap-area {
    width: 100%;
	min-width: 40px;
    height: 40px;
    cursor: default;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
	/* border:1px solid #f00; */
}



/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-lightest);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.scroll-top:hover {
    transform: translateY(-5px);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: var(--text-lightest);
    border: none;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
}

.whatsapp-btn.visible {
    opacity: 1;
    visibility: visible;
}

.whatsapp-btn i {
    line-height: 1;
}



/* Footer */
#main-footer {
    color: var(--text-lightest);
}

.footer-main {
    background-color: var(--bg-dark);
    padding: 50px 0 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-widget h3::after {
    content: '';
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 6px auto 12px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: var(--text-lightest);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-widget ul li a:hover {
    color: var(--primary-color);
}

.footer-about p {
    color: var(--text-lightest);
    font-size: 14px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-lightest);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: var(--bg-darkest);
    padding: 25px 0;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-lightest);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--text-lightest);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}







/* FORMLAR */
.forms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 991px) {
  .forms-grid { grid-template-columns: 1fr; max-width: 480px; }
}

.f-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.75rem 1.75rem;
  transition: box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.f-card:hover {
  box-shadow: 0 6px 32px rgba(58,91,217,.12), 0 2px 8px rgba(58,91,217,.07);
}

.f-card form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.f-fields {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.f-actions { flex-shrink: 0; margin-top: 1.3rem; }

.f-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.6rem;
}
.f-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg,#3a5bd9 0%,#5b7ff5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.f-icon i { color:#fff; font-size:.95rem; }
.f-title  { font-size:1.05rem; font-weight:700; color:var(--text); line-height:1.2; margin:0; }
.f-subtitle { font-size:.72rem; color:var(--muted); margin:0; font-weight:600; letter-spacing:.02em; }

.f-divider { height:1px; background:var(--border); margin:0 0 1.4rem; }

.f-label {
  font-size:.75rem;
  font-weight:600;
  color:var(--label);
  letter-spacing:.04em;
  margin-bottom:.35rem;
  display:block;
}
.f-input {
  width:100%;
  background:var(--input-bg);
  border:1.5px solid var(--border);
  border-radius:var(--radius-sm);
  padding:.6rem .85rem;
  font-size:.88rem;
  font-family:inherit;
  color:var(--text);
  outline:none;
  transition:border-color .2s, box-shadow .2s;
}
.f-input::placeholder { color:#b0bace; }
.f-input:focus { border-color:var(--accent); box-shadow:var(--input-focus-shadow); background:#fff; }

.f-group { margin-bottom:1rem; }
.f-group:last-child { margin-bottom:0; }

.f-input-wrap { position:relative; }
.f-input-wrap .f-input { padding-left:2.35rem; }
.f-input-wrap .fi-icon {
  position:absolute;
  left:.75rem;
  top:50%;
  transform:translateY(-50%);
  color:#b0bace;
  font-size:.85rem;
  pointer-events:none;
  transition:color .2s;
}
.f-input-wrap:focus-within .fi-icon { color:var(--accent); }

.f-switch-wrap { display:flex; align-items:center; gap:.6rem; cursor:pointer; user-select:none; }
.f-switch-input { display:none; }
.f-switch-track {
  width:42px;
  height:24px;
  background:#d0d6e8;
  border-radius:999px;
  position:relative;
  transition:background .22s;
  flex-shrink:0;
}
.f-switch-track::after {
  content:'';
  position:absolute;
  top:3px;
  left:3px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 1px 4px rgba(0,0,0,.18);
  transition:transform .22s cubic-bezier(.34,1.56,.64,1);
}
.f-switch-input:checked + .f-switch-track { background:var(--accent); }
.f-switch-input:checked + .f-switch-track::after { transform:translateX(18px); }
.f-switch-label { font-size:.83rem; color:var(--muted); font-weight:600; }
.f-switch-label a { color:var(--accent); text-decoration:none; font-weight:600; }
.f-switch-label a:hover { text-decoration:underline; }

.f-btn {
  width:100%;
  padding:.68rem 1rem;
  border-radius:var(--radius-sm);
  border:none;
  background:linear-gradient(135deg,#3a5bd9 0%,#5b7ff5 100%);
  color:#fff;
  font-family:inherit;
  font-size:.9rem;
  font-weight:700;
  letter-spacing:.03em;
  cursor:pointer;
  transition:opacity .18s,transform .14s,box-shadow .18s;
  box-shadow:0 3px 12px rgba(58,91,217,.28);
  display:flex;
  align-items:center;
  justify-content:center; gap:.5rem;
  margin-top: 1.3rem; /* bunu ekle */
}
.f-btn:hover { opacity:.92; transform:translateY(-1px); box-shadow:0 6px 20px rgba(58,91,217,.35); }
.f-btn:active { transform:translateY(0); opacity:1; }

.f-link {
  display:block;
  font-size:.8rem;
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  transition:color .15s;
}
.f-link i { margin-right:.3rem; font-size:.75rem; }
.f-link:hover { color:var(--accent); }

.f-btn-green { background:linear-gradient(135deg,#1eb87a 0%,#34d99a 100%); box-shadow:0 3px 12px rgba(30,184,122,.28); }
.f-btn-orange { background:linear-gradient(135deg,#e8621a 0%,#f5914a 100%); box-shadow:0 3px 12px rgba(232,98,26,.28); }


.f-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: #1a2035;
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .75rem;
  border-radius: 7px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  z-index: 10;
  /* ok aşağıya baksın */
}
.f-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 18px;
  border: 6px solid transparent;
  border-top-color: #1a2035;
}
.f-tooltip.show { display: block; }

.f-desc {
  font-size:.72rem;
  text-align:center;
  font-style: italic;
}





#cerezBanner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a2035;
  color: #fff;
  padding: .75rem 1.5rem;
  z-index: 9999;
  box-shadow: 0 -2px 12px rgba(0,0,0,.2);
  width: auto;
  max-width: 90%;
  border-radius: 10px;
}


#pdfAlani { font-size: 13px; }

#pdfAlani .sec-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6c757d;
  margin-bottom: 5px;
  margin-top: 12px;
}
#pdfAlani .info-label {
  font-size: 11px;
  font-style: italic;
  color: #6c757d;
  margin-bottom: 1px;
}
#pdfAlani .info-val {
  font-size: 13px;
  color: #1a2035;
}
#pdfAlani .card { border-radius: 8px !important; }
#pdfAlani .card-body { padding: 10px 12px !important; }
#pdfAlani .row.g-2 > * { padding-top: 4px !important; padding-bottom: 4px !important; }





.accordion-body { background: var(--bg); }



.contact-card {
    transition: all 0.2s ease-in-out;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15) !important;
}








.btnodeme {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  font-weight: 700;
  padding: 10px 16px;
  margin: 2px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btnodeme:hover {
  background-color: #45a049;
}

.txtkkodeme {
	width: 100%;
	padding: 8px 16px;
	margin: 2px 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.txtodeme {
	width: 100%;
	padding: 4px 8px;
	margin: 2px 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.cc-wrap {
    position: relative;
}

.cc-wrap input {
    width: 100%;
    padding-right: 3px;
}

.card-icon {
    position: absolute;
    right: 3px;
    top: 50%;
    width: 76px;
    height: 33px;
    margin-top: -17px;
    background-repeat: no-repeat;
    display: none;
	border-radius: 4px;
}

.card-visa   { background-image: url('images/cc_visa.png'); }
.card-master { background-image: url('images/cc_master.png'); }
.card-amex   { background-image: url('images/cc_amex.png'); }
.card-troy   { background-image: url('images/cc_troy.png'); }


.payment-info {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 15px;
    margin-top: 15px;
    font-size: 14px;
    border-radius: 6px;
}
.payment-info ul {
    margin: 10px 0 0 18px;
    padding: 0;
}
.payment-info li {
    margin-bottom: 6px;
}



/* Mobilde iOS Zoom Engelleme (Genel Çözüm) */
@media screen and (max-width: 991px) {
  input[type="text"],
  input[type="number"],
  input[type="email"],
  input[type="password"],
  input[type="search"],
  input[type="tel"],
  input[type="url"],
  select,
  textarea {
    font-size: 16px !important;
  }
}




.yeni-versiyon-duyuru {
	position: relative;
	width: 100%;
	cursor: pointer;
}

.yeni-versiyon-icerik {
	position: relative;
	overflow: hidden;
	max-height: 8em;
	transition: max-height 0.6s ease;
	margin-bottom: 0 !important;
}

.yeni-versiyon-icerik::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3em;
	background: linear-gradient(
		to bottom,
		rgba(178, 231, 252, 0),
		rgba(178, 231, 252, 0.75),
		rgba(178, 231, 252, 1)
	);
	pointer-events: none;
	transition: opacity 0.4s ease;
}

.yeni-versiyon-duyuru.acik .yeni-versiyon-icerik {
	max-height: 100em;
}

.yeni-versiyon-duyuru.acik .yeni-versiyon-icerik::after {
	opacity: 0;
}

.yeni-versiyon-ok {
	position: absolute;
	z-index: 2;
	left: 50%;
	bottom: 0.35em;
	transform: translateX(-50%);
	font-size: 1.15em;
	opacity: 0.8;
	pointer-events: none;
	animation: duyuruOk 1.8s ease-in-out infinite;
	transition:
		transform 0.5s ease,
		opacity 0.3s ease;
}

.yeni-versiyon-duyuru.acik .yeni-versiyon-ok {
	animation: none;
	transform: translateX(-50%) rotate(180deg);
	opacity: 0.7;
}

@keyframes duyuruOk {
	0%,
	100% {
		transform: translateX(-50%) translateY(-0.15em);
	}
	50% {
		transform: translateX(-50%) translateY(0.15em);
	}
}
