html {
    font-size: 15px;
    width: 100%;
    height: 100%;
}
body {
    font-size: 1rem;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    line-height: 1.5;
}
img {
    max-width: 100%;
    vertical-align: middle;
    height: auto;
}
.fit-img {
    object-fit: cover;
    width: 100%;
}
* {
    box-sizing: border-box;
}
*[onclick] {
    cursor: pointer;
}
a img {
    border: 0;
}
form, figure {
    margin:0;
    padding:0;
}
input, select, textarea {
    border: 1px solid #cbcbcb;
    padding: 4px 7px;
    font-size: 1rem;
    vertical-align: middle;
}
select option {
    font-size: 1rem;
}
input[type="submit"], input[type="button"], .btn {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    font-size: 1rem;
    padding: 4px 15px;
    background-color: #6c6c6c;
    border: 1px solid transparent;
    color: #ffffff;
    cursor: pointer;
    font-style: normal;
}
input[type="submit"]:hover, input[type="button"]:hover, .btn:hover {
    background-color: #000;
}
input[type="submit"]:hover, input[type="button"]:hover, .btn:hover {
    color: #FFFFFF;
}
input:focus,textarea:focus, select:focus {
    outline: 1px solid #e91e63a8;
    outline-offset: -1px;
}
input[type="checkbox"], input[type="radio"] {
	margin: 0 4px 3px 0;
}
input[type="file"] {
    background-color: transparent;
    border: 0;
}
.inter-btn {
    background-color: transparent;
    color: black;
    padding: 4px 0;
    width: 30px;
    margin-left: -30px;
}
small {
    font-size: 0.75rem;
}
.nowrap {
    white-space: nowrap;
}
.nounderline, .nounderline a {
    text-decoration: none;
}
.print {
    display: none;
}
.relative {
    position: relative;
}
.scrolltable {
    overflow: auto;
    max-width: 90vw;
}
.invisible {
    display: none;
}
.inlineblock {
    display: inline-block;
}
.block {
    display: block;
}
form {
    margin:0;
    padding:0;
}
table {
    border-collapse: collapse;
    border: 0;
    font-size: 1rem;
}
.layout-tbl, .layout-tbl tr, .layout-tbl th, .layout-tbl td {
	border: 0;
	padding: 3px 10px 3px 0;
}
.row-tbl td, .row-tbl th {
    vertical-align: top;
	border-left: 0;
	border-right: 0;
	border-color: #d3d1cc;
}
/* colors (fonts)*/
.clr-light, .clr-light a {
    color: rgb(255 255 255 / 80%) !important;
}
.clr-white, .clr-white a {
    color: #ffffff !important;
}
.clr-black {
    color: #000 !important;
}
.clr-gray {
    color: #737373;
}
.clr-red {
    color: #cc2127;
}
/* colors (background)*/
.bg-gradient {
    background: -moz-linear-gradient(top, rgb(237, 237, 237) 0%, rgb(255, 255, 255) 100%);
    background: -webkit-linear-gradient(top, #ededed 0%,#fff 100%);
    background: linear-gradient(to bottom, #ededed 0%,#fff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ffffff',GradientType=0 );
    Current gradient has opacity, switching color format to 'rgba';
}
.bg-clr-white {
    background-color: #fff !important;
}
.bg-clr-black {
    background-color: #000 !important;
}
.bg-clr-gray {
    background-color: #ededed;
}
.bg-clr-red {
    background-color: #cc2127;
}
/* border */
.bo {
    border: solid 1px #cecece;
}
.bo-light {
    border: solid 1px rgba(206, 206, 206, 0.5);
}
.bo-l {
    border-left: solid 1px #cecece;
}
.bo-r {
    border-right: solid 1px #cecece;
}
.bo-t {
    border-top: solid 1px #cecece;
}
.bo-b {
    border-bottom: solid 1px #cecece;
}
.bo-0 {
    border: 0 !important;
}
/* fonts style */
sup {
    font-size: 0.69em;
}
.fnt-light {
    font-weight: 300;
}
.fnt-normal {
    font-weight: normal !important;
}
.fnt-bold, .fnt-strong, strong, bold {
    font-weight: bold;
}
.fnt-italic {
    font-style: italic;
}
.fnt-extrabold {
    font-weight: 700;
}
.fnt-uppercase {
    text-transform: uppercase !important;
}
ul.no-list li {
    list-style: none;
}
/* font size */
.sz-xxxs {
    font-size: 10px;
}
.sz-xxs, .sz-xxs th, .sz-xxs td {
    font-size: 0.69rem;
}
.sz-xs, .sz-xs th, .sz-xs td {
    font-size: 0.75rem;
}
.sz-s {
    font-size: 0.813rem;
}
.sz-m {
    font-size: 1rem;
}
.sz-l {
    font-size: 1.125rem;
}
.sz-xl {
    font-size: 1.375rem;
}
.sz-xxl {
    font-size: 2.188rem;
}
/* align */
.right, .right th, .right td  {
    text-align: right !important;
}
.left, .left th, .left td {
    text-align: left !important;
}
.center, .center th, .center td {
    text-align: center !important;
}
.float-r {
    float: right !important;
}
.float-l {
    float: left !important;
}
.float-none {
    float: none !important;
}
.top, .top > *, .top tr > * {
    vertical-align: top !important;
}
.middle, .middle > *, .middle tr > *  {
    vertical-align: middle !important;
}
.bottom, .bottom >*, .bottom tr > *  {
    vertical-align: bottom !important;
}
/* box margin */
.m-0 {
    margin: 0 !important;
}
.m-1 {
    margin: 10px !important;
}
.m-2 {
    margin: 25px !important;
}
.m-3 {
    margin: 35px !important;
}
.m-4 {
    margin: 30px 45px !important;
}
.ml-0 {
    margin-left: 0 !important;
}
.ml-1 {
    margin-left: 10px !important;
}
.ml-2 {
    margin-left: 25px !important;
}
.ml-3 {
    margin-left: 35px !important;
}
.mr-0 {
    margin-right: 0 !important;
}
.mr-1 {
    margin-right: 10px !important;
}
.mr-2 {
    margin-right: 25px !important;
}
.mr-3 {
    margin-right: 35px !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mt-05 {
    margin-top: 5px !important;
}
.mt-1 {
    margin-top: 10px !important;
}
.mt-2 {
    margin-top: 25px !important;
}
.mt-3 {
    margin-top: 35px !important;
}
.mt-4 {
    margin-top: 45px !important;
}
.mt-5 {
    margin-top: 55px !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-05 {
    margin-bottom: 5px !important;
}
.mb-1 {
    margin-bottom: 10px !important;
}
.mb-2 {
    margin-bottom: 25px !important;
}
.mb-3 {
    margin-bottom: 35px !important;
}
.mb-4 {
    margin-bottom: 45px !important;
}
.mb-5 {
    margin-bottom: 55px !important;
}
.m-auto {
    margin: auto !important;
}
/* box padding */
.p-0 {
    padding: 0 !important;
}
.p-1 {
    padding: 10px !important;
}
.p-2 {
    padding: 25px !important;
}
.p-3 {
    padding: 35px !important;
}
.pl-0 {
    padding-left: 0 !important;
}
.pl-1 {
    padding-left: 10px !important;
}
.pl-2 {
    padding-left: 25px !important;
}
.pl-3 {
    padding-left: 35px !important;
}
.pr-0 {
    padding-right: 0 !important;
}
.pr-1 {
    padding-right: 10px !important;
}
.pr-2 {
    padding-right: 25px !important;
}
.pr-3 {
    padding-right: 35px !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.pb-1 {
    padding-bottom: 10px !important;
}
.pb-2 {
    padding-bottom: 20px !important;
}
.pb-3 {
    padding-bottom: 35px !important;
}
.pt-0 {
    padding-top: 0 !important;
}
.pt-1 {
    padding-top: 10px !important;
}
.pt-2 {
    padding-top: 20px !important;
}
.pt-3 {
    padding-top: 35px !important;
}
/* flex (na screenu se zobrazi vedle sebe na mobilu pod sebou) */
.flex {
    display: flex !important;
    flex-direction: column;
}
/* flex zobrazeni pro vsechna media */
.always-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.f-nowrap {
    flex-wrap: nowrap !important;
}
.f-2 > *, .f-3 > *, .f-4 > *, .f-4-3-2 > *, .f-4-2-2 > *, .f-4-2-1 > *, .f-3-2-2 > *, .f-3-2-1 > * {margin-bottom: 25px;}
/* flex vlastnosti*/
.f-baseline {
    align-items: baseline !important;
}
.f-top {
    align-items: flex-start !important;
}
.f-bottom {
    align-items: flex-end !important;
}
.f-middle {
    align-items: center !important;
}
.f-start {
    justify-content: flex-start !important;
}
.f-between {
    justify-content: space-between !important;
}
.f-center{
    justify-content: center !important;
}
.f-right{
    justify-content: right !important;
}
.f-flex-0 {
    flex: 0;
}
.f-flex-1 {
	flex: 1;
}
.f-direct-col {
    display: flex;
    flex-direction: column;
}
.order-first {
    order: -1;
}
.order-1 {
    order: 1;
}
.order-2 {
   order: 2;
}
.order-3 {
    order: 3;
}
/* height (uplatni se jen na flex boxy)*/
.h-100 {
    height: 100% !important;
    min-height: 100vh !important;
}
.h-90 {
    height: 87% !important;
}
.h-80 {
    height: 80% !important;
}
.h-70 {
    height: 70% !important;
}
.h-60 {
    height: 60% !important;
}
.h-50 {
    height: 50% !important;
}
.h-40 {
    height: 40% !important;
}
.h-30 {
    height: 30% !important;
}
.h-20 {
    height: 20% !important;
}
.h-10 {
    height: 10% !important;
}
/* width */
.w-100 {
    width: 100% !important;
}
.w-90 {
    width: 90% !important;
}
.w-80 {
    width: 80% !important;
}
.w-70 {
    width: 70% !important;
}
.w-60 {
    width: 60% !important;
}
.w-50 {
    width: 50% !important;
}
.w-40 {
    width: 40% !important;
}
.w-30 {
    width: 30% !important;
}
.w-20 {
    width: 20% !important;
}
.w-10 {
    width: 10% !important;
}
.max-100 {
    max-width: 100% !important;
}
/* pager */
.pager {
	clear: both;
	padding: 30px 0 30px 0;
	color: #0000;
	letter-spacing: -4px;
}
.pager a, .pager .active {
	background-color: #dbdbdb;
	padding: 5px 12px;
	letter-spacing: normal;
	margin: 0 1px;
	color: black;
	text-decoration: none;
}
.pager a.nolink {
	background-color: transparent;
	color: black;
}
.pager .dots {
    background-color: transparent;
    color: black;
    letter-spacing: 1px;
    padding: 0 5px;
    display: inline-block;
}
.pager a:hover, .pager .active {
	background-color: black;
	color: white;
}
.pager:empty {
	display: none;
}
@media (min-width: 768px) {
.fix { /*maximalni sirka pro screen */
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.no-screen {
    display: none !important;
}
.scrolltable {
    width: 100%;
    max-width: 100vw;
	overflow: unset;
}
.right-scr {
    text-align: right !important;
}
.left-scr {
    text-align: left !important;
}
.flex {
    flex-direction: row;
    flex-wrap: wrap;
}
.f-nowrap {
    flex-wrap: nowrap !important;
}
.col {
    -moz-column-gap: 15px;
    -webkit-column-gap: 15px;
    column-gap: 15px;
    -moz-column-width: 13em;
    -moz-columns: 13em;
    -webkit-columns: 13em;
    columns: 13em;
}
.col2 {
    columns: 2;
}
.box-1 {
    width: 6.25%;
}
.box-2 {
    width: 12.5%;
}
.box-3 {
    width: 18.75%;
}
.box-4 {
    width: 25%;
}
.box-5 {
    width: 31.25%;
}
.box-6 {
    width: 37.5%;
}
.box-7 {
    width: 43.75%;
}
.box-8 {
    width: 50%;
}
.box-9 {
    width: 56.25%;
}
.box-10 {
    width: 62.5%;
}
.box-11 {
    width: 68.75%;
}
.box-12 {
    width: 75%;
}
.box-13 {
    width: 81.25%;
}
.box-14 {
    width: 87.5%;
}
.box-15 {
    width: 93.75%;
}
.box-16 {
    width: 100%;
}
/* article layout */
.f-2, .f-3, .f-4, .f-4-3-2, .f-4-2-2, .f-4-2-1, .f-3-2-2, .f-3-2-1 {
    margin-right: -2%;
}
.f-2 > *, .f-3 > *, .f-4 > *, .f-4-3-2 > *, .f-4-2-2 > *, .f-4-2-1 > *, .f-3-2-2 > *, .f-3-2-1 > * {
    margin: 0 2% 2% 0;
}
.f-2 > * {
	width: calc(50% - 2%);
}
.f-3 > * {
	width: calc(33.33% - 2%);
}
.f-4 > * {
	width: calc(25% - 2%);
}	
/* padding only screen */
.p-0-scr {
    padding: 0 !important;
}
.p-1-scr  {
    padding: 5px 5px 1px !important;
}
.p-2-scr  {
    padding: 25px !important;
}
.p-3-scr  {
    padding: 35px !important;
}
.pl-0-scr  {
    padding-left: 0 !important;
}
.pl-1-scr  {
    padding-left: 10px !important;
}
.pl-2-scr  {
    padding-left: 25px !important;
}
.pl-3-scr  {
    padding-left: 35px !important;
}
.pr-0-scr  {
    padding-right: 0 !important;
}
.pr-1-scr  {
    padding-right: 10px !important;
}
.pr-2-scr  {
    padding-right: 25px !important;
}
.pr-3-scr  {
    padding-right: 35px !important;
}
.pb-0-scr  {
    padding-bottom: 0 !important;
}
.pb-1-scr  {
    padding-bottom: 10px !important;
}
.pb-2-scr  {
    padding-bottom: 20px !important;
}
.pb-3-scr  {
    padding-bottom: 35px !important;
}
.pt-0-scr  {
    padding-top: 0 !important;
}
.pt-1-scr  {
    padding-top: 10px !important;
}
.pt-2-scr  {
    padding-top: 20px !important;
}
.pt-3-scr  {
    padding-top: 35px !important;
}
}
@media (min-width: 768px) {
.f-4-3-2 > *, .f-4-2-2 > *, .f-4-2-1 > *, .f-3-2-2 > *, .f-3-2-1 > * {
	width: calc(50% - 2%);
}
}
@media (min-width: 950px) {
.f-4-3-2 > * {
    width: calc(33.33% - 2%);
}
.f-3-2-1 > *, .f-3-2-2 > * {
	width: calc(50% - 2%);
}
}
@media (min-width: 1100px){
.f-4-3-2 > *, .f-4-2-2 > *, .f-4-2-1 > * {
    width: calc(25% - 2%);
}
.f-3-2-1 > *, .f-3-2-2 > * {
	width: calc(33.33% - 2%);
}
}
/* mobil */
@media (max-width: 767px)  {
.ico-menu {
    display: inline-block;
    color: white;
    background: black;    
    text-align: center;
	font-size: 20px;
    width: 33px;
    height: 33px;
    line-height: 30px;
    font-style: normal;
}
.ico-menu:after {
    content: "\2630";	
}
.mobilmenu.active .ico-menu:after {
	content: "\2715";
	position: relative;
	top: 2px;
}
.no-mobile {
    display: none !important;
}
.center-mo {
    text-align: center !important;
}
.mobile-page-padding {
    padding-left: 35px;
    padding-right: 35px;
}
.flex-tbl, .flex-tbl tr, .flex-tbl th, .flex-tbl td, .flex-tbl tbody {
	display: block;
	width: 100%;
}
.mobilmenu {
	text-align: right;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1100;
}
.mobilmenu a {
	display: block;	
	color: white;
	text-decoration: none;
}
.mobilmenu nav {
	display: none;
	text-align: left;
	list-style: none;
	margin: 0;
	padding: 0;
}
.mobilmenu nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mobilmenu li {
	position: relative;
	margin: 0 3em 0 3em;
	padding: 8px 0 6px 4px;
	border-bottom: solid 1px rgb(255 255 255 / 20%);
}
.mobilmenu nav ul ul {
    padding: 9px 0;
}
.mobilmenu nav ul ul li {
    margin: 0 0 0 1em;
    border: 0;
    padding: 4px 0;
}
.mobilmenu.active {
	width: 100vw;
	min-height: 100vh;
	background-color: #000;
}
.mobilmenu.active nav {
	display: block;
}
.mobilmenu.active nav ul ul {
	display: none;
}
.mobilmenu.active nav li.inpath > ul {
	display: block;
	border-top: solid 1px rgb(255 255 255 / 20%);
	margin-top: 6px;
}
i.aa-ico-expand {
    display: block;
    width: 23px;
    height: 12px;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxODQuMjUgOTcuMDgiPg0KICA8cGF0aCBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLXdpZHRoPSI3IiBkPSJNMTgxLjc4IDIuNDggOTIuMTMgOTIuMTMgMi40OCAyLjQ3Ii8+DQo8L3N2Zz4=) no-repeat top;
    position: absolute;
    right: 0;
    top: 12px;
    font-size: 47px;
    line-height: 41px;
}
.mobilmenu.active nav li.inpath > i.aa-ico-expand {
	transform: rotate(180deg);
}
/* white-menu */
.mobilmenu.white-menu.active {
	background-color: #fff;
}
.mobilmenu.white-menu li, .mobilmenu.white-menu.active nav li.inpath > ul  {
	border-color: rgb(0 0 0 / 15%);
}
.mobilmenu.white-menu a {
	color: black;
}
.mobilmenu.white-menu .ico-menu {
	background: transparent;
	color: black;
}
.mobilmenu.white-menu i.aa-ico-expand {
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxODQuMjUgOTcuMDgiPg0KICA8cGF0aCBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLXdpZHRoPSI3IiBkPSJNMTgxLjc4IDIuNDggOTIuMTMgOTIuMTMgMi40OCAyLjQ3Ii8+DQo8L3N2Zz4=);
}
.f-4-2-2, .f-3-2-2 {
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: 0;
	margin-right: -2%;
}
.f-4-2-2 > *, .f-3-2-2 > * {
    width: calc(50% - 2%);
	margin: 0 2% 2% 0;   
}
}
@media print {
.noprint, .no-print {
    display: none;
}
}

