/* Header style */
body{
	padding-top: 100px;
	background-color: #EEEEEE !important;
}
header{
	height: 80px;
}
.header-container, .header-logo{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 0px;
}
.header-container img, .header-logo img{
	width: 200px;
}
#sidebar-logout{
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100vh;
	padding-top: 120px;
	width: 500px;
	background-color: #FAFAFA;
	transform: translatex(-100%);
	transition: all .2s;
	border-right: 2px solid rgba(128,128,128,0.5);
	overflow-y: auto;
}
#sidebar-info{
	position: fixed;
	top: 0px;
	right: 0px;
	height: 100vh;
	padding-top: 120px;
	width: 500px;
	background-color: #FAFAFA;
	transform: translatex(100%);
	transition: all .2s;
	border-left: 2px solid rgba(128,128,128,0.5);
	overflow-y: auto;
}
.show-sidebar{
	transform: translatex(0%) !important;
}
#sidebar-logout-trigger{
	width: 20px;
	height: 20px;
	background-image: url("https://aplikacja.wobet.eu/wp-content/uploads/2024/12/menu_icon.png");
	transform: scale(-1,1);
	background-size: cover;
	position: absolute;
	top: 40px;
	left: 40px;
	z-index: 9;
}
#sidebar-info-trigger{
	width: 13px;
	height: 20px;
	background-image: url("https://aplikacja.wobet.eu/wp-content/uploads/2024/12/pytajnik.svg");
	background-size: cover;
	position: absolute;
	top: 40px;
	right: 40px;
	z-index: 9;
}
#sidebar-logout-trigger:hover, #sidebar-info-trigger:hover{
	cursor: pointer;
}
.menu-admin, .menu-kierowca{
	list-style-type: none;
	margin: 0px 40px;
	padding: 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
}
.menu-li a{
	text-decoration: none;
	color: #006FB4;
	font-size: 18px;
	font-weight: 700;
	display: block;
	width: 100%;
	text-align: left;
	padding: 10px 20px;
	transition: all .2s;
}
.menu-li a:hover{
	color: #696B6C;
	opacity: 0.7;
}
.menu-li{
	width: 100%;
}
.menu-li-not-clickable{
	color: #696B6C;
	font-size: 18px;
	font-weight: 700;
	opacity: 0.8;
	padding: 20px;
	width: 100%;
	margin-top: 30px;
	text-align: left;
}
.menu-hr{
	height: 2px;
	background-color: rgba(128,128,128,0.5);
	width: 80%;
	margin: 0px;
}
#info-container{
	padding: 0px 40px;
}
#info-container h2{
	font-size: 30px;
	text-align: center;
	font-weight: 700;
	color: #006FB4;
}
#info-container p{
	font-size: 20px;
	color: #696969;
	font-weight: 700;
}
#info-container ul{
	list-style-type: none;
	padding-left: 15px;
}
#info-container a{
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	color: #006FB4;
	opacity: 0.9;
	display: flex;
	align-items: center;
}
.info-tel::before, .info-mail::before{
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	background-image: url("https://aplikacja.wobet.eu/wp-content/uploads/2024/04/phone-call.png");
	background-size: cover;
	margin-right: 10px;
}
.info-mail::before{
	background-image: url("https://aplikacja.wobet.eu/wp-content/uploads/2024/04/email.png");
}
@media only screen and (max-width: 700px){
	#sidebar-logout{
		width: 100%;
		border-right: none;
	}
	#sidebar-info{
		width: 100%;
		border-left: none;
	}
}
/* Login style */
.login-greeting{
	text-align: center;
	color: #006FB4;
	font-size: 20px;
	font-weight: bold;
	position: absolute;
	width: 100%;
	text-align: center;
	left: 0px;
	top: 40px;
}
.login-container{
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-top: 50px;
}
.login-row{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.login-form{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100%;
}
.input-container{
	width: 100%;
	max-width: 330px;
}
.input-container input{
	width: 100%;
	max-width: 330px;
	height: 54px;
	background-color: #FFFFFF;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	padding: 0px 20px;
	color: #006FB4;
}
.input-container input::placeholder{
	color: #000000;
	opacity: 0.4;
	font-size: 16px;
}
.input-container input:focus{
	outline-color: black;
}
.login-forgot{
	color: #50C2C9;
	display: block;
	margin: 20px 0px;
	font-size: 15px;
	font-weight: 400;
}
#login{
	margin-bottom: 10px;
}
#haslo{
	margin-top: 10px;
}
.submit-container{
	width: 100%;
	text-align: center;
	margin-top: 20px;
}
.wobet-button{
	width: 100%;
	max-width: 330px;
	height: 60px;
	color: #FAFAFA;
	font-size: 18px;
	font-weight: 600;
	background-color: #0077BA;
	border: 2px solid #0077BA;
	border-radius: 6px;
	transition: all .2s;
}
.wobet-button:hover{
	background-color: white;
	color: #1c6eb0;
}
#wrong-user-text{
	width: 100%;
	text-align: center;
	color: red;
	font-size: 16px;
	font-weight: 600;
	font-style: italic;
	margin: 10px;
	margin-top: 20px;
}
.mapa-zasiegu{
	background-image: url("https://aplikacja.wobet.eu/wp-content/uploads/2024/12/Mapka_www_Jabloniowa.png");
	background-size: auto 100%;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	max-width: 750px;
	height: 300px;
	margin: 20px 0px;
	background-position: center;
	transform: translatex(-100px);
}
@media only screen and (max-width:767px){
	.mapa-zasiegu{
		background-size: 150% auto;
		background-position: top 0px right 0px;
		transform: translatex(0px);
	}
}
@media only screen and (max-width:575px){
	.mapa-zasiegu{
		background-size: 200%;
		background-position: 70% 0%;
	}
}
@media only screen and (max-width:400px){
	.mapa-zasiegu{
		background-size: 300%;
		background-position: 70% 0%;
	}
}
/* Admin Page Style */
#admin-title{
	color: #006FB4;
	font-size: 20px;
	font-size: bold;
	text-align: center;
}
.greeting{
	margin: 40px 0px !important;
}
#admin-greeting{
	color: #696B6C;
	font-weight: 400;
	font-size: 14px;
	text-align: center;
}
.main-page-buttons{
	width: 100%;
	height: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
}
.main-page-buttons a{
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	width: 100%;
	max-width: 330px;
	height: 50px;
	background-color: #696B6C;
	color: #FAFAFA;
	border-radius: 6px;
	transition: all .2s;
	border: 2px solid #696B6C;
	font-size: 16px;
	font-weight: 400;
}
.main-page-buttons a:hover{
	color: #696B6C;
	background-color: #FAFAFA;
}
/* Style do tabeli użytkowników */
.table-container{
	overflow-x:auto;
	width: 600px;
	margin: 20px 0px;
}
@media only screen and (max-width: 640px){
	.table-container{
		width: 100%;
	}
}
.tabela-edycja{
	display: block;
	width: 25px;
	height: 25px;
	background-image: url("https://aplikacja.wobet.eu/wp-content/uploads/2024/04/settings.png");
	background-size: cover;
	border: none;
	transition: all .2s;
}
.tabela-edycja:hover{
	background-image: url("https://aplikacja.wobet.eu/wp-content/uploads/2024/04/settings-1.png");
}
/* Style do edycji użytkownika */
.edycja-title{
	text-align: center;
	margin-top: 30px !important;
	color: #696969;
}
.edycja-form-label{
	margin: 10px 0px;
	color: #696969;
	font-size: 20px;
	text-align: left;
	margin: 0px 10px;
}
.form-edycja-container{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
#form-edycja, #form-zmiana-hasla{
	width: 100%;
	max-width: 500px;
	text-align: center;
	padding: 15px;
}
.text-form-edycja, .select-form-edycja{
	width: 100%;
	border: 2px solid #696969;
	border-radius: 16px;
	padding: 5px 10px;
	color: #1c6eb0;
	font-weight: 700;
	font-size: 18px;
}
.select-form-edycja option{
	color: #1c6eb0;
	font-weight: 700;
}
#submit-form-edycja, #submit-form-zmiana{
	margin-top: 30px;
}
#delete-user-button{
	width: 100%;
	max-width: 330px;
	height: 60px;
	background-color: red;
	color: #FAFAFA;
	font-size: 18px;
	font-weight: 600;
	border: 2px solid red;
	border-radius: 6px;
	transition: all .2s;
}
#delete-user-button:hover{
	background-color: white;
	color: red;
}
#popup-usuwanie{
	opacity: 0;
	z-index: 9999;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: rgba(0,0,0,0.9);
	display: none;
	justify-content: center;
	align-items: center;
	transition: all .2s;
}
#potwierdzenie-container{
	width: 100%;
	max-width: 400px;
	margin: 15px;
	background-color: white;
	border-radius: 6px;
	padding: 15px;
}
#potwierdz-button{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	text-decoration: none;
	background-color: red;
	font-weight: 700;
	color: white;
	border: 2px solid red;
	transition: all .2s;
	border-radius: 6px;
}
#potwierdz-button:hover{
	background-color: white;
	color: red;
}
#anuluj-button{
	margin-top: 15px;
	width: 100%;
	height: 50px;
	background-color: #1c6eb0;
	color: white;
	border: 2px solid #1c6eb0;
	font-weight: 700;
	transition: all .2s;
	border-radius: 6px;
}
#anuluj-button:hover{
	background-color: white;
	color: #1c6eb0;
}
#popup-text{
	text-align: center;
	color: #696969;
	font-size: 18px;
	font-weight: 700;
	padding: 15px;
}
/* Potwierdzenie edycji użytkownika */
.potwierdzenie-edycji-container{
	width: 100%;
	height: calc(100vh - 120px);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.potwierdzenie-edycji-container p{
	text-align: center;
	font-size: 22px;
	color: #696969;
	font-weight: 700;
}
.return-button{
	width: 250px;
	height: 60px;
	color: white;
	font-size: 20px;
	font-weight: 700;
	background-color: #1c6eb0;
	border: 2px solid #1c6eb0;
	border-radius: 35px;
	transition: all .2s;
	text-align: center;
	text-decoration: none;
	line-height: 55px;
	margin-top: 30px;
	display: block;
}
.return-button:hover{
	background-color: white;
	color: #1c6eb0;
}
/* Strona główna kierowcy */
#rejestracja{
	color: #1c6eb0;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
}
#kierowca-title{
	text-align: center;
	color: #696B6C;
	font-weight: 600;
	font-size: 16px;
}
.kierowca-wybor{
	width: 165px;
	height: 100px;
	display: flex;
	margin: 1px;
	justify-content: center;
	align-items: center;
	transition: all .2s;
	text-decoration: none;
}
.wybor-niebieski{
	background-color: #1c6eb0;
	border: 2px solid #1c6eb0;
}
.wybor-niebieski:hover{
	background-color: white;
}
.wybor-szary{
	background-color: #696969;
	border: 2px solid #696969;
}
.wybor-szary:hover{
	background-color: white;
}
.kierowca-wybor p{
	margin: 0px;
	text-align: center;
	color: white;
	font-weight: 600;
	font-size: 16px;
}
.wybor-niebieski:hover p{
	color: #1c6eb0;
}
.wybor-szary:hover p{
	color: #696969;
}
.wybor-flex{
	display: flex;
	justify-content: center;
}
/* Style do stron formularzy kierowcy - kursów */
.kurs-title{
	text-align: center;
	color: #696969;
	font-size: 35px;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 40px !important;
}
.kurs-title span{
	color: #1c6eb0;
}
.kurs-text{
	text-align: center;
	color: #696969;
	font-size: 20px;
	font-weight: 500;
}
/* Strona offline */
#offline-title{
	text-align: center;
	margin-top: 150px;
	text-transform: uppercase;
	font-size: 40px;
	font-weight: 700;
	color: #1c6eb0;
}
.offline-text{
	text-align: center;
	margin-top: 20px;
	font-size: 24px;
	color: #696969;
	font-weight: 600;
}
/* Klasy do formularzy kierowców */
.formularz-kierowca-container{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.form-kierowca{
	width: 100% !important;
	max-width: 330px !important;
	text-align: center;
	padding: 0px !important;
}
.formularz-kierowca-label{
	margin: 5px 0px;
	color: #696B6C !important;
	font-size: 16px !important;
	text-align: left !important;
}
.text-formularz-kierowca, .select-formularz-kierowca{
	width: 100% !important;
	height: 54px !important;
	border-radius: 6px !important;
	padding: 0px 15px !important;
	color: #006FB4 !important;
	font-size: 16px !important;
	background-color: #FFFFFF !important;
	border: none !important;
}
.text-formularz-kierowca::placeholder{
	font-size: 16px;
	color: #c4c4c4;
}
.textarea-formularz-kierowca{
	width: 100% !important;
	height: 200px !important;
	border:none !important;
	border-radius: 6px !important;
	padding: 15px 15px !important;
	color: #006FB4 !important;
	font-size: 16px !important;
	background-color: #FFFFFF !important;
}
.wobet-button-a{
	width: 100%;
	max-width: 330px !important;
	height: 60px;
	color: white;
	font-size: 18px;
	font-weight: 600;
	background-color: #0077BA;
	border: 2px solid #0077BA;
	border-radius: 6px;
	transition: all .2s;
	text-decoration:none;
	display:flex;
	justify-content: center;
	align-items: center;
	margin-top:40px !important;
	text-align: center;
}
.wobet-button-a:hover{
	background-color: white;
	color: #1c6eb0;
}
.admin-button-container{
	width: 100%;
	max-width: 330px;
}
/* Przycisk powrotu na stronach */
.arrow-back-container{
	width: 100%;
	height: 30px;
	display: flex;
	justify-content: left;
	align-items: end;
	padding-left: 40px !important;
}
.arrow-back-text{
	color: #696B6C;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
.arrow-back-text::before{
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	background-image: url("https://aplikacja.wobet.eu/wp-content/uploads/2024/11/arrow.png");
	background-size: cover;
	margin-right: 10px;
}
/* Styl tabeli */
.lista-table{
	width: 600px;
}
.lista-table th{
	border: 2px solid #EEEEEE;
	color: #696B6C;
	font-size: 12px;
	height: 40px;
	background-color: #D9D9D9;
	text-align: center;
	font-weight: 400;
	padding: 5px 10px;
}
.lista-table td{
	border-bottom: 2px solid rgba(128,128,128,0.5);
	padding: 10px 10px;
	color: #696969;
	font-weight: 400;
	font-size: 10px;
	text-align: center;
}
.lista-table-container{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.pagination {
	list-style-type: none;
	padding: 10px 0;
	display: inline-flex;
	justify-content: space-between;
	box-sizing: border-box;
	width: 100px;
}
.pagination li {
	box-sizing: border-box;
	padding-right: 10px;
}
.pagination li a {
	box-sizing: border-box;
	background-color: #e2e6e6;
	padding: 8px 12px;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
	color: #616872;
	border-radius: 4px;
}
.pagination li a:hover {
	background-color: #d4dada;
}
.pagination .next a, .pagination .prev a {
	text-transform: uppercase;
	font-size: 12px;
}
.pagination .currentpage a {
	background-color: #518acb;
	color: #fff;
}
.pagination .currentpage a:hover {
	background-color: #518acb;
}
/* Style szczegółów kursu w panelu kierowcy */
.kierowca-szczegoly-table{
	max-width: 600px;
	width: 100%;
	margin: auto;
}
.kierowca-szczegoly-table td{
	width: 50%;
	padding: 5px 10px;
}
.lft{
	text-align: left;
}
.rgt{
	text-align: right;
	font-weight: 700;
	color: #1c6eb0;
}
/*----------------------------------------*/
.page-title{
	font-size: 20px;
	font-weight: bold;
	color: #006FB4;
	text-align: center;
	width: 100%;
}
.eksport-button{
	width: 115px;
	height: 27px;
	background-color: #696B6C;
	border: none;
	color: #FAFAFA;
	font-size: 16px;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.eksport-button::before{
	content: "";
	background-image: url("https://aplikacja.wobet.eu/wp-content/uploads/2024/12/download.png");
	background-size: cover;
	width: 20px;
	height: 20px;
	display: block;
	margin-right: 5px;
}
.container{
	padding: 0px 40px !important;
}
@media only screen and (max-width:360px){
	.container{
		padding: 0px 20px !important;
	}
	#sidebar-logout-trigger{
		top: 20px;
		left: 20px;
	}
	#sidebar-info-trigger{
		top: 20px;
		right: 20px;
	}
	.arrow-back-container{
		padding-left: 20px !important;
	}
	.menu-admin, .menu-kierowca{
		margin: 0px 20px;
	}
	#info-container{
		padding: 0px 20px;
	}
}