@charset "utf-8";
html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #6b6b6b;
  overflow-x: hidden;
  margin: 0px;
  background: white;
}
a{
	text-decoration: none;
}
.naglowek{
background: #4169e1;
}
.logo-powiatu{
float: left;
display: block;
margin-top: 15px;
margin-right: 20px;
}
.wraper-naglowka{
	display: block;
	max-width: 900px;
	width: 100%;
	margin: auto;
	padding-bottom: 10px;
}
.slogan-naglowek{
color: white;
font-size: 3.0em;
}
.slogan-tresc{
color: white;
font-size: 1.0em;	
}
.tresc{
	display: block;
	margin-top: 10px;
}
.flex-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    }

.flex-item:nth-child(1) {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    }

.flex-item:nth-child(2) {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    }

/*
    Legacy Firefox implementation treats all flex containers
    as inline-block elements.
*/

@-moz-document url-prefix() {
.flex-container {
    width: 100%;
    -moz-box-sizing: border-box;
    }

}

.zsug-zst{
max-width: 400px;
width: 100%;
border: 1px solid #dcdcdc;
margin: 40px;
-webkit-box-shadow: 0 0 30px 0 rgba(100,100,100,0.2);
box-shadow: 0 0 30px 0 rgba(100,100,100,0.2);
	-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;	
}
.zsug-zst:hover{
-webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);	
}
.przycisk{
	margin-top: 10px;
	width: 100%;
	background: #dcdcdc url(/praca-dla-ucznia/grafika/edit.png) no-repeat left;
	border-top: 1px solid silver;
	border-bottom: 1px solid silver;
	text-align: center;
	color: #4c4c4c;
	-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;

}
.przycisk:hover{
	background: #4169e1 url(/praca-dla-ucznia/grafika/edit.png) no-repeat left;
	color: #f9f9f9;
	transform: scale(1.1);
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
	text-shadow: 1px 1px 0 #000000;
	border: 1px solid white;
}
div.zawodyzsug {
  background-color: lightblue;
  width: 100%;
  height: 200px;
  overflow: auto;
}
div.zawodyzst {
  background-color: #c7e2cc;
  width: 100%;
  height: 200px;
  overflow: auto;
}
.zawody{
	margin: 5px;
}
.stopka{
	display: block;
	max-width: 900px;
	width: 100%;
	margin: auto;
	background: #4169e1;
	color: white;
	padding: 5px;
-webkit-box-shadow: 0 20px 20px -10px rgba(0,0,0,0.2);
box-shadow: 0 20px 20px -10px rgba(0,0,0,0.2);
border: 1px solid white;
}
.info{
	text-align: center;
	font-size: 80%;
	margin-top: 10px;
}

@media 
only screen and 
    (max-width: 768px){
    
 .slogan-naglowek{
color: white;
font-size: 2.0em;
text-align: center;
}
.slogan-tresc{
color: white;
font-size: 0.8em;
text-align: center;	
} 

.logo-powiatu{
float: none;
display: block;
margin-top: 15px;
margin: auto;
}
 
.flex-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }

.flex-item:nth-child(1) {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    }

.flex-item:nth-child(2) {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    }    
    
    
    
    }