* { 
	margin: 0; 
	padding: 0; 
	box-sizing: border-box;
	font-family: Tahoma, 'Segoe UI', Geneva, Verdana, sans-serif;
}
body {
	background-image: url(../images/world_transparent.png);
	background-color: #33508a;
	background-position: top center;
	background-size: 1130px;
	background-repeat: no-repeat;
	color: #485566;
	font-size: 90%;
}

/*body multibackground*/
/* 
body {
	background-image: url(../images/bubbles_big2.png), url(../images/world_transparent.png);
	background-color: #33508a;
	background-position: center 324px, top center;
	background-size: 998px, 1130px;
	background-repeat: no-repeat, no-repeat;
	color: #485566;
	font-size: 90%;
}
*/

a {text-decoration: none;}
a:hover {text-decoration: underline;}
hr {
	margin: 40px 0px 40px 0;
	border: 0; 
	height: 1px;
	background-color: transparent;
	background-image: linear-gradient(to right, #00000000, #0000004d, #00000000);
}
.btn {
	border-radius: 6px;
	color: #ffffff; 
	background-color: #7bae11;
	cursor: pointer;
	margin-bottom: 10px;
	display: inline-block;
	padding: 6px 16px 6px 16px;
	box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -15px;
	/* box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 7px; */
	transition: all 0.6s linear;
}
.btn:hover {
	text-decoration: none; 
	background-color: #0444ac;
}
.green {color: #7bae11;}
.clearboth {clear: both;}


/* Top-links - Rychlé odkazy */
.top-links {
	background-color: black;
	position: sticky;
	top: 0;
	z-index: 11001;
	height: 44px;
	line-height: 44px;
	vertical-align: middle;
}
.quick-links {
	color: white;
	padding-right: 10px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1100px;
	text-align: right;
}
.quick-links a {
	color: white;
	font-size: 90%;
}
.quick-links i.fa, .quick-links i.fas, .quick-links i.fab {
	padding-right: 7px;
}
@media (max-width: 1230px) {
	.quick-links .label {
		display: none;
	}
	.quick-links {
		text-align: center;
		padding-right: 0px;
	}
}

/* Header */
.index-header {
	max-width: 1100px;
/*    min-height: 400px;*/
	margin-left: auto;
	margin-right: auto;
/*    background: url(../images/bubbles_big2.png) center bottom no-repeat;
	background-size: 998px;*/
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.index-header.scrolling {
	position: sticky;
	top: 44px;
	z-index: 11001;
}
.index-header.scrolling .logo, .index-header.scrolling .menu {
	height: 110px;
	background-color: rgba(51, 80, 138, 0.954);
}
.index-header.scrolling .menu {
	margin-top: 0px;
	padding-top: 30px;
}

@media screen and (max-width: 700px) {
	.index-header {
		min-height: 110px;
	}
	.header-bottom {
		display: none;
	}
}

.header {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.header.scrolling {
	background-color: rgba(51, 80, 138, 0.954);
	position: sticky;
	top: 44px;
	z-index: 11001;
	/*-webkit-transition: all ease-out .5s;
	-moz-transition: all ease-out .5s;
	-o-transition: all ease-out .5s;*/
	transition: all ease-out .5s;
}
.header-bottom {
	min-height: 293.5px;
	background: url(../images/bubbles_big2.png) center bottom no-repeat;
	background-size: 998px;
	background-color: transparent;
	font-size: 0px;
}

.logo {
	padding: 10px 0 10px 20px;
	flex-grow: 1;
}
.logo img {max-width: 180px;}
.maskot {max-height: 200px;}

/* Navigace */
.menu {
	margin: 30px 0px 0 0;
	line-height: 50px;
	z-index: 11000;
}
nav {
	background-image: linear-gradient(0deg, #ededed 0%, #ededed 40%, #ffffff 100%);
	border-radius: 6px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	
}
nav li {
	display: inline-block;
	list-style-type: none;
	/*font-size: 90%;*/
	border-right: 1px solid;
	border-image: linear-gradient(0deg, #00000000, #acacac, #00000000) 1;
}
nav i.fa, nav i.fas {
	font-size: 120%; 
	line-height: 25px;
	vertical-align: -4%;
}
nav li:first-child a.active {
	width: 40px;
	margin-left: 8px;
	text-align: center;
	transition: all 0.6s linear;
}
nav li:first-child a.default {
	width: 40px;
	margin-left: 8px;
	text-align: center;
	transition: all 0.6s linear;
}
nav li a.active {
	text-decoration: none;
	background-color: #485566;
	color: #fdfdfd;
	display: block;
	line-height: 29px;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 6px;
	margin-right: 5px;
	padding: 0 6px 0 6px;
	transition: all 0.6s linear;
}
nav li a.default {
	text-decoration: none;
	color: #485566;
	display: block;
	line-height: 29px;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 6px;
	margin-right: 5px;
	padding: 0 6px 0 6px;
	transition: all 0.6s linear;
}
nav li a:hover {
	text-decoration: none;
	background-color: #7bae11;
	color: #fdfdfd;
}
nav li:last-child {border-right: none;}
nav li:last-child a {margin-right: 10px;}

/* Navigace mobile */
.menu-icon {
	display: none;
}
@media (max-width: 990px) {
	header nav {
		display: none;
		position: fixed;
		top: 130px;
		background-color: #060606;
		width: 100%;
		left: 0;
		padding: 5px 0 5px 0;
		z-index: 12000;
	}
	nav li:first-child a.active, nav li:first-child a.default, nav li a.active, nav li a.default {
		width: auto;
		margin-left: 5px;
		margin-right: 5px;
		line-height: 50px;
		font-size: 110%;
	}
	header nav li {
		display: block;
		text-align: center;
		/* margin-top: 10px;
		margin-bottom: 10px; */
		border-right: 0;
		border-bottom: 1px solid;
		border-image: linear-gradient(90deg, #00000000, #acacac, #00000000) 1;
	}
	nav li:last-child {border-bottom: none;}
	.menu-icon {
		display: block;
		color: white;
		font-size: 23px;
		margin-right: 20px;
		cursor: pointer;
		padding: 0 13px 0 13px;
	}
}
@media (min-width: 991px) {
	header nav {
		display: block !important;
		
	}
}

/* Main */
.index {background-color: #ffffff;}
.index-page {
	max-width: 1100px;
	min-height: 50vh;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 10px;
}
.index-page-title-h1 {display: none; padding-top: 20px;}
.index-page-title-h2 {display: none; padding-top: 20px;}

.article-page {
	max-width: 1100px;
	/* min-height: 60vh; */
	background-color: #ffffff;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	border-radius: 6px;
	padding: 30px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
@media screen and (max-width: 800px) {
	.article-page {
		padding: 10px 0 0 0;
	}
}
.article-title-h1 {padding: 0 0 10px 2px;}
.article-title-h2 {padding: 0 0 10px 2px;}
.breadcrumb {
	text-transform: uppercase;
	font-size: 90%;
	margin-bottom: 30px;
}
.breadcrumb i.fa, .breadcrumb i.fas {
	vertical-align: 5%;
	color: #551a8b;
	font-size: 1.1em;
}

.article {
	line-height: 26px;
	padding: 0 2px 0 2px;
}

.article .kontakt i.fa, .article .kontakt i.fas {
	color: #4b7cbf;
	font-size: 120%;
	vertical-align: -4%;
}
.article .kontakt h3 i.fa, .article .kontakt h3 i.fas {
	padding-right: 4%; 
	color: #551a8b !important;
	padding-bottom: 5px;
	vertical-align: 0%;
}
.article .kontakt h3 {
	font-size: 110%;
}

h1 {font-size: 150%;}
h2 {font-size: 135%;}
/*h3 {font-size: 120%;}*/

.font-normal {font-weight: normal;}
.font-bold {font-weight: bold;}

.box {
	display: flex;
	flex-direction: column; /* Vertikální uspořádání */
	height: 100%; /* Výška boxu */
	border: 0px solid black;
	border-radius: 6px !important;
}
.box-bgHeader {
	border-radius: 6px 6px 0px 0px;
	background: linear-gradient(180deg, rgba(123,174,17,1) 0%, rgba(140,184,48,1) 50%, rgba(255,255,255,1) 100%);
	color: #000000;
	min-height: 56px; /* Minimální výška záhlaví, může se lišit podle potřeby */
	padding: 6px;
	text-align: center;
	align-content: center;; /* Vertikálně vycentruje obsah */
}
.box-bgHeader-nazev {
	font-size: 135%;
}
.box-bgHeader-cas-rozmezi {
	display: none;
}
.box hr {
	margin: 0;
	border: 0; 
	height: 1px;
	background-color: transparent;
	background-image: linear-gradient(to right, #00000000, #0000004d, #00000000);
}
.box-content {
	flex-grow: 1; /* Zajistí, že obsah vyplní dostupný prostor */
	border-radius: 0px 0px 6px 6px;
	padding: 14px 6px;
	display: flex;
	flex-direction: column; /* Pokud chcete, aby obsah rostl vertikálně */
}
.box-content-no-flex {
	min-height: 100px;
	border-radius: 0px 0px 6px 6px;
	padding: 14px 6px 14px 6px;
}
.box-content-center {
	align-content: center;
}
.box-content-end {
	display: flex;
	justify-content: center; /* Vycentruje tlačítko horizontálně */
	align-items: center; /* Ujistí se, že tlačítko je vertikálně uprostřed */
	margin-top: auto; /* Zajištění, že tlačítko bude u spodního okraje */
	padding-bottom: 14px;
}
.box img, .box-content img {
	max-width: 100%;
	border-radius: 6px;
	padding: 0;
}


.box-grid-column-2 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 400px), 1fr)); /* max 2 sloupce */
	grid-template-rows: 1fr auto; /* Definice dvou řad: první pro obsah, druhá pro tlačítko */
	height: 100%; /* Nebo nastavte na konkrétní výšku */
	gap: 1.25rem;
}
.box-grid-column-3 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); /* max 3 sloupce */
	grid-template-rows: 1fr auto; /* Definice dvou řad: první pro obsah, druhá pro tlačítko */
	height: 100%; /* Nebo nastavte na konkrétní výšku */
	gap: 1.25rem;
}
.box-grid-column-4 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); /* max 4 sloupce */
	grid-template-rows: 0.85fr auto; /* Definice dvou řad: první pro obsah, druhá pro tlačítko */
	height: 100%; /* Nebo nastavte na konkrétní výšku */
	gap: 1.25rem;
}


.box-background-circle {
  position: relative;
  width: 100%;
  background: radial-gradient(
	circle at 100% 50%, /* umístění vpravo */
	rgba(0, 0, 0, 0.05), /* jemně šedá */
	rgba(0, 0, 0, 0) 30%
  );
}
/* Přidání bílého pruhu vpravo */
.box-background-circle::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 3px;
	height: 100%;
	background-color: white;
	border-right: 1.5px solid #ececec;
	pointer-events: none; /* Zabrání blokování kliknutí */
}
.box-background-circle:last-child::after {
	content: '';
	border-right: 1.5px solid #ffffff;
}


.text-left {text-align: left;}
.text-center {text-align: center;}
.text-right {text-align: right;}
.text-justify {text-align: justify;}

.text-small {
	font-size: 70%;
}

.shadow {
	box-shadow: rgba(0, 0, 0, 0.20) 0px 5px 15px;
	transition: all 0.6s linear;
}
.shadow:hover {
	box-shadow: rgba(0, 0, 0, 0.60) 0px 5px 15px;
}

.radius {border-radius: 6px;}
.no-radius, .no-radius img {border-radius: 0px;}

.more {
	border-radius: 30px;
	color: #ffffff; 
	background-color: #7bae11;
	cursor: pointer;
	display: inline-block;
	padding: 10px 16px;
	transition: all 0.6s linear;
	outline: 3px solid #7bae11;
	outline-offset: 4px;
	line-height: initial;
	margin-bottom: 10px;
}
.more:hover {
	text-decoration: none; 
	background-color: #0444ac;
	/* outline-color: #0444ac; */
}
.li-plus {
	list-style-type: none;
	background: url(../images/icons/li_bg.png) no-repeat left 7px;
	text-align: left;
	padding-left: 13px;
	/* color: #7bae11; margin: 6px 0px 6px 0px;*/
}
.li-fajfka {
	list-style-type: none;
	background: url(../images/icons/arrow_icon.png) no-repeat left 6px;
	margin: 6px 0px 6px 0px;
	padding-left: 24px;
	text-align: left;
}
.li-style-none {
	list-style-type: none;
	margin: 6px 0px 6px 0px;
	text-align: left;
	padding-left: 0px;
}
.blink {
	animation: blink 1s steps(5, start) infinite;
	-webkit-animation: blink 1s steps(5, start) infinite;
	line-height: 30px;
}
@keyframes blink {
	to {
		visibility: hidden;
	}
}
ol {padding-left: 24px;}
ol > li {margin: 6px 0px 16px 0px;}
ol > li::marker {
	font-weight: bold;
}

/* soutez - odpocet dní */
.digital-clock {
	display: inline-block;
	font-size: 130%;
	/*font-weight: bold;*/
	color: #ffffff;
	background-color: #7bae11;
	padding: 8px 0px 8px 0px;
	border-radius: 0px 0px 6px 6px;
	box-shadow: rgba(0, 0, 0, 0.20) 0px 5px 15px;
	margin-top: 0px;
	animation: pulse 2s infinite;
}

/* Jemná animace pro zvýraznění */
@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(123, 174, 17, 0.6); }
	70% { box-shadow: 0 0 0 10px rgba(123, 174, 17, 0); }
	100% { box-shadow: 0 0 0 0 rgba(123, 174, 17, 0); }
}

.vypadek  {
	display: block;
	font-size: 100%;
	font-weight: normal;
	color: #000000;
	background-color: white;
	padding: 8px 0px 8px 0px;
	border-radius: 0px 0px 6px 6px;
	box-shadow: none;
	margin-top: 0px;
	animation: none;
}

/* checkbox */
.print-checkbox {
	/* Reset a custom styl */
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #fff;
	width: 18px;
	height: 18px;
	border: 1px solid #057fd0;
	border-radius: 4px;
	display: grid;
	place-items: center;
	margin: auto;
	position: relative;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Vnitřní zatržítko (malý modrý čtvereček) */
.print-checkbox::before {
	content: "";
	width: 10px;
	height: 10px;
	background-color: #057fd0;
	border-radius: 2px;
	transform: scale(0);
	transition: transform 0.15s ease-in-out;
	display: block;
}

/* Zobraz zatržítko, když je zaškrtnuto */
.print-checkbox:checked::before {
	transform: scale(1);
}

/* Fokusová viditelnost */
.print-checkbox:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.5);
	border-color: #3498db;
}

/* Footer */
.footer {
	background-color: #1d3465;
	padding: 20px 0 20px 0;
}
.footer-page {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.footer-page .bottomMenu {
	line-height: 35px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.footer-page .bottomMenu li {
	display: inline-block;
	list-style-type: none;
	text-transform: uppercase;
	border-right: 1.5px solid;
	border-image: linear-gradient(0deg, #00000000, #acacac, #00000000) 1;
}
.footer-page .bottomMenu li a {
	color: #617aae;
	padding: 0 10px 0 6px;
	transition: all 0.6s linear;
}
.footer-page .bottomMenu .active {color: #ffffff;}
.footer-page .bottomMenu li:hover a {color: #ffffff;}
.footer-page .bottomMenu li:last-child {border-right: none;}
.footer-page .copyright {
	color: #ffffff;
	font-size: 80%;
	margin-top: 10px;
	padding-bottom: 100px;
}


/*** ruční přepnutí light nebo dark režim  ***/
html[data-theme='dark'] body {
	background-color: #121212;
	color: #e0e0e0;
}

html[data-theme='dark'] a {
  	color: #ffffff;
}
html[data-theme='dark'] .index-header {
  	background-color: transparent;
}

html[data-theme='dark'] .header.scrolling,
html[data-theme='dark'] .index-header.scrolling {
  	background-color: rgba(18, 18, 18, 0.95);
}

html[data-theme='dark'] .index-header.scrolling .logo,
html[data-theme='dark'] .index-header.scrolling .menu {
  	background-color: rgba(18, 18, 18, 0.95);
}

html[data-theme='dark'] .header-bottom {
	min-height: 293.5px;
	background: url(../images/bubbles_big2.png) center bottom no-repeat;
	background-size: 998px;
	opacity: 0.3;
	background-color: transparent;
}

html[data-theme='dark'] .index,
html[data-theme='dark'] .article-page {
	background-color: #1e1e1e;
	color: #e0e0e0;
	box-shadow: rgba(0, 0, 0, 0.6) 0px 5px 15px;
}

html[data-theme='dark'] .btn,
html[data-theme='dark'] .more {
	background-color: #33691e;
	color: #fff;
}

html[data-theme='dark'] .btn:hover,
html[data-theme='dark'] .more:hover {
  	background-color: #1565c0;
}

html[data-theme='dark'] nav {
	background: linear-gradient(0deg, #2a2a2a 0%, #2a2a2a 40%, #1e1e1e 100%);
	box-shadow: rgba(0, 0, 0, 0.6) 0px 5px 15px;
}

html[data-theme='dark'] nav li a.default {
  	color: #bbb;
}

html[data-theme='dark'] nav li a.active {
	background-color: #444;
	color: #fff;
}

html[data-theme='dark'] nav li a:hover {
	background-color: #7bae11;
	color: #fff;
}

html[data-theme='dark'] .menu-icon {
  	color: #fff;
}

html[data-theme='dark'] .box-bgHeader {
	background: linear-gradient(180deg, #333 0%, #2a2a2a 50%, #1e1e1e 100%);
	color: #e0e0e0;
}

html[data-theme='dark'] .box-content,
html[data-theme='dark'] .box-content-no-flex {
	background-color: #1e1e1e;
	color: #e0e0e0;
}

html[data-theme='dark'] .box-background-circle {
  	background: radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 30%);
}

html[data-theme='dark'] .box-background-circle::after {
	background-color: #202020;
	border-right: 1.5px solid #777;
}

html[data-theme='dark'] .box-background-circle:last-child::after {
	content: '';
	border-right: 1.5px solid #1e1e1e;
}

html[data-theme='dark'] .box hr,
html[data-theme='dark'] hr {
  	background-image: linear-gradient(to right, #ffffff00, #ffffff4d, #ffffff00);
}

html[data-theme='dark'] .shadow {
  	box-shadow: rgba(255, 255, 255, 0.15) 0px 5px 15px;
}

html[data-theme='dark'] .shadow:hover {
  	box-shadow: rgba(255, 255, 255, 0.4) 0px 5px 15px;
}

html[data-theme='dark'] .print-checkbox {
	background-color: #1e1e1e;
	border-color: #8fae11;
}

html[data-theme='dark'] .print-checkbox::before {
  	background-color: #8fae11;
}

html[data-theme='dark'] .print-checkbox:focus-visible {
	box-shadow: 0 0 0 3px rgba(140, 184, 48, 0.5);
	border-color: #8fae11;
}

html[data-theme='dark'] .footer {
  	background-color: #111;
}

html[data-theme='dark'] .footer-page .bottomMenu li a {
  	color: #aaa;
}

html[data-theme='dark'] .footer-page .bottomMenu .active,
html[data-theme='dark'] .footer-page .bottomMenu li:hover a {
  	color: #fff;
}

html[data-theme='dark'] .footer-page .copyright {
  	color: #999;
}

html[data-theme='dark'] .digital-clock {
	background-color: #33691e;
	color: #fff;
	}

html[data-theme='dark'] .vypadek {
	background-color: #333;
	color: #eee;
}

/* Přepínač style light / dark */
#theme-controls {
	position: fixed;
	top: 0rem;
	right: 0rem;
	z-index: 11001;
	/*background-color: rgba(255, 255, 255, 0.9);*/
	padding: 0.4rem 0.8rem;
	border-radius: 12px;
	/*box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	backdrop-filter: saturate(180%) blur(10px);*/

	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-align: right;
}

.theme-switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 30px;
}

.theme-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0; left: 0;
	right: 0; bottom: 0;
	background-color: #ccc;
	border-radius: 30px;
	transition: background-color 0.4s;
}

.slider::before {
	content: "";
	position: absolute;
	height: 26px;
	width: 26px;
	left: 2px;
	bottom: 2px;
	background-color: white;
	border-radius: 50%;
	transition: transform 0.4s;
	z-index: 1;
}

/* Ikony */
.icon {
	position: absolute;
	top: 51%;
	transform: translateY(-50%);
	font-size: 14px;
	color: #fff;
	pointer-events: none;
	z-index: 2;
}

/* Zobrazit jednu ikonu podle tématu */
.sun {
	left: 8px;
	color: #FFA500;
	display: inline;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.moon {
	right: 8px;
	color: #90caf9; /* modrá */
	display: inline;
	opacity: 1;
	transition: opacity 0.3s ease;
}

/* V light režimu chceme slunce jasné a měsíc slabší */
html[data-theme='light'] .sun {
  	opacity: 1;
}

html[data-theme='light'] .moon {
  	opacity: 1;
}

/* V dark režimu chceme měsíc jasný a slunce slabší */
html[data-theme='dark'] .sun {
  	opacity: 0.5;
}

html[data-theme='dark'] .moon {
  	opacity: 1;
}
/* Přepnutí do tmavého režimu */
.theme-switch input:checked + .slider {
  	background-color: #444;
}

.theme-switch input:checked + .slider::before {
  	transform: translateX(30px);
}

/* Dark mode pozadí */
:root[data-theme='dark'] #theme-controls {
  	background-color: rgba(20, 20, 20, 0.85);
}

/* --- Responzivita pro mobil --- */
@media (max-width: 1260px) {
	#theme-controls {
		top: 0.35rem;
		right: 0.1rem;
		left: auto;
		padding: 0.25rem 0.5rem;
		font-size: 0.75rem;
		border-radius: 10px;
		/*backdrop-filter: saturate(150%) blur(8px);*/
		gap: 0.4rem;
	}

	.theme-switch {
		width: 50px;      /* zmenšená šířka */
		height: 24px;     /* zmenšená výška */
	}

	.theme-switch input:checked + .slider::before {
		transform: translateX(22px); /* posun kulatého "přepínače" zmenšen */
	}

	.slider::before {
		height: 20px;   /* zmenšená výška */
		width: 20px;    /* zmenšená šířka */
		bottom: 2px;
		left: 4px;
	}

	#theme-toggle {
		font-size: 1rem;  /* menší font */
		padding-right: 8px;
	}

	.icon {
		font-size: 12px;
		top: 50%;
		transform: translateY(-50%);
		position: absolute;
		z-index: 2;
		pointer-events: none;
	}

	.sun {
		left: 8px; /* vizuální střed pro levou ikonu */
	}

	.moon {
		right: 8px; /* vizuální střed pro pravou ikonu */
	}

	.remember-switch {
		display: flex;
		align-items: center;
		gap: 0.25rem;
		font-size: 0.75rem;
	}

	.remember-switch .slider {
		width: 28px;
		height: 14px;
	}

	.remember-switch .slider::before {
		height: 10px;
		width: 10px;
		bottom: 2px;
		left: 2px;
	}

	.remember-switch input:checked + .slider::before {
		transform: translateX(14px);
	}
}