@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"); /* import font */
:root{
    --white: #f9f9f9;
    --black: #36383F;
    --gray: #85888C;
	--tomato: #FD5F53;
} /* variables*/

/* Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
	color: #000000;
    font-family: "Poppins", sans-serif;
	background-color: #D9D9D9;
	margin-bottom: 0px;
	font-size: 15px;
}
header a{
    text-decoration: none;
}
header ul{
    list-style: none;
}

/* Header */
.header{
    background-color: #36383F;
    box-shadow: 1px 1px 5px 0px gray;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 100;
}
/* Logo */
.logo{
    display: inline-block;
    color: white;
    font-size: 50px;
    margin-left: 10px;
}
/* top menu */
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #36383F;
    overflow: hidden;

}
.menu a{
    display: block;
    padding: 30px;
    color: white;
}
.menu a:hover{
    background-color: gray;
}
.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}
/* Menu Icon */
.hamb{
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}/* Style label tag */

.hamb-line {
    background: white;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background: white;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
} /* Hide checkbox */
/* Toggle menu icon */
.side-menu:checked ~ nav{
    max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}
/* side */
#suggestions {
    display: none;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
	position: absolute;
	background-color: #fff;
	width: 100%;
}
.suggestion {
    padding: 8px;
    cursor: pointer;
}
.suggestion:hover {
    background-color: #ccc;
}
#formularz {
	margin-bottom: 2em;
}
.prawa {
	float: right;
	margin-right: 50px;
}
.lewa {
	float: left;
	margin-left: 50px;
}
.wazne {
	font-size: 16px;
	font-weight: bold;
	width: 800px;
	margin: 20px auto;
	padding: 15px;
	border: 2px solid #000000;
	box-shadow: 3px 3px rgba(0,0,0,0.2);
}
.password-container {
	position: absolute;
}
.password-toggle {
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	right: 5px;
	width: 17px;
	height: 17px;
	background-image: url("../image/show.png");
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
}
#password[type="text"] {
	background-image: url("../image/hide.png");
}
.menuImg {
	margin-right: 15px;
	height: 40px;
	float: inline-start;
}
.ok {
	border: 3px solid #009100;
	border-radius: 5px;
	padding: 20px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
}
.wydruk {
	border: 1px solid #000;
	padding: 20px;
}
section {
	margin-top: 60px;
}
.tooltip {
	position: fixed;
	background-color: grey;
	color: #fff;
	padding: 5px;
	display: none;
}
.spinner {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 1000;
}
.spinner-text {
	color: #000;
	margin-top: 1em;
	z-index: 1001;
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(191, 191, 191, 0.5);
	z-index: 9;
	display: none;
}
.tirePrint {
	width: 100%;
}
@media all and (min-width: 801px) {
	.nav{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
    }
    .menu li{
        float: left;
    }
	.menu ol {
		display: none;
		list-style-type: none;
		text-align: center;
		margin: 0;
		background-color: transparent;
	}
	.menu ul > li:hover > ol {
		display: block;
	}
	.menu ul > li > ol > li {
		position: relative;
	} 
    .menu a:hover {
        background-color: transparent;
        color: var(--gray);

    }
    .hamb {
        display: none;
    }
	#strZadanie {
		width: 1200px;
		border: 2px solid #060606;
		background-color: #ffffff;
		padding: 15px;
		box-shadow: 3px 3px rgba(0,0,0,0.2);
		width: 1300px;
		margin-left: auto;
		margin-right: auto;
		margin-top: 100px;
	}
	.naglowek {
		margin-bottom: 100px;
	}
	.loguj {
		width: 900px;
		margin-left: auto;
		margin-right:auto;
	}
	.loguj p {
		display: inline;
	}
	.tirePrint a {
		background-color: #FD5F53;
		padding: 10px 0 10px 40%;
		margin-top: .5em;
		color: #fff;
		text-decoration: none;
		font-weight: bold;
		border-radius: 3px;
		cursor: pointer;
		display: flex;
		align-items: center;
	}
	.tirePrint a:active {
		animation-name: buttonAnimation;
		animation-duration: 0.5s;
	}
	.uwag_lp, .uwag_pp, .uwag_lt, .uwag_pt {
		width: 300px;
		height: 50px;
	}
	/* footer */
	#footer {
		color: #000000;
		margin-top: 20px;
		margin-left: 0px;
		margin-right: 0px;
		margin-bottom: 0px;
		padding-top: 30px;
		padding-bottom: 20px;
		background-color: #bababa;
		border-top: 3px solid #cacaca;
	}
	.footerIn {
		width: 1200px;
		margin-left: auto;
		margin-right: auto;
	}
	.version {
		margin-right: 0px;
		margin-left: 800px;
		margin-bottom: 10px;
		margin-top: 10px;
	}
}

@media all and (max-width: 800px){
	.nav li {
		display: inline-block;
		width:45%;
		text-align:center;
		vertical-align: top;
	}
	.naglowek {
		display: none;
	}
	.loguj {
		width: 80%;
		margin-top: 1em;
		margin-left: auto;
		margin-right: auto;
	}
	.loguj p {
		font-size: 0.6em;
	}
	#strZadanie{
		width: 100%;
		border: 2px solid #060606;
		background-color: #ffffff;
		padding: 2em;
		box-shadow: 3px 3px rgba(0,0,0,0.2);
		margin-left: 0;
		margin-right: 0;
	}
	.tirePrint a {
		background-color: #FD5F53;
		padding: 15px 0 15px 3%;
		margin-top: .5em;
		color: #fff;
		text-decoration: none;
		font-size: 1.2em;
		border-radius: 3px;
		font-weight: bold;
		cursor: pointer;
		display: flex;
		align-items: center;
	}
	
	.tirePrint a:active {
		animation-name: buttonAnimation;
		animation-duration: 0.5s;
	}
}

@media all and (max-width: 400px) {
	.nav li {
		display: inline-block;
		width:45%;
		text-align:center;
		vertical-align: top;
	}
	.naglowek {
		display: none;
	}
	.loguj {
		width: 80%;
		margin-top: 1em;
		margin-left: auto;
		margin-right: auto;
	}
}