body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.35;
	padding: 0;
	background-color: #003333;
	hyphens: none;
	width: 768px;
	color: white;
	margin: auto;
}

span.season { color: royalblue; } /* zima color safe #99ccff*/

hr {
	height: 1px;
  border: none;
  background-color: lightgreen;
}

/* nagłówek */
header {
  display: flex;
  justify-content: space-between; /* Logo left, dropdown right */
  align-items: center; /* Vertically centers items */
	margin-top: 4px;
	margin-right: 8px;
	padding-bottom: 8px;
	border-bottom: lightgreen 1px solid;
}

header #branding a {
	text-decoration: none;
	font-size: 32px;
	vertical-align: middle;
	color: lightgreen; /* slateblue; /* royalblue; /* #e8491d; */
	font-weight: bold;
}

header #branding img {
	line-height: 1.0;
	vertical-align: middle;
}

/* klasy globalne */
.kontakt, .nowaSztafeta {
	margin: auto;
	overflow: hidden;
}

#showcase a {
	color: lightgreen;
}

#showcase h1, h2 {
	text-align: center;
}

#showcase li {
	padding-bottom: 8px;
}
.kontakt {
	display: none;
}

.nowaSztafeta {
	display: block;
}

.kontakt label {
	width: 100%;
	float: left;
}

.nowaSztafeta label {
	width: 100%;
	float: left;
}

.kontakt input[type=text], textarea {
	float: left;
	width: 100%;
	color: black;
	background-color: darkcyan;
	text-align: left;
	font-size: 18px;
}

.nowaSztafeta input[type=text], textarea {
	float: left;
	width: 100%;
	color: black;
	background-color: darkcyan;
	text-align: left;
	font-size: 18px;
}


/* showcase */
#showcase {
	min-height: 600px;
	background-color: #003333;
	text-align: left;
	color: white;
	margin-bottom: 16px;
}

#showcase h1 {
	margin-top: 8px;
	font-size: 36px;
	margin-bottom: 8px;
}

#showcase select {
	font-size: 16px;
	background-color: #003333;
	color: #33ffff;
	width: 100%;
	height: 2em;
	margin-bottom: 4px;
	float: left;
}

#showcase label {
	font-size: smaller;
	color: gray;
	margin-top: 8px;
}

#showcase form p {
	margin-top: 0px;
	margin-bottom: 4px;
}

#showcase button.dodaj {
	float: right;
	background-color: green;
	color: white; /* #003333; */
	width: 32px;
	height: 32px;
	font-weight: bold;
	font-size: 24px;
	text-align: center;
	line-height: 1;
	vertical-align: middle;
	margin-right: 8px;
}

#showcase table {
  border-spacing: 0; /* Replaces cellspacing="0" */
  border-collapse: collapse; /* Ensures borders merge, like cellspacing="0" */
	width: 80%; 
	margin-left: auto;
	margin-right: auto;
	border: 1px solid darkcyan;
}

#showcase table th {
	text-align: center;
	color: lightgray;
}

#showcase table th, td {
	padding: 4px;
	border-bottom: 1px solid darkcyan;
	border-right: 1px solid darkcyan; 
	font-size: 20px;
}

#showcase table td.lewa {
	border-right: 1px solid darkcyan;
	width: 25%;
	text-align: center;
}

#showcase span.czas {
	width: 100%;
	float: left;
	font-size: 24px;
}

#showcase span.data {
	width: 100%;
	float: left;
	font-size: 12px;
	color: gray;
}

#showcase form {
	width: 80%; 
	margin-left: auto;
	margin-right: auto;
}

#showcase p.ll { /* info o litanii loretanskiej */
	width: 80%;
	margin: auto;
	font-size: 14px;
	text-align: justify;
	margin-top: 4px;
}

/* footer */
footer {
	font-size: 10pt;
	padding: 8px;
	margin-top: 0px;
	color: white;
	background-color: #003333;
	text-align: center;
	border-top: 1px solid lightgreen;
}

footer p {
	padding: 2px;
	text-align: center;
}

/* obsługa dialogu modalnego */
.modal {
	display: none;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
	position: relative;
	background-color: #113333; /* darkcyan; */
	color: lightcyan;
	padding: 16px;
	margin-top: 64px;
	margin-left: auto;
	margin-right: auto;
	width: 266px;
	border: 2px solid lightgreen;
	font-size: 16px;
}

.modal-content .modalTitle {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	color: lightgreen;
}

.modal-content .closeBtn {
	margin: 0px;
	margin-top: -12px;
	padding: 0px;
	float: right;
	color: lightgray;
	line-height: 1.0;
	font-size: 36px;
	font-weight: bold;
}

.modal-content sup {
	color: lightgreen;
	font-weight: bold;
}

.modal-content p {
	margin-top: 2px;
	margin-bottom: 2px;
}

.modal-content .closeBtn:hover {
	color: red;
}

.modal-content input[type=text], input[type=tel]{
	float: left;
	width: 100%;
	color: black;
	background-color: darkcyan;
	text-align: left;
	font-size: 18px;
	font-weight: bold;
}

.modal-content input::placeholder {
	color: silver;
	font-weight: normal;
}

.modal-content input[type=submit], input[type=reset], input[type=button]{
	margin: 1px;
	float: left;
	width: 32%;
	height: 32px;
	color: black;
	background-color: darkgreen;
	font-size: 18px;
	font-weight: bold;
}

.modal-content input[type=submit] {
	float: right;
	color: white;
	background-color: green;
}

.kontakt input[type=submit], input[type=reset], input[type=button]{
	margin: 1px;
	float: left;
	width: 32%;
	height: 32px;
	color: black;
	background-color: darkgreen;
	font-size: 18px;
	font-weight: bold;
}

.kontakt input[type=submit] {
	float: right;
	color: white;
	background-color: green;
}

.kontakt label {
	float: left;
	width: 100%;
	color: lightgray;
}

.nowaSztafeta input[type=submit], input[type=reset], input[type=button]{
	margin: 1px;
	float: left;
	width: 32%;
	height: 32px;
	color: black;
	background-color: darkgreen;
	font-size: 18px;
	font-weight: bold;
}

.nowaSztafeta input[type=submit] {
	float: right;
	color: white;
	background-color: green;
}

.nowaSztafeta label {
	float: left;
	width: 100%;
	color: lightgray;
}

.modal-content input[type=button] {
	float: right;
	color: white;
	background-color: red;
}

.modal-container label {
	float: left;
	width: 100%;
	color: lightgray;
}

@media screen and (max-width: 768px) {
	body {
		hyphens: auto;
		width: 100%;
		margin-left: 8px;
		margin-right: 8px;
	} 

	.kontakt, .nowaSztafeta {
		width: 100%;
		margin: auto;
		overflow: hidden;
	}

	header #branding,
	{
		float: none;
		text-align: center;
		width: 100%;
	}

	footer {
		font-size: 8px;
	}

	#showcase select {
		font-size: 20px;
	}

	#showcase table {
		width: 100%;
	}

	#showcase form {
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	#showcase p.ll { /* info o litanii loretanskiej */
		width: 100%;
		margin-top: 4px;
		margin-left: auto;
		margin-right: auto;
		font-size: 10pt;
		text-align: justify;
	}
	.modal-content {
		margin-top: 0px;
		font-size: 18px;
	}
} /* media */
