html {
    width: 100%;
    height: 100%;
}
body {
    font-size: 15px;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    line-height: 1.4;
}
img {
    max-width: 100%;
    vertical-align: middle;
    height: auto;
}
* {
    box-sizing: border-box;
}
*[onclick] {
    cursor: pointer;
}
.cover-img, .fit-img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.full-img, .no-resize {
    width: inherit;
    max-width: inherit;
}
a img {
    border: none;
}
form, figure {
    margin:0;
    padding:0;
}
input, select, textarea, .like-input {
    border: 1px solid #cbcbcb;
    padding: 4px 7px;
    font-size: 15px;
    vertical-align: middle;
}
select option {
 /* background-color: #FFFFFF; */ /*removed - checked options on multiple select are not visible after unfocus */
    font-size: 15px;
}
input[type="submit"], input[type="button"], .btn {
    line-height: 1.2em;
    text-decoration: none;
    vertical-align: middle;
    font-size: 15px;
    padding: 4px 15px;
    background-color: #6c6c6c;
    border: 0;
    color: #ffffff;
    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.85em;
}
.nowrap {
    white-space: nowrap;
}
.nounderline, .nounderline a {
    text-decoration: none;
}
.relative {
    position: relative;
}
.scrolltable {
    overflow: auto;
    max-width: 90vw;
}
.d-inlineblock {
    display: inline-block;
}
.d-block {
    display: block;
}
.d-table {
    display: table;
}
/* colors (fonts)*/
.clr-light, .clr-light a {
    color: #ffffff;
}
.clr-black {
    color: #000;
}
.clr-gray {
    color: #737373;
}
.clr-red {
    color: #cc2127;
}
.clr-orange1 {
    color: #f37022;
}
.clr-orange2 {
    color: #feb914;
}
.clr-yelow {
    color: #fff200;
}
.clr-green1 {
    color: #bed730;
}
.clr-green2 {
    color: #00964a;
}
/* 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 );
}
.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;
}
.bg-clr-orange {
    background-color: #f37022 ;
}
.bg-clr-orange2 {
    background-color: #feb914;
}
.bg-clr-yelow {
    background-color: #fff200;
}
.bg-clr-green1 {
    background-color: #bed730;
}
.bg-clr-green2 {
    background-color: #00964a;
}
/* 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: .7em;
}
.fnt-light {
    font-weight: 300 !important;
}
.fnt-normal {
    font-weight: 400 !important;
}
.fnt-bold, .fnt-strong, strong, bold {
    font-weight: 600 !important;
}
.fnt-italic {
    font-style: italic !important;
}
.fnt-extrabold {
    font-weight: 700 !important;
}
.fnt-uppercase {
    text-transform: uppercase !important;
}
/* font size */
.sz-xxxs {
    font-size: 10px !important;
}
.sz-xxs, .sz-xxs th, .sz-xxs td {
    font-size: 11px !important;
}
.sz-xs, .sz-xs th, .sz-xs td {
    font-size: 12px !important;
}
.sz-s {
    font-size: 13px !important;
}
.sz-m {
    font-size: 15px !important;
}
.sz-l {
    font-size: 18px !important;
}
.sz-xl {
    font-size: 22px !important;
}
.sz-xxl {
    font-size: 2.55vw !important;
}
/* align */
.right {
    text-align: right !important;
}
.left {
    text-align: left !important;
}
.center {
    text-align: center !important;
}
.float-r {
    float: right !important;
}
.float-l {
    float: left !important;
}
.float-none {
    float: none !important;
}
.top {
    vertical-align: top !important;
}
.middle, .middle > * {
    vertical-align: middle !important;
}
.bottom, .bottom >* {
    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-1 {
    margin-top: 10px !important;
}
.mt-2 {
    margin-top: 25px !important;
}
.mt-3 {
    margin-top: 35px !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-1 {
    margin-bottom: 10px !important;
}
.mb-2 {
    margin-bottom: 25px !important;
}
.mb-3 {
    margin-bottom: 35px !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 zobraz? vedle sebe na mobilu pod sebou) */
.flex {
    display: flex !important;
    flex-direction: column;
}
/* flex na vsech mediich */
.always-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.f-nowrap {
    flex-wrap: nowrap !important;
}
/* flex vlastnosti*/
.f-baseline {
    align-items: baseline !important;
}
.f-bottom {
    align-items: flex-end !important;
}
.f-middle {
    align-items: center !important;
}
.f-start {
    justify-content: flex-start !important;
}
.f-center {
    justify-content: center !important;
}
.f-between {
    justify-content: space-between !important;
}
.f-flex-0 {
    flex: 0;
}
.f-flex-1 {
	flex: 1;
} 
/* 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;
}
@media (min-width: 768px), print {
.fix { /*maximalni sirka pro screen */
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.no-screen {
    display: none !important;
}
.scrolltable {
    width: 100%;
	overflow: unset;
}
.order-first {
    order: -1;
}
.order-1 {
    order: 1;
}
.order-2 {
   order: 2;
}
.order-3 {
    order: 3;
}
.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;
}
.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 {
    margin-left: -1.2%;
    margin-right: -1.6%;
}
.f-4 {
    margin-left: -1.0%;
    margin-right: -1.1%;
}
.f-2 > * {
    width: 100%;
    margin: 0 20px 2.3% 0;
}
.f-3 > * {
    width: 47.5%;
    margin: 0 1.2% 2.3%;
}
.f-4 > * {
    width: 30.8%;
    margin: 0 .91% 2.3%;
}
@media (min-width: 1200px){
.f-2 > * {
width: 47.5%;
margin: 0 1.2% 2.3%;
}
.f-3 > * {
width: 30.8%;
margin: 0 1.2% 2.3%;
}
.f-4 > * {
width: 23.15%;
margin: 0 .91% 2.3%;
}
}
@media (min-width: 1400px){
.f-2-3 > * {
width: 30.8%;
margin: 0 1.2% 2.3%;
}
}
/* 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 (max-width: 767px) {
.no-mobile {
    display: none !important;
}
.flex-tbl, .flex-tbl tr, .flex-tbl th, .flex-tbl td, .flex-tbl tbody {
	display: block;
	width: 100%;
}
}
@media only screen {
.print, .only-print {
    display: none;
}
}
@media print {
.noprint {
    display: none;
}
.print, .only-print {
    display: inherit;
}
}
