/* spolecny mayout mezi webem a adminem */

/* tlacitka */
.btnStorno,
.btnNew,
.btnRemove,
.btnSave,
.btnPrint,
.btnSearch,
.btnExtFilter,
.btnClose,
.aBtnStorno,
.aBtnNew,
.aBtnRemove,
.aBtnSave,
.aBtnPrint,
.btn {
	padding: 6px 10px;
	font-size: 14px;
	border: 1px solid var(--btnSaveBorder);
	border-radius: 4px; 
	cursor: pointer;
	vertical-align: middle;
	margin: 4px;
	line-height: 14px;
}

.btn {
	background: var(--btnSaveBg); 
	color: var(--btnSaveFg); 
}

/*********************************************
 * patička
 */

footer {
	background: var(--footerBg);
	color: var(--footerFg);
	border-top-color: var(--footerBorderFg);
	padding: 40px 0 20px;
	overflow: hidden;
}

footer .container {
	max-width: 1200px;
	margin: auto;
}

footer a {
	color: var(--footerLinkFg);
}

footer a:hover {
	color: var(--footerLinkHoverFg);
	text-decoration: underline;
}

.footerCols {
	overflow: hidden;
}

.footerCol {
	float: left;
	width: 33.33%;
	box-sizing: border-box;
	padding: 0 20px;
}

footer input,
footer textarea {
	width: 100%;
	margin: 5px 0;
	padding: 8px;
	border: none;
	border-radius: 4px;
	box-sizing: border-box;
}

.footerCol h4 {
	margin-bottom: 10px;
	border-bottom: 1px solid var(--footerH4BorderFg);
	padding-bottom: 5px;
}

footer textarea {
	height: 100px;
}

footer .contactFooter input:first-of-type {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

footer .contactFooter button {
	margin-top: 10px;
	padding: 10px 20px;
}

.contactFooterOk,
.contactFooterErr {
	display: none;
	margin: 10px 0 20px;
	padding: 10px;
	border-radius: 4px;
	border: 1px solid transparent;
	font-weight: bold;
}

.contactFooterErr {
	color: var(--contactFooterErrFg);
	background: var(--contactFooterErrBg);
	border-color: var(--contactFormErrBorderFg);
}

.contactFooterOk {
	color: var(--contactFooterOkFg);
	background: var(--contactFooterOkBg);
	border-color: var(--contactFormOkBorderFg);
}

.footerBottom {
	text-align: center;
	padding-top: 20px;
	font-size: 12px;
	color: var(--footerBottomFg);
}

@media(max-width: 600px) {
	.footerCol {
		width: 100%;
	}
}

.footerMeta {
	font-size: 11px;
	color: var(--footerMetaFg);
	text-align: center;
	margin-top: 20px;
	padding-top: 10px;
	font-style: italic;
}

