* {
	margin: 0 auto;
	padding: 0 auto;
	box-sizing: border-box; /* Ułatwia zarządzanie wymiarami elementów */
	/*border: 1px solid lime;*/
}
html {
    scroll-padding-top: 150px;
}
body {
	width: 100%;
	height: 100%;
	font-family: Arial, sans-serif; /* Ustawia czcionkę dla całej strony */
	background-color: #FFFFFF; /* Ustawia tło strony */
	line-height: 1.6; /* Ułatwia czytanie */
}
img {
	max-width: 100%;
}
a {
	color: #E31E25;
	text-decoration: none;
}
a:hover {
	color: #3783DB;
}

/*HEADER*/
.header_container {
	width: 100%;
	height: 100px;
	background-color: #FFFFFFCC;
	position: sticky;
	top: 0;
	box-shadow: 0 8px 8px -6px rgba(0, 0, 0, 0.3);
	z-index: 999999;
}
.header_box {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_l a {
	display: block;
	line-height: 0;
}
.header_l img {
	max-width: 250px;
	max-height: 80px;
	display: block;
}
.header_r_mobile {
	display: none;
}
.header_r_mobile button {
	background: none;
	border: none;
	padding: 0;
	margin: 0 20px;
	cursor: pointer;
}
.header_r_mobile svg {
	width: 40px;
	height: 40px;
	color: #132867;
	fill: currentColor;
	vertical-align: middle;
	transition: 0.2s ease;
}
.header_r_mobile svg:hover {
	color: #E31E25;
}
.header_r {
	display: flex;
	gap: 20px;
	flex-direction: column;
}
.header_social {
	width: 100%;
	text-align: right;
}
.header_social svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
	vertical-align: middle;
}
.header_social a {
	padding: 0 10px;
	text-decoration: none;
	color: #132867;
	font-size: small;
	transition: 0.2s ease;
}
.header_social a:hover {
	color: #E31E25;
}
.header_menu a {
	padding: 0 10px;
	text-decoration: none;
	color: #E31E25;
	font-weight: bold;
	transition: 0.2s ease;
	white-space: nowrap;
}
.header_menu a:hover {
	color: #132867;
}
.header_menu > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.header_menu li {
	margin: 0;
	padding: 0;
}
.submenu_descop_toggle {
position: relative;
}
.submenu_descop_toggle ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.submenu_descop_toggle a {
	cursor: pointer;
}
.submenu_descop_toggle:hover > a {
	color: #132867;
}
.submenu_descop {
	display: none;
	width: 300px;
	position: absolute;
	top: 26px;
	border-bottom: 1px solid #888888;
}
.submenu_descop_toggle:hover .submenu_descop {
    display: block;
}
.submenu_descop li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	border-top: 1px solid #888888;
}
.submenu_descop a {
	display: flex;
	align-items: center;
	width: 100%;
	height: 40px;
	text-decoration: none;
	background-color: #EEEEEE;
	color: #132867;
	padding: 0 20px;
	font-weight: bold;
	cursor: pointer;
	margin: 0;
}
.submenu_descop a:hover {
	background-color: #132867;
	color: #E31E25;
}
.koszykIlosc {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	background-color: #E31E25;
	border-radius: 50%;
	color: #FFFFFF;
	transition: 0.2s ease;
	animation: koszykPulse 5s infinite;
}
.header_menu a:hover .koszykIlosc {
	background: #132867;

}

@media screen and (max-width: 1200px) {
	.header_box {
		width: 100%;
	}
	.header_r {
		width: 500px;
	}
}
@media screen and (max-width: 900px) {
	.header_l img {
		width: clamp(100px, 80vw, 150px);
		height: auto;
	}
	.header_l, .header_r {
		margin: 0 20px;
	}
}
@media screen and (max-width: 768px) {
	.header_r {
		display: none;
	}
	.header_r_mobile {
		display: flex;
	}
}
@media screen and (max-width: 400px) {
	.header_r_mobile {
		margin: 0 10px;
	}
	.header_r_mobile svg {
		width: 30px;
		height: 30px;
	}
}
.menu_mobile {
	display: none;
	width: 80%;
	min-width: 300px;
	position: fixed;
	top: 100px;
	right: 0;
	max-height: calc(100vh - 100px);
	overflow-y: auto;
	z-index: 999;
}
.menu_mobile ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.menu_mobile li {
	border-bottom: 1px solid #888888;
	align-items: center;
}
.menu_mobile a, .menu_mobile button {
	display: flex;
	align-items: center;
	width: 100%;
	height: 60px;
	text-decoration: none;
	background-color: #EEEEEE;
	color: #132867;
	padding: 0 20px;
	font-weight: bold;
	cursor: pointer;
}
.menu_mobile a:hover {
	background-color: #132867;
	color: #E31E25;
}
.menu_mobile.active {
	display: block;
}
.menu_mobile_arrow {
	margin-left: 6px;
}
.submenu_mobile {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
}
.submenu_mobile li {
	border: none;
	border-top: 1px solid #888888;
}
.submenu_mobile.active {
	display: block;
}
.submenu_mobile a {
	padding-left: 40px;
	font-size: 0.9em;
	background-color: #CCCCCC;
}
.header_social_mobile a, .header_social_mobile a:hover {
	 all: unset
}
.header_social_mobile {
	text-align: center;
	background-color: #EEEEEE;
}
.header_social_mobile svg {
	width: 40px;
	height: 40px;
	margin: 15px;
	color: #132867;
	fill: currentColor;
	vertical-align: middle;
	transition: 0.2s ease;
	cursor: pointer;
}
.header_social_mobile svg:hover {
	color: #E31E25;
}

/*HEADER*/
/*FOOTER*/
.footer_container {
	width: 100%;
	min-height: 300px;
	background-color: #0A1533;
	background-image: url('../img/footer.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: 0 -8px 8px -6px rgba(0, 0, 0, 0.3);
	clear: both;
}
.footer_box {
	width: 1200px;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	color: #FFFFFF;
	text-align: center;
}
.footer_box_1, .footer_box_2, .footer_box_3 {
	width: 33%;
	padding: 20px 0;
	line-height: 40px;
    
}
.footer_box_1 {
	text-align: left;
}
.footer_box_1 a {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
}
.footer_box_1 a:hover {
	color: #E31E25;
}
.footer_box_2 td {
	text-align: left;
}
.footer_box_2 a {
	color: #E31E25;
	text-decoration: none;
}
.footer_box_2 a:hover {
	color: #FDCF00;
}
.footer_box_3 {
	line-height: 20px;
}
.footer_box_3 h2 {
	padding: 25px;
	color: #FFFFFF;
}
.footer_social svg {
	width: 40px;
	height: 40px;
	margin: 15px;
	color: #FFFFFF;
	fill: currentColor;
	vertical-align: middle;
	transition: 0.2s ease;
	cursor: pointer;
}
.footer_social svg:hover {
	color: #E31E25;
}
.footer_box hr {
	border: 0;
	width: 80%;
	height: 1px;
	margin-top: 20px;
	background: #CCCCCC;
	display: none;
}
@media screen and (max-width: 1216px) {
	.footer_box {
		width: 100%;
		flex-direction: column;
		align-items: center;
	}
	.footer_box_1, .footer_box_2, .footer_box_3 {
		width: 100%;
		padding-bottom: 10px;
	}
	.footer_box_1 {
		text-align: center;
	}
	.footer_box hr {
		display: block;
	}
}
/*FOOTER*/

/*POLITYKA PROWATNOŚCI*/
.polityka-prywatnosci {
	width: 100%;
	min-height: 40px;
	background-color: #444444;
	position: fixed;
	bottom: 0;
	z-index: 999999;
	text-align: center;
	color: #FFFFFF;
	padding-top:10px;
	padding-left: 10px;
	padding-right: 10px;
}
#zamknij-polityke {
	padding: 5px 20px;
	background-color: #E31E25;
	color: #FFFFFF;
	border: 1px solid black;
	border-radius: 10px;
	margin-left: 10px;
	cursor: pointer;
}
#zamknij-polityke:hover {
	background-color: #3783DB;
}
/*POLITYKA PROWATNOŚCI*/

/*okienko modalne*/
/* Tło */
.modal-overlay {
	position: fixed;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0,0,0,.45);
	z-index: 999999;
}
/* Okno */
.modal-window {
	width: 500px;
	max-width: calc(100vw - 40px);
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 15px 40px rgba(0,0,0,.35);
	overflow: hidden;
	animation: modalShow .18s ease;
}
/* Nagłówek */
.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	border-bottom: 1px solid #ddd;
}
.modal-title {
	font-size: 20px;
	font-weight: bold;
}
/* Zamknij */
.modal-close {
	border: 0;
	background: none;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	color: #777;
	margin-left: auto;
}
.modal-close:hover {
	color: #000;
}
/* Treść */
.modal-body {
	padding: 25px 20px;
	font-size: 15px;
}
/* Stopka */
.modal-footer {
	padding: 15px 20px;
	border-top: 1px solid #ddd;
	display: flex;
	justify-content: flex-end;
}
.btn-ok {
	padding: 8px 25px;
	border: 0;
	border-radius: 5px;
	cursor: pointer;
	background: #1f73d8;
	color: #fff;
}
.btn-ok:hover {
	background: #165fb2;
}
/* Animacja */
@keyframes modalShow {
	from {
		opacity: 0;
transform: scale(.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
/*okienko modalne*/


/*STRONA*/
.page-container {
	width: 100%;
	min-height: 300px;
	font-size: 1.1em;
}
@media screen and (max-width: 1200px) {
	.page-container {
		padding: 10px;
	}
}
/*STRONA*/

.left { text-align: left; }
.center { text-align: center; }
.right { text-align: right; }

@keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.1); }
	100% { transform: scale(1); }
}

@keyframes koszykPulse {
    0%   { transform: scale(1); }
    5%   { transform: scale(1.5); }
    10%  { transform: scale(1); }
    15%   { transform: scale(1.5); }
    20%  { transform: scale(1); }
    100% { transform: scale(1); }
}

@keyframes statusPulse {
    10%   { transform: scale(1); }
    15%   { transform: scale(1.5); }
    20%  { transform: scale(1); }
    25%   { transform: scale(1.5); }
    30%  { transform: scale(1); }
    100% { transform: scale(1); }
}

input[type="number"] {
	-moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}