/* RESET CSS http://meyerweb.com/eric/tools/css/reset/ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* GENERAL */

body{
	background-color:white;
	min-height:100vh;
	font-family: 'Verdana', sans-serif;
}

/* NAV */

nav.navigation{
	position:relative;
	height:70px;
	/*background-color:#3c3c3c;*/
	background-color:white;
	z-index:2;
}
.nav-logo{
	float:left;
	height:70px;
	line-height:70px;
	padding:0 0px;
	background-color:white;
	color:#ffffff;
	font-weight:700;
	text-transform:uppercase;
}
ul.nav-menu, ul.nav-menu li, ul.nav-menu li a{
	float:left;
}
ul.nav-menu{
	padding-left:10px;
}
ul.nav-menu li a{
	height:70px;
	line-height:70px;
	padding:0 10px;
	color:#821EE6;
	text-decoration:none;
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
    font-size: 18px;
}
ul.nav-menu li a:hover{
	color:darkgray;
}
.nav-toggle{
	display:none;
	position:absolute;
	top:0;
	right:0;
	width:70px;
	height:70px;
	background-color:#821EE6;
	cursor:pointer;
}
span.icon-bar{
	position:absolute;
	right:22px;
	display:block;
	width:26px;
	height:2px;
	background-color:#ffffff;
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.icon-bar:nth-child(1){
  top:27px;
}
.icon-bar:nth-child(2){
  top:34px;
}
.icon-bar:nth-child(3){
  top:41px;
}
.nav-overlay{
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	background-color:rgba(0,0,0,0.5);
	z-index:1;
	opacity:0;
	visibility:hidden;
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.nav-overlay.active{
	opacity:1;
	visibility:visible;
}

/* ICON BARS ANIMATION */

.nav-toggle.active .icon-bar:nth-child(1){
	top:34px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
.nav-toggle.active .icon-bar:nth-child(2){
	width:0;
}
.nav-toggle.active .icon-bar:nth-child(3){
	top:34px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* SITE CONTAINER */

.site-container{
	width:80%;
	margin:5%;
	padding:5%;
	background-color: #ffffff;
	font-size:16px;
	font-weight:300;
	line-height:20px;
}
.site-container p{
	margin:10px 0;
}

/* MEDIAQUERIES */

@media screen and (max-width:767px){
	ul.nav-menu{
		position:absolute;
		top:70px;
		width:100%;
		height:0;
		padding:0;
		overflow:hidden;
	}
	ul.nav-menu.active{
		height:auto;
	}
	ul.nav-menu li{
		width:100%;
	}
	ul.nav-menu li a{
		width:100%;
		padding:0;
		text-align:center;
		background-color:#2c2c2c;
	}
	ul.nav-menu li a:hover{
		background-color:#1c1c1c;
	}
	.nav-toggle{
		display:block;
	}
}
@media screen and (min-width:768px){
	.nav-overlay.active{
		visibility:hidden;
		opacity:0;
	}
}
/* VLASTNÍ NASTAVENÍ */
a {
    color: #821EE6;
    text-decoration: none;
}
a:hover {
    color: darkgray;
    text-decoration: underline;
}
.lista_uzivatel {
    border-top: solid 2px #821EE6;
    font-size: 13px;
    padding: 4px;
}
.lista_uzivatel-user_company {
    font-weight: bold;
    color: #821EE6;
    position: absolute;
    left: 9px;
}
.lista_uzivatel-user_name {
    position: absolute;
    right: 9px;
}
.telo_stranky {
    position: relative;
    top: 15px;
    font-size: 11px;
}
.obsah_stranky {
    padding: 10px;
}
h1 {
    font-size: 16px;
    font-weight: bold;
    line-height: 150%;
    padding-bottom: 5px;
}
h2 {
    font-size: 14px;
    font-weight: bolder;
    line-height: 150%;
    padding-bottom: 5px;
    padding-top: 5px;
}
h3 {
    font-size: 12px;
    font-weight: bolder;
    line-height: 150%;
    padding-bottom: 5px;
    padding-top: 5px;
}
h4 {
    font-size: 11px;
    font-weight: bold;
    line-height: 150%;
    padding-top: 5px;
    padding-bottom: 5px;
}
ul.vycet li {
    line-height: 20px;
    padding-left: 5px;
}
ul.vycet li:hover {
    background-color: #EFEFEF;
}
.vycet-polozka_seznamu {
    width: 100px;
    float: left;
}
.vycet-popis {
}
.vycet-tabulka {
    border: solid 1px darkgray;
}
.vycet-tabulka-radek:hover { 
    background: rgb(224,208,255) !important; 
}
.vycet-tabulka-radek:hover td { 
    background: transparent; 
}
.vycet-tabulka th {
    border: solid 1px darkgray;
    padding: 3px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: bold;
    text-align: left;
    font-size: 11px;
    vertical-align: middle;
    background-color: #EFEFEF;
}
.vycet-tabulka td {
    border: solid 1px darkgray;
    padding: 3px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
    font-size: 11px;
    vertical-align: middle;
    background-color: white;
    font-family: Verdana;
}
.vycet-tabulka input {
    font-size: 11px;
    font-family: Verdana;
}
.vycet-tabulka label {
    font-size: 11px;
    font-family: Verdana;
}
.vycet-tabulka textarea {
    font-size: 11px;
    font-family: Verdana;
}
.vycet-tabulka option, .vycet-tabulka optgroup, .vycet-tabulka select {
    font-size: 11px;
    font-family: Verdana;
}
.panel_ukolu {
    border: solid 0.5px #821EE6;
    margin-bottom: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    margin-left: -5px;
    margin-right: -5px;
    background-color: lavender;
}
.panel_ukolu a {
    font-weight: bold;
}
.povinny_udaj {
    color: #FF9900;
    font-weight: bold;
    font-size: 12px;
}
.polopovinny_udaj {
    color: navy;
    font-weight: bold;
    font-size: 12px;
}
.chyba {
    color: indianred;
    font-weight: bold;
    padding-top: 4px;
    padding-bottom: 4px;
}
.vysvetlivky {
    font-style: italic;
}
.paticka_copy {
    border-top: solid 0.5px #821EE6;
    margin-top: 15px;
    padding-top: 5px;
    font-size: 10px;
    text-align: center;
    line-height: 150%;
}
.paticka_tm {
    font-size: 9px;
    text-align: center;
    line-height: 150%;
}
.logo_pro_tisk {
    display:none;
}
@media print {
    .navigation, .panel_ukolu {
        display: none;
    }
    .logo_pro_tisk {
        display: block;
    }
    .paticka_copy {
      display: none;
    }
    .netiskni {
      display: none;
    }
}
.tiskova_tabulka {
    width: 190mm;
    text-align: justify;
    border-left: dotted 0px gray;
    border-right: dotted 0px gray;
}
.tiskova_tabulka td {
    vertical-align: top;
    font-size: 12px;
    padding: 4px;
    line-height: 150%;
}
.tiskova_tabulka h1 {
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
}
.tiskova_tabulka h4 {
    text-align: center;
    font-size: 12px;
}
td.smluvni_podminky {
    font-size: 9px;
}