:root {
    --container-width: 1460px;
    --blue: #034C85;
    --yellow: #FAD103;
}

body {
    width: 100%;
    margin: 0;
    padding: 190px 0 0;
    background-color: #fff;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    text-align: center;
    overflow-x: hidden;
}

body.noscroll {
    overflow: hidden;
}

.homepage {
    padding: 0;
}

.container-full {
    clear: both;
    position: relative;
    width: 100%;
}

.container {
    clear: both;
    position: relative;
    width: var(--container-width);
    margin: 0 auto;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    color: #fff;
    z-index: 10;
}

.header-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--blue);
    z-index: 26;
}

.homepage .header-content {
    background: transparent;
}
.homepage .fixed .header-content {
    background-color: var(--blue);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    background-color: #042F50;
    font-size: 15px;
}

.fixed .header-top {
    display: none;
}

.header-news {
    margin: 0 auto;
}

.header-news p {
    display: flex;
}

.header-news span {
    color: var(--yellow);
    font-weight: bold;
}

.header-lang {
    position: relative;
    padding-right: 30px;
}

.header-lang-selected {
    padding-right: 25px;
    background: url("/assets/dist/system/front-images/arrow-down-wh.svg") right center no-repeat;
    background-size: 9px 5px;
    cursor: pointer;
}

.header-lang-list {
    display: none;
    position: absolute;
    top: 40px;
    left: -10px;
    min-width: 102px;
    border: 1px solid #fff;
    background-color: #034C85;
    text-align: left;
    z-index: 2;
}
.header-lang-list.active {
    display: block;
}

.header-lang-list p {
    margin: 0;
    padding: 5px 10px;
    color: #fff;
    cursor: pointer;
}

.header-lang-list p:hover {
    background-color: #042F50;
}

.header-language {
    padding-right: 30px;
}

.header-language select {
    border: 1px solid #042F50;
    background: transparent;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

.header-language select option {
    color: #000;
}

.header-nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 0 5vw;
}

.logo {
    width: 315px;
    padding-right: 15px;
}

.logo img {
}

.menu-top {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: right;
}

.menu-top li {
    position: relative;
    display: inline-block;
    padding: 25px 1.5vw 15px 0;
    font-weight: bold;
    text-transform: uppercase;
}

.menu-top li:last-child {
    padding-right: 0;
}

.homepage .menu-top li:last-child, .homepage .header-nav .autocomplete {
    display: none;
}

.menu-top li a {
    text-decoration: none;
}

.menu-top li a:hover {
    text-decoration: underline;
}

.menu-top label {
    font-size: 0;
    text-decoration: none;
}

.menu-top input {
    width: 170px;
    height: 48px;
    padding: 0 40px 0 15px;
    border: 1px solid #6EA0C8;
    background-color: var(--blue);
    color: #fff;
    font-style: italic;
}

.menu-top button {
    position: absolute;
    top: 30px;
    right: 5px;
    width: 36px;
    height: 36px;
    border: 0;
    background: url("../../../dist/system/front-images/icon-magnifier.svg") center center no-repeat;
    color: #fff;
    font-size: 0;
    cursor: pointer;
}

.menu-top ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #6EA0C8;
}
.menu-top ::-moz-placeholder { /* Firefox 19+ */
    color: #6EA0C8;
}
.menu-top :-ms-input-placeholder { /* IE 10+ */
    color: #6EA0C8;
}
.menu-top :-moz-placeholder { /* Firefox 18- */
    color: #6EA0C8;
}

header nav {
    border-top: 1px solid #fff;
}

header nav ul {
    margin: 0;
    padding: 0;
    transition: all 350ms linear;
    list-style-type: none;
}

header nav ul li {
    display: inline-block;
    font-family: "Arial Black", Arial-BoldMT;
    font-size: 18px;
}

header nav ul li a {
    display: block;
    padding: 20px 1.5vw;
    transition: none;
    text-decoration: none;
}

header nav ul li.active a, 
header nav ul li:hover a {
    background-color: var(--blue);
    color: var(--yellow);
    text-decoration: none;
}

header nav ul li.active li a, header nav ul li.active li.active li a,
header nav ul li:hover li a, header nav ul li:hover li:hover li a {
    color: #fff;
}

header nav ul li.active li.active a, header nav ul li.active li.active li.active a,
header nav ul li:hover li:hover a, header nav ul li:hover li:hover li:hover a {
    color: var(--yellow);
}

header nav ul div {
    display: none;
    position: absolute;
    top: 184px;
    top: 154px;
    left: 0;
    right: 0;
    padding-bottom: 40px;
    background-color: var(--blue);
    z-index: 2;
}

header nav ul li.active div {
    display: block;
}

header.fixed nav ul div {
    top: 140px;
}

.homepage header nav ul div, .homepage header.fixed nav ul div {
    top: 124px;
}

header nav ul ul {
    display: flex;
    align-content: flex-start;
    flex-wrap: wrap;
    width: var(--container-width);
    margin: auto;
    padding: 35px 0 10px;
    text-align: left;
}

header nav ul ul li {
    flex: 0 0 16.6666%;
    padding: 20px 20px 40px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 90%;
}

header nav ul ul li a {
    min-height: 55px;
    padding: 0;
    border-bottom: 1px solid #fff;
}

header nav ul li li li:nth-child(n+6) {
    display: none;
}

header nav ul li.menu-show-wrapper,
header nav ul li .active li li:nth-child(n+6),
header nav ul li .active .hidden {
    display: block;
}

header nav ul ul ul {
    display: block;
    /*display: none;*/
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    padding: 10px 0 0;
}

header nav ul ul ul:before, header nav ul ul ul:after {
    display: none;
}

header nav ul ul ul li {
    display: block;
    padding: 5px 0;
    font-size: 14px;
}

header nav ul ul ul li a {
    min-height: 0;
    padding: 0;
    border-bottom: 0;
}

.menu-close {
    display: none;
    position: absolute;
    top: 170px;
    right: 5vw;
    width: 18px;
    cursor: pointer;
    z-index: 3;
}
header.fixed .menu-close {
    top: 170px;
}
header li.active .menu-close {
    display: block;
}

.menu-show-wrapper {
    width: var(--container-width);
    margin: auto;
    text-align: right;
}

.menu-show-wrapper a {
    display: inline-block;
    padding: 8px 35px;
    border: 1px solid #fff;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}
header nav ul li:hover .menu-show-wrapper a {
    color: #fff;
}

header nav ul li:hover .menu-show-wrapper a:hover {
    border: 1px solid var(--yellow);
    color: var(--yellow);
}

.menu-show-all span + span {
    display: none;
}

div.active .menu-show-all span {
    display: none;
}

div.active .menu-show-all span + span {
    display: block;
}

.menu-responsive {
    display: none;
    position: fixed;
    top: 75px;
    top: 65px;
    right: 3vw;
    z-index: 49;
}

header.fixed .menu-responsive {
    top: 35px;
}

.menu-responsive span {
    position: relative;
    display: block;
    width: 23px;
    height: 18px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    font-size: 0;
}

.menu-responsive span:before {
    position: absolute;
    top: 6px;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    background-color: #fff;
}

.header-search {
    position: absolute;
    bottom: 55px;
    left: 50%;
    display: inline-block;
    padding: 5px;
    background: rgba(0,0,0,.7);
    font-size: 14px;
    transform: translateX(-50%);
    z-index: 3;
}

.header-search p {
    margin: 0;
}

.header-search label {
    font-size: 0;
}

.header-search input {
    width: 550px;
    height: 50px;
    padding: 0 12px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-style: italic;
}

.header-search button {
    position: absolute;
    top: 12px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: 0;
    background: url("../../../dist/system/front-images/icon-magnifier.svg") center center no-repeat;
    font-size: 0;
    cursor: pointer;
}

.header-search-tags {
    display: flex;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 0;
}

.header-search-tags a {
    display: block;
    max-height: 46px;
    margin-left: 10px;
    padding: 5px 15px;
    border: 1px solid #fff;
    text-decoration: none;
    overflow: hidden;
}

.header-search-tags a:hover {
    background: rgba(255,255,255,.2);
    text-decoration: none;
}

.loader_fulltext {
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    width: 60px;
    margin: auto;
    z-index: 38;
}

.autocomplete {
    position: absolute;
    top: 54px;
    left: 50%;
    padding: 15px;
    border: 1px solid #A2A6BB33;
    background-color: #fff;
    box-shadow: 15px 24px 62px #A2A6BB26;
    transform: translateX(-50%);
    z-index: 3;
}
.header-nav .autocomplete {
    top: 73px;
    left: auto;
    right: 5vw;
    transform: none;
}
.header-nav .mobile-search .autocomplete {
    top: 25px;
    left: 0;
    right: 0;
    width: 720px;
    margin: auto;
}

.autocomplete p {
    margin: 0;
}

.autocomplete-results span {
    display: block;
    color: #70758f;
}

.autocomplete a {
    color: var(--blue);
}

.autocomplete-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 1440px;
    font-size: 13px;
}

.autocomplete-col {
    width: 240px;
    padding: 15px 25px;
    text-align: left;
}

.autocomplete-heading {
    color: #70758f;
}

.autocomplete hr {
    height: 1px;
    margin: 10px 0;
    border: 0;
    background: #A2A6BB;
}

.autocomplete-bottom {
    padding: 15px 0;
    color: #000;
    font-size: 15px;
}

.autocomplete-results img {
    position: relative;
    top: 2px;
    max-width: 15px;
    margin-right: 2px;
}

.header-media {
    position: relative;
    color: #fff;
}

.header-media h1 {
    position: absolute;
    top: calc(50% - 50px);
    left: 0;
    right: 0;
    margin: auto;
    color: #fff;
    z-index: 2;
}

.media-file {
    width: 100vw;
    background: url("../../../dist/system/front-images/nahled.jpg") center center no-repeat;
    background-size: cover;
    font-size: 0;
    overflow: hidden;
}

.media-file .vegas
{
    height: 80vh;
}

.vegas-content-scrollable {
    background: rgba(0,0,0,0.4);
}

.media-file * {
    width: 100vw;
}

.media-author {
    position: absolute;
    bottom: 20px;
    left: 3vw;
    font-size: 13px;
    transform: rotate(270deg);
    transform-origin: 0 0;
    z-index: 2;
}

.header-info {
    position: absolute;
    bottom: 25px;
    right: 3vw;
    display: flex;
    align-items: flex-end;
    font-size: 13px;
    z-index: 2;
}

.social-media {
    padding-left: 25px;
}

.social-media a {
    display: block;
    margin-top: 15px;
}

.social-media img {
    width: auto;
    max-width: 25px;
    max-height: 30px;
}

.header-scroll {
    position: absolute;
    bottom: 25px;
    left: 50%;
    display: inline-block;
    font-size: 26px;
    font-weight: bold;
    transform: translateX(-50%);
    text-decoration: none;
    z-index: 2;
}

.header-scroll img {
    height: 20px;
}

.header-scroll img:hover {
    transform: scale(1.05);
}

.menu-user-mobile {
    display: none;
    position: absolute;
    top: 40px;
    right: 5vw;
    color: var(--blue);
    font-size: 12px;
}

.menu-user-mobile a {
    text-decoration: none;
}

.menu-user-mobile span + span {
    display: none;
}

.active .menu-user-mobile span {
    display: none;
}

.active .menu-user-mobile span + span {
    display: block;
}

div .slick-slide {
    width: 25%;
    margin: 0 30px;
    padding: 0 0 50px;
    font-weight: bold;
}

div .slick-slide a {
    display: block;
    padding: 50px 15px;
    box-shadow: 10px 20px 30px #D6DCE1;
    text-decoration: none;
}

div .slick-slide a:hover {
    transform: scale(1.05);
    box-shadow: 10px 20px 30px #C6CED5;
}

div .slick-slide img {
    height: 50px;
    margin: 0 auto 15px;
}

div .slick-slide span {
    position: relative;
    display: block;
    z-index: 3;
}

#mobile-sidebar {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -100vw;
    width: 100vw;
    padding: 0;
    background-color: #fff;
    transition: all 350ms linear;
    z-index: 999;
    overflow-y: scroll;
}

#mobile-sidebar.active {
    left: 0;
}

#mobile-sidebar > div {
    background-color: #fff;
    overflow: auto;
}

#mobile-sidebar .logo {
    padding-left: 10vw;
    text-align: left;
}

.mobile-sidebar-close {
    position: absolute;
    top: 20px;
    right: 10vw;
    display: block;
    width: 26px;
    height: 26px;
    color: #000;
    font-size: 0;
    text-decoration: none;
    z-index: 2;
}

.mobile-sidebar-close:after {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--blue);
    font-size: 40px;
    content: "\00d7";
}

#mobile-sidebar div .slick-slider {
    margin: 0;
    padding-bottom: 30px;
}

.mobile-search {
    position: relative;
    z-index: 4;
}

.mobile-search > p {
    position: absolute;
    top: -23px;
    left: 0;
    right: 0;
    margin: 0;
}

.mobile-search label {
    font-size: 0;
}

.mobile-search input {
    width: 60vw;
    height: 48px;
    padding: 0 40px 0 15px;
    border: 0;
    background-color: #fff;
    box-shadow: 5px 5px 35px #dde1e4;
}

.mobile-search button {
    position: absolute;
    top: 6px;
    right: 19.5vw;
    width: 36px;
    height: 36px;
    border: 0;
    background: url("../../../dist/system/front-images/icon-magnifier-blue.svg") center center no-repeat;
    font-size: 0;
}

.mobile-menu-slide {
    position: relative;
    width: 100vw;
    /*height: 300px;*/ /* nejaka vyska byt musi, vypocet pres JS */
    padding-bottom: 50px;
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: 2;
}

.mobile-menu-slide > div {
    position: absolute;
    width: 100vw;
    height: 100%;
    background-color: #fff;
    z-index: 2;
}

.control-elements {
    padding: 30px 10vw 0;
    box-shadow: inset 0 70px 25px -25px #E6E8EE;
    overflow: auto;
}

.control-elements-heading {
    float: left;
    width: calc(100% - 85px);
    padding-top: 10px;
    font-size: 20px;
    text-align: left;
}

.back-level {
    float: right;
    padding-top: 14px;
    font-weight: bold;
}

.back-level img {
    position: relative;
    top: 2px;
    margin-right: 15px;
    filter: grayscale(1) brightness(0);
    transition: all 350ms linear;
}

.back-level:hover img {
    margin-right: 20px;
    color: var(--yellow);
    filter: grayscale(0);
}

.back-level {
    display: none;
}

.mobile-control[data-id]:not([data-id='null']) .back-level
{
    display: block;
}

.menu_parent{
    display:none;
}

#mobile-sidebar nav {
    padding: 10px 10vw 0;
    text-align: left;
}

#mobile-sidebar nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#mobile-sidebar nav ul li {
    position: relative;
    color: #70758f;
    font-size: 18px;
    font-weight: bold;
}

#mobile-sidebar nav ul li + li {
    border-top: 1px solid #E6E9F5;
}

#mobile-sidebar nav ul li span {
    position: absolute;
    right: -5px;
    top: 15px;
    display: block;
    width: 25px;
    height: 25px;
    background: url("../../../dist/system/front-images/arrow-right.svg") center center no-repeat;
    background-size: 7px 14px;
    content: "";
    z-index: 2;
}

#mobile-sidebar nav ul li a {
    display: block;
    padding: 17px 15px 17px 0;
    text-decoration: none;
}

#mobile-sidebar nav ul li a:hover {
    color: var(--blue);
}

#mobile-sidebar nav img {
    position: relative;
    top: 1px;
    width: 20px;
    margin-right: 15px;
}

#mobile-sidebar nav ul ul {
    display: none;
}

#mobile-sidebar .social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0 0;
}


#mobile-sidebar .mobile-control[data-id]:not([data-id='null']) .social-media {
    display: none;
}

#mobile-sidebar .social-media a {
    margin: 0 25px;
}

#mobile-sidebar .social-media img {
    max-width: none;
    max-height: none;
}

.site-news {
    padding-top: 5px;
    padding-bottom: 30px;
}

.news-all-mobile {
    display: none;
    position: absolute;
    top: -7px;
    right: 5vw;
    color: var(--blue);
    font-size: 12px;
}

.news-all-mobile a {
    text-decoration: none;
}

.news-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 15px;
    text-align: left;
}

.news-wrapper > div {
}

.news-wrapper > div:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.news-wrapper h3 {
    height: 58px;
    margin: 7px 0;
    font-size: 16px;
    overflow: hidden;
}

.news-wrapper p {
    margin: 7px 0;
}

.news-wrapper a {
    text-decoration: none;
}

.news-wrapper a:hover {
    text-decoration: underline;
}

.news-wrapper > div:first-child h3 {
    height: 60px;
    font-size: 24px;
}

.news-content {
    display: none;
    height: 110px;
    overflow: hidden;
}
.news-wrapper > div:first-child .news-content {
    display: block;
}

.news-img {
    height: 160px;
    overflow: hidden;
}
.news-wrapper > div:first-child .news-img {
    height: 318px;
}

.news-img img {
    min-width: 100%;
}

.news-info {
    position: relative;
    top: -8px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.site-events {
    padding-top: 20px;
    padding-bottom: 30px;
}

.events-all-mobile {
    display: none;
    position: absolute;
    top: 37px;
    right: 5vw;
    color: var(--blue);
    font-size: 12px;
}

.events-all-mobile a {
    text-decoration: none;
}

.events-tabs {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 4px solid var(--blue);
    list-style-type: none;
}

.events-tabs li {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #fff;
    transition: all 350ms linear;
    cursor: pointer;
}

.events-tabs li.active, .events-tabs li:hover {
    background-color: var(--blue);
    color: #fff;
    font-weight: bold;
}

.events-wrapper {
    text-align: left;
}

.events-wrapper > div {
    display: none;
}

.events-wrapper > div.active {
    display: block;
}

.wrapper_posuv {
    display: flex;
    padding-bottom: 25px;
}

.events-type {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 20px 0 0;
    padding: 0;
    text-align: center;
    list-style-type: none;
}

.events-type li, .events-type .slick-slide {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    margin-left: 2vw;
    padding: 0 10px;
    border: 1px solid #000;
    background-color: #fff;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    transition: all 350ms linear;
    cursor: pointer;
}
.events-type li:first-child, .events-type .slick-slide:first-child {
    margin-left: 0;
}

.events-type li.active, .events-type li:hover,
.events-type .slick-slide.active, .events-type .slick-slide:hover {
    border: 1px solid var(--blue);
    background-color: var(--blue);
    color: #fff;
}

.events_type_left {
    width: 180px;
    padding-right: 30px;
}

.events_type_right {
    width: calc(100% - 180px);
    padding: 0 30px;
}

.events_type_right .events-type {
    padding-left: 40px;
}

.events_type_right .events-type span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.events_type_right .slick-track {
    padding-left: 5px;
}

.news__arrow {
    position: relative;
    font-size: 20px;
    line-height: 2;
    cursor: pointer;
}
.news__arrow_dir_left {
    left: -40px;
}

.events-content {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.events-content > div {
    width: 49%;
}

.events-content > .link {
    display: none;
    text-align: center;
}

.events-list-data > div {
    display: none;
}

.events-list-data > div.active {
    display: block;
}

.events-list-data .link {
    text-align: center;
}

.events-list {
    list-style-type: none;
}

.events-list li {
    margin: 20px 0;
    cursor: pointer;
}

.events-list li:hover {
    text-decoration: underline;
}

.events-list li.active {
    color: #034C85;
    text-decoration: underline;
}

.events-img {
    max-height: 250px;
    overflow: hidden;
}

.events-img img {
    width: 100%;
}

.events-img + h3 {
    font-size: 16px;
}

.events-info {
    display: flex;
    flex-wrap: wrap;
}

.events-info > p {
    flex: 0 0 50%;
}

.card .events-info > p + p {
    text-align: right;
}

.events-info a {
    color: var(--blue);
}

.events-info img {
    position: relative;
    top: 4px;
    margin-right: 10px;
}

.perex p {
    text-align: justify !important;
}

.site-townhall {
    padding-top: 100px;
    padding-bottom: 80px;
    background-color: #EEF4FE;
}

.site-townhall .container {
    background-color: #fff;
    box-shadow: 20px 30px 50px #D6DCE1;
}

.site-townhall h2 {
    color: #000;
}

.site-townhall h3 {
    color: var(--blue);
    font-family: "Arial Black", Arial-BoldMT;
    font-weight: normal;
}

.townhall-mayor {
    position: absolute;
    bottom: -19px;
    right: 0;
    width: 36%;
    z-index: 2;
}

.townhall-motto {
    position: absolute;
    top: 30px;
    right: 25%;
    width: 270px;
    text-align: right;
    z-index: 2;
}

.site-townhall .container > div {
    width: 65%;
    min-height: 380px;
    padding: 10px 0 40px 40px;
    text-align: left;
}

.site-townhall .link {
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 0;
    font-size: 13px;
    text-align: center;
}

.site-webs {
    padding-top: 20px;
    padding-bottom: 60px;
}

.webs {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 25px;
    padding-top: 20px;
}

.webs p {
    position: relative;
    margin: 0;
}

.webs span {
    position: absolute;
    top: 0;
    left: 0;
}

.webs-logo img {
    max-width: 70%;
}

[class^="webs-element"] {
    position: relative;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    overflow: hidden;
}

[class^="webs-element"] a {
    display: block;
    width: 100%;
    height: 100%;
}

[class^="webs-element"] a:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    content: "";
    transition: all 350ms linear;
    z-index: 2;
    opacity: 0;
}
[class^="webs-element"] a:hover:before {
    opacity: 1;
}

[class^="webs-element"] a > div {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 15px;
    z-index: 2;
}
.webs-element-9 a > div, .webs-element-10 a > div {
    align-items: center;
    flex-direction: row;
}

[class^="webs-element"] h3 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
}

.webs-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.webs-img img {
    max-width: none;
    min-width: 100%;
    min-height: 100%;
}

.webs-element-1 {
    grid-column: 1/8;
    grid-row: 1/4;
}

.webs-element-2 {
    grid-column: 1/5;
    grid-row: 4/8;
}

.webs-element-3 {
    grid-column: 1/5;
    grid-row: 8/12;
}

.webs-element-4 {
    grid-column: 5/8;
    grid-row: 4/12;
}

.webs-element-5 {
    grid-column: 8/13;
    grid-row: 1/8;
}

.webs-element-6 {
    grid-column: 8/13;
    grid-row: 8/12;
}

.webs-element-7 {
    grid-column: 13/18;
    grid-row: 1/4;
}

.webs-element-8 {
    grid-column: 13/18;
    grid-row: 4/12;
}

.webs-element-9 {
    grid-column: 1/11;
    grid-row: 12/16;
}

.webs-element-10 {
    grid-column: 11/18;
    grid-row: 12/16;
}

.site-reports {
    padding-top: 20px;
    text-align: left;
    overflow: hidden;
}
.homepage .site-reports {
    padding-top: 40px;
}

.reports-video {
    float: left;
    width: calc(100% - 710px);
    overflow: auto;
}

.reports-video > div {
    float: left;
    width: 48%;
    height: 265px;
    padding-bottom: 30px;
}

.reports-video > div:nth-child(odd) {
    float: right;
}

.reports-video > div iframe {
    width: 100%;
    height: 100%;
}

.reports-fb {
    float: left;
    width: 440px;
    padding-right: 50px;
    padding-left: 50px;
}

.reports-ig {
    float: left;
    width: 270px;
}

.reports-ig iframe {
    width: 100% !important;
    min-width: 100% !important;
    height: 500px !important;
}

.reports-app {
    clear: both;
    padding: 20px 0 40px;
    text-align: center;
}

.reports-app .h4,
.reports-app a {
    color: var(--blue);
    font-weight: bold;
}

.reports-app a + a {
    margin-left: 10px;
}

.reports-app img {
    height: 60px;
}

.reports-app img:hover {
}

.site-bottom {
    padding-top: 1px;
    padding-bottom: 15px;
    border-top: 1px solid #DAE3EB;
    font-size: 11px;
    font-weight: bold;
    text-align: left;
}

.site-bottom > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.site-bottom > div > * {
    flex-grow: 1;
    padding-left: 3vw;
}

.site-bottom > div > *:first-child {
    padding-left: 0;
}

.site-bottom ul {
    list-style-type: none;
}

.site-bottom a {
    text-decoration: none;
}

.site-bottom a:hover {
    text-decoration: underline;
}

.bottom-mobile {
    display: none;
}

.site-slider {
    padding-top: 20px;
    padding-bottom: 20px;
}

.site-news-more {
    padding-bottom: 40px;
}

.site-news-more h2 {
    color: #000;
}

.news-more {
    display: flex;
    justify-content: space-between;
}

.news-more > div {
    width: 19%;
}

.news-more h3 {
    height: 58px;
    margin: -10px 0 5px;
    font-size: 16px;
    text-align: left;
    overflow: hidden;
}

.news-more a {
    text-decoration: none;
}

.site-content {
    min-height: 450px;
    padding-top: 5px;
    padding-bottom: 55px;
    text-align: left;
}

.site-content-left {
    float: left;
    width: 300px;
    margin-top: 15px;
    padding: 15px 25px;
    background-color: #fff;
    box-shadow: -15px 24px 62px #363E9326;
}

.site-content-left > p {
    padding-bottom: 5px;
    font-size: 20px;
    font-weight: bold;
}

.main-left-menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.main-left-menu ul {
    display: none;
    margin: 0;
    padding: 10px 0 0;
    list-style-type: none;
}

.main-left-menu .active ul {
    display: block;
}

.main-left-menu li {
    position: relative;
    padding: 8px 20px 8px 0;
    font-size: 14px;
    font-weight: bold;
}

.main-left-menu li:first-letter {
    text-transform: capitalize;
}

.main-left-menu li a {
    color: #6D738F;
    text-decoration: none;
}

.main-left-menu li a:hover,
.main-left-menu li.active > a {
    color: #000;
}

.main-left-menu li span {
    position: absolute;
    top: 10px;
    right: 3px;
    width: 7px;
    height: 14px;
    background: url("../../../dist/system/front-images/arrow-right-2.svg") center center no-repeat;
    background-size: 7px 14px;
    cursor: pointer;
}

.main-left-menu li.active span {
    top: 14px;
    right: 0;
    width: 14px;
    height: 7px;
    background: url("../../../dist/system/front-images/arrow-down.svg") center center no-repeat;
    background-size: 14px 7px;
}

.main-left-menu li li {
    padding-left: 25px;
    font-size: 13px;
    border-left: 1px solid #e5eaed;
    font-weight: normal;
}

.main-left-menu li li.active > a {
    font-weight: bold;
}

.site-content-right {
    float: right;
    width: calc(100% - 340px);
}

.site-content-right ul {
    padding: 0 0 0 15px;
}

.site-content table {
    width: 100%;
    border-collapse: collapse;
    empty-cells: show;
}

.site-content table caption {
    padding: 25px 0 15px;
    font-size: 20px;
    font-weight: bold;
}

.site-content table th, .site-content table td {
    padding: 10px 15px 10px 0;
}

.site-content table th {
    border-bottom: 1px solid #BDC1D3;
}

.site-content table tr + tr td {
    border-top: 1px solid #DCDEE8;
}

.site-content table.tabulka-2 th {
    border-bottom: 0;
}

.tabulka-2 tr + tr th {
    border-top: 1px solid #DCDEE8;
}

.news-filter {
    display: flex;
    padding: 10px 0;
}

.news-filter label {
    margin-right: 5px;
}

.news-filter select, .news-filter input {
    margin-right: 30px;
    padding: 10px 20px;
    border: 1px solid #A2A6BB;
}

.news-filter button {
    padding: 10px 30px;
    border: 1px solid #000;
    background: #fff;
    transition: all 350ms linear;
    cursor: pointer;
}

.news-filter button:hover {
    background: #000;
    color: #fff;
}

.news-filter label span {
    display: inline-block;
    position: relative;
    top: 3px;
    width: 16px;
    height: 16px;
    margin-right: 1px;
}

#m {
    height: 650px;
    margin: 30px 0;
    border: 1px solid #b4b4b4;
}
.container.site-content #mapy_form #m, #mapy_form #m > div {
    clear: both;
    width: 100% !important;
}
#mapy_form  .cluster img {
    display: none;
}
#mapy_form .system_cluster{
    display: block;
    width: 40px;
    height: 40px;
    padding-top: 7px;
    border: 3px solid #fff;
    border-radius: 20px;
    background-color: #bb0909;
    color: #fff;
}
#mapy_form .system_cluster[data-tooltip] {
    position: relative;
    z-index: 2;
    cursor: pointer;
}
#mapy_form .system_cluster[data-tooltip]:before,
#mapy_form .system_cluster[data-tooltip]:after {
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    pointer-events: none;
}
#mapy_form .system_cluster[data-tooltip]:before {
    position: absolute;
    bottom: 112%;
    left: 50%;
    margin-bottom: 0;
    margin-left: -80px;
    padding: 7px;
    width: 185px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #000;
    background-color: hsla(0, 0%, 20%, 0.9);
    color: #fff;
    content: attr(data-tooltip);
    text-align: center;
    font-size: 13px;
    line-height: 1.2;
}
#mapy_form .system_cluster[data-tooltip]:after {
    position: absolute;
    bottom: 103%;
    left: 50%;
    margin-left: -4px;
    width: 0;
    border-top: 5px solid hsla(0, 0%, 20%, 0.9);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    font-size: 0;
    line-height: 0;
}
#mapy_form .system_cluster[data-tooltip]:hover:before,
#mapy_form .system_cluster[data-tooltip]:hover:after {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}
#mapy_form .cluster > div{
    border: 10px;
    background: transparent;
}
.mapa_reset:after{
    content:'';
}
#mapy_form div.card {
}
.img_budova {
    max-height: 70px;
}
#byty_data {
    max-width: 78vw;
}
#byty_data .actual_page_label {
    display: none;
}
.byty_modal_content .img_my {
    max-height: 130px;
}
.byty_modal_content table {
    width: 100%;
    margin-top: 40px;
    border-collapse: collapse;
    empty-cells: show;
}
.byty_modal_content table th {
    padding: 10px 15px;
    background-color: #000;
    color: #fff;
}
.byty_modal_content table td {
    padding: 10px 15px;
    border-top: 1px solid #676767;
}
.byty_modal_content table img {
    max-width: 300px;
}
.byty_modal_content .link a {
    padding: 5px 10px;
}
.name_popis_byt {
    width: 320px;
}
.marker_pin {
    width: 30px;
    height: 30px;
    border: 1px solid black;
    border-radius: 50% 50% 0;
    transform: rotate(45deg);
}

#pagination_page {
    padding: 20px 0 5px;
    text-align: center;
}
#pagination_page a {
    display: inline-block;
    margin: 5px 3px;
    padding: 3px 8px;
    border: 1px solid #000;
    text-decoration: none;
}
#pagination_page a.current {
    background-color: #000;
    color: #fff;
}

#form_search_bydleni {
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #555;
}
#form_search_bydleni .news-filter label, #mapy_form .news-filter label {
    margin-right: 20px;
    cursor: pointer;
}
#form_search_bydleni .news-filter input[type=checkbox], #mapy_form .news-filter input[type=checkbox] {
    margin-right: 5px;
}
.bydleni_wrapper .departments {
    margin-top: 0;
}
.bydleni_wrapper .departments > div + div {
    flex: 1;
}
.bydleni_wrapper .departments .flex {
    align-items: center;
    justify-content: space-between;
}
.bydleni_wrapper .link {
    margin-top: 0;
    text-align: right;
}
.bydleni_wrapper .flex h3 span {
    display: block;
    margin: -1px 0 -10px;
    font-size: 16px;
    font-weight: normal;
}
.system_byt {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px;
}
.system_byt > div {
    max-height: 58px;
    overflow: hidden;
}

.sttiky_bydleni {
    float: right;
}

.press-news, .press-news:hover {
    text-decoration: none;
}

.press-news .card img {
    width: 100%;
    height: 270px;
    overflow: hidden;
    object-fit: cover;
}

.tenders {
    font-size: 13px;
}

.tenders-section {
    padding: 1px 20px 10px;
    border: 1px solid #cbcbcb;
}
.tenders-section + .tenders-section {
    border-top: 0;
}

.tenders-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.tenders-header p:first-child {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.tenders-header span {
    margin-left: 25px;
}

.tender-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tender-content p {
    margin: 0;
}

.tender-content p:first-child {
    flex: 0 0 35px;
    align-self: flex-start;
    padding-top: 10px;
}

.tender-content p:first-child img {
    width: 15px;
}

.tender-content p:first-child + p {
    flex: 1;
}

.tender-content p:first-child + p span {
    display: block;
    padding-top: 10px;
}

.tender-content p:first-child + p + p {
    flex: 0 0 30%;
}

.tender-content p:last-child {
    flex: 0 0 230px;
    text-align: right;
}

.article-button-back {
    margin: 0;
    padding-top: 15px;
    font-size: 13px;
    font-weight: bold;
}

.article-button-back a, .article-button-back a:hover {
    text-decoration: none;
}

.article-button-back a img {
    position: relative;
    top: 2px;
    left: 0;
    margin-right: 5px;
    transition: all 350ms linear;
}

.article-button-back a:hover img {
    left: -10px;
}

.article-header {
    display: flex;
    justify-content: space-between;
}

.article-header > div {
    width: 57%;
}

.article-header > p {
    width: 37%;
}

.article-header > p img {
    width: 100%;
}

.article-header .events-info > p {
    margin: 15px 0;
}

.article-perex {
    font-size: 20px;
    line-height: 1.5;
}

.article-perex p {
    text-align: justify !important;
}

.article-content ul {
    list-style-position: inside;
}

.members-list {
    display: flex;
    flex-wrap: wrap;
}

.members-list > div {
    flex-basis: 50%;
    display: flex;
    padding: 15px 15px 10px 0;
    color: #70758f;
}

.members-list > div > p {
    flex: 0 0 150px;
}

.members-list > div > div {
    padding: 0 0 0 30px;
    line-height: 1.4;
}

.members-list > div h3 {
    margin-top: 15px;
    color: #000;
}

.members-list > div a {
    color: var(--blue);
}

.departments {
    display: flex;
    margin-top: -15px;
}

.departments > div:first-child {
    flex: 0 0 350px;
}

.departments > div + div {
    padding-left: 40px;
}

.survey-box {
    margin: 20px 0;
    padding: 1px 35px 15px;
    background-color: #fff;
    box-shadow: 5px 5px 35px #D6DCE1;
}

.survey-box h3 {
    color: var(--blue);
    font-size: 26px;
    text-align: center;
}

.survey > div {
    display: flex;
    align-items: flex-end;
    padding: 10px 0;
}

.survey > div p {
    margin: 0;
}

.survey > div > p {
    width: 55px;
    color: var(--blue);
    font-size: 20px;
    font-weight: bold;
}

.survey > div div {
    flex: 1;
    color: #70758f;
}

.survey > div div a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

.survey > div div a:hover {
    text-decoration: underline;
}

.survey.frozen > div div a {
    color: #70758f;
    pointer-events: none;
}

.survey-frozen-message {
    color: #70758f;
    font-style: italic;
    text-align: center;
}

.survey-total {
    color: #70758f;
    text-align: center;
}

.survey-length {
    position: relative;
}

.survey-length:before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #70758F;
    z-index: -1;
}

.survey-length span {
    display: inline-block;
    height: 3px;
    background-color: var(--blue);
}

.tiles-list, .multiple-wrapper-polozky-menu {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1%;
    padding: 10px 0 20px;
}

.tiles-list p, .multiple-wrapper-polozky-menu p {
    width: 23%;
    margin: 1%;
    font-weight: bold;
}

.tiles-list a, .multiple-wrapper-polozky-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    padding: 0 10px;
    border: 1px solid #A2A6BB;
    text-align: center;
    text-decoration: none;
}

.tiles-list a:first-letter, .multiple-wrapper-polozky-menu a:first-letter {
    text-transform: capitalize;
}

.tiles-list a:hover, .multiple-wrapper-polozky-menu a:hover {
    background-color: var(--blue);
    color: #fff;
    text-decoration: none;
}

.search-full-tabs div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 25px 0 0;
}

.search-full-tabs p {
    width: 15.5%;
}

.search-full-tabs a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    padding: 0 10px;
    border: 1px solid #A2A6BB;
    text-align: center;
    text-decoration: none;
}

.search-full-tabs a:hover, .search-full-tabs .active a {
    background-color: var(--blue);
    color: #fff;
    text-decoration: none;
}

.full-search-results img {
    position: relative;
    top: 2px;
    max-width: 15px;
    margin-right: 5px;
}

#map_hriste {
    width: 100%;
    height: 550px;
    margin: 30px 0;
}

#cislo_hriste, #playground_category; {
    padding: 10px;
    border: 1px solid #000;
    background-color: #fff;
}

#detskahristemodal {
    max-width: none;
    width: 950px;
    text-align: center;
}

.monitoring_hladiny_wrapper input {
    margin: 0 5px;
    padding: 10px 20px;
    border: 1px solid #000;
}
.monitoring_hladiny_wrapper button {
    margin: 0 0 0 10px;
    padding: 10px 20px;
    border: 1px solid #000;
    background-color: #fff;
    font-weight: bold;
    transition: all 350ms linear;
    cursor: pointer;
}
.monitoring_hladiny_wrapper button:hover {
    background-color: #000;
    color: #fff;
}
.monitoring_hladiny_wrapper table {
    width: 87px;
    background-color: #034c85c7;
}
.legendLabel{
    color: white;
}
.demo-placeholder {
    height: 500px;
}

#poradnik_byty label {
    display: inline-block;
    width: 140px;
}

#poradnik_byty input[type=text] {
    margin-right: 20px;
    padding: 10px 20px;
}

#poradnik_byty input[type=submit] {
    height: 50px;
    padding: 0 25px;
    border: 1px solid #A2A6BB;
    background-color: #fff;
    font-weight: bold;
    transition: all 350ms linear;
    cursor: pointer;
}

#poradnik_byty input[type=submit]:hover {
    background-color: #A2A6BB;
    color: #fff;
}

.infonumber_byty {
    padding: 4px;
    background-color: #fad103;
    color: #034c85;
    font-weight: 600;
}

.founded_rows {
    padding-top: 1px;
    color: #034c85;
    font-size: 20px;
}

#subscriptionModal {
    padding-bottom: 10px;
    text-align: center;
}

.subscription-header {
    font-family: "Arial Black", Arial-BoldMT;
    font-size: 18px;
    text-transform: uppercase;
}

#subscriptionModal form > label:first-child {
    font-size: 0;
}

#subscriptionModal form > label:first-child + input {
    height: 50px;
    width: 270px;
    margin: 10px 0 25px;
    padding: 0 15px;
    border: 2px solid #EEF4FE;
}

#subscriptionModal button {
    display: block;
    height: 50px;
    width: 200px;
    margin: 30px auto;
    border: 1px solid #000;
    background-color: #fff;
    font-weight: bold;
    transition: all 350ms linear;
    cursor: pointer;
}
#subscriptionModal button:hover {
    background-color: #000;
    color: #fff;
}

.container-not-found {
    padding: 100px 0;
}

.container-not-found h1 {
    font-weight: normal;
}

.zlin-page-grid-5x3 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin: 35px 0 65px;
}

.zlin-page-grid-5x3 > div {
    grid-area: 1 / 1 / 2 / 4;
    padding: 0 25px;
    /*border: 1px solid var(--yellow);*/
    background-color: var(--yellow);
}

.zlin-page-grid-5x3 > div + * {
    grid-area: 2 / 1 / 3 / 2;
}
.zlin-page-grid-5x3 > div + * + * {
    grid-area: 2 / 2 / 3 / 3;
}
.zlin-page-grid-5x3 > div + * + * + * {
    grid-area: 2 / 3 / 3 / 4;
}
.zlin-page-grid-5x3 > div + * + * + * + * {
    grid-area: 3 / 1 / 4 / 2;
}
.zlin-page-grid-5x3 > div + * + * + * + * + * {
    grid-area: 3 / 2 / 4 / 3;
}
.zlin-page-grid-5x3 > div + * + * + * + * + * + * {
    grid-area: 3 / 3 / 4 / 4;
}

.zlin-page-grid-5x3 > div:last-child {
    grid-area: 1 / 4 / 4 / 6;
    padding: 0;
    font-size: 0;
}
.zlin-page-grid-5x3 > div:last-child p {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
}
.zlin-page-grid-5x3 > div:last-child p img {
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zlin-noted-native {
    min-height: 80px;
}

.lb-nav a.lb-prev {
    position: fixed;
    top: 0;
    left: 25px;
}

.lb-nav a.lb-next {
    position: fixed;
    top: 0;
    right: 25px;
}

.thirds-boxes-with-text {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.thirds-boxes-with-text > * {
    position: relative;
    width: 31%;
}

.thirds-boxes-with-text > * img {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.thirds-boxes-with-text > * > * + * {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 28px;
    text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
    z-index: 2;
}

.thirds-boxes-with-text > * > * + * span {
    display: block;
    font-size: 40px;
}

.breadcrumbs-wrapper{
    padding-top: 30px;
    text-align: left;
}

.breadcrumbs {
    font-size: 13px;
}

.breadcrumbs a {
    display: inline-block;
    margin-left: 5px;
    padding-left: 8px;
    border-left: 1px solid #A2A6BB;
}

.breadcrumbs a:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}

.link-back a {
    display: inline-block;
    padding-left: 40px;
    background: url("../../../dist/system/front-images/arrow-back.png") 0 center no-repeat;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
}

.two-fifths {
    display: flex;
    justify-content: space-between;
}

.two-fifths > * {
    width: 39%;
}

.two-fifths > * + * {
    width: 58%;
}

.flex {
    display: flex;
}

.halves {
    display: flex;
    justify-content: space-between;
}

.halves > * {
    width: 48%;
}

.thirds {
    display: flex;
    justify-content: space-between;
}

.thirds > * {
    width: 31%;
}

.pagination {
    margin: 0;
    padding: 40px 0;
    list-style-type: none;
    text-align: center;
}

.pagination li {
    display: inline;
}

.pagination a {
    margin: 0 10px 5px;
    color: #797979;
    font-size: 16px;
    text-decoration: none;
}

.pagination a.active, .pagination a:hover {
    color: #000;
    text-decoration: none;
}

.title {
    font-size: 40px;
    line-height: 1.4em;
}
.title span {
    display: block;
}

.title2 {
    font-size: 20px;
    font-weight: bold;
}

.link {
    padding: 10px 0;
}
.link a, .link button {
    display: inline-block;
    padding: 10px 30px;
    background-color: #fff;
    border: 1px solid #000;
    font-weight: bold;
    transition: all 350ms linear;
    text-decoration: none;
    cursor: pointer;
}
.link a:hover, .link button:hover {
    background-color: var(--blue);
    color: #fff;
    text-decoration: none;
}
.link a + a {
    margin-left: 10px;
}
.link a img {
    position: relative;
    top: 2px;
}
.link a:hover img {
    filter: invert(1);
}

.lb-data .lb-close {
    position: relative;
    z-index: 13;
}

.blocker {
    z-index: 21;
}

external {
    display: inline-block;
    width: 18px;
    height: 11px;
    margin-left: 2px;
    background: url("../../../dist/system/front-images/icon-external-link.svg") center center no-repeat;
    background-size: 11px 11px;
    font-size: 0;
}
.header-nav external, footer ul external {
    filter: contrast(0) brightness(2);
}

a[href^="tel:"], a[href^="tel:"]:hover {
    text-decoration: none;
}

button.reset
{
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

#odber_rozhlasu input[type=text] {
    height: 38px;
    padding: 0 10px;
    border: 1px solid #000;
}

.select select {
    width: 100%;
    height: 38px;
    margin: 10px 0;
    padding: 0 5px;
    border: 1px solid #000;
    background-color: #fff;
}

footer {
    padding-top: 15px;
    padding-bottom: 30px;
    background-color: var(--blue);
    color: #fff;
    font-size: 13px;
    text-align: left;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .container {
    display: flex;
    justify-content: space-between;
}

.footer-col {
    width: 22%;
}

.footer-contacts img {
    width: 22px;
    margin: 2px 0 -6px;
}

footer hr {
    height: 1px;
    border: 0;
    background-color: #fff;
}

footer ul {
    list-style-type: none;
}

footer ul li {
    padding: 8px 0;
}

.footer-media {
    display: none;
}

.footer-col:last-child {
    padding-top: 30px;
}

.newsletter-box {
    padding: 10px 20px 20px;
    background-color: var(--yellow);
    color: #000;
    text-align: center;
}

.newsletter-box a {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #000;
    font-weight: bold;
}
.newsletter-box a:hover {
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

.to-top {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 3vw;
    padding: 5px;
    background: rgba(255,255,255,0.7);
    cursor: pointer;
    z-index: 3;
}

.container:after, 
.container-full:after {
    clear: both;
    display: block;
    content: '';
}

.cleaner {
    clear: both;
    display: block;
    height: 1px;
    border: 0;
    font-size: 0;
}

.black {
    color: #000;
}

.white {
    color: #fff;
}

.grey {
    color: #999;
}

.red {
    color: #b60e0e;
}

.blue {
    color: var(--blue);
}

.yellow {
    color: var(--yellow);
}

.uppercase {
    text-transform: uppercase;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.no-margin {
    margin: 0;
    padding: 0;
}

.hidden {
    display: none;
}

h1 {
    clear: both;
    margin: 25px 0 15px;
    color: var(--blue);
    font-family: "Arial Black", Arial-BoldMT;
    font-size: 30px;
    line-height: 1.2em;
}

h1:first-letter {
    text-transform: capitalize;
}

h1 span {
    display: block;
    font-size: 30px;
}

h2, .h2 {
    clear: both;
    margin: 25px 0 15px;
    font-family: "Arial Black", Arial-BoldMT;
    font-size: 24px;
    font-weight: normal;
    line-height: 1.2em;
}

h3, .h3 {
    clear: both;
    margin: 25px 0 15px;
    font-size: 24px;
    line-height: 1.2em;
}

h4, .h4 {
    clear: both;
    margin: 25px 0 15px;
    font-size: 20px;
    line-height: 1.2em;
}

.font10 {
    font-size: 10px;
}

.font11 {
    font-size: 11px;
}

.font12 {
    font-size: 12px;
}

.font14 {
    font-size: 14px;
}

.font16 {
    font-size: 16px;
}

.font18 {
    font-size: 18px;
}

.font20 {
    font-size: 20px;
}

.font22 {
    font-size: 22px;
}

.font24 {
    font-size: 24px;
}

.font28 {
    font-size: 28px;
}

.font30 {
    font-size: 30px;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #757575;
    font-size: 13px;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #757575;
    opacity: 1;
    font-size: 13px;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #757575;
    font-size: 13px;
}
:-moz-placeholder { /* Firefox 18- */
    color: #757575;
    font-size: 13px;
}

input, textarea, select, button {
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
}

textarea {
    max-width: 100%;
    resize: none;
}

ul {
    margin: 15px 0;
    padding: 0;
}

p {
    margin: 15px 0;
    padding: 0;
}

a {
    color: inherit;
    transition: all 250ms linear;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    border: 0;
}

*:focus {
    outline: none;
}

* {
    box-sizing: border-box;
}


@media (max-width: 1600px) {
    .autocomplete-wrapper {
        width: 720px;
    }
}

@media (max-width: 1500px) {
    body {
        padding: 170px 0 0;
    }
    :root {
        --container-width: 100%;
    }
    .container, .breadcrumbs-wrapper, .menu-show-wrapper {
        padding-left: 3vw;
        padding-right: 3vw;
    }
    .header-lang {
        padding-right: 0;
    }
    .header-language {
        padding-right: 0;
    }
    .header-nav {
        padding: 0 3vw;
    }
    .header-nav .autocomplete {
        right: 3vw;
    }
    .logo {
        width: 210px;
    }
    .menu-top li {
        padding: 15px 1.2vw 15px 0;
    }
    .menu-top button {
        top: 20px;
    }
    header nav ul li a {
        padding: 15px 1vw;
    }
    header nav ul div, header.fixed nav ul div {
        top: 130px;
    }
    .homepage header nav ul div, .homepage header.fixed nav ul div {
        top: 100px;
    }
    header nav ul ul li {
        flex: 0 0 20%;
    }
    .menu-close {
        top: 130px;
        right: 25px;
    }
    header.fixed .menu-close {
        top: 130px;
    }
    .header-search input {
        width: 752px;
    }
    div .slick-slide {
        margin: 0 1.5vw;
        padding: 0 0 30px;
    }
    div .slick-slide a {
        box-shadow: 5px 10px 20px #D6DCE1;
    }
    div .slick-slide a:hover {
        box-shadow: 5px 10px 20px #C6CED5;
    }
    .news-img {
        height: 10vw;
    }
    .news-wrapper > div:first-child .news-img {
        height: 19.8vw;
    }
    .site-townhall .container > div {
        padding: 10px 0 40px;
    }
    .tiles-list p {
        width: 31.3%;
    }
    .press-news .card img {
        width: auto;
        height: auto;
        object-fit: fill;
    }
}

@media (max-width: 1263px) {
    .menu-top li a {
        font-size: 12px;
    }
    header nav ul li {
        font-size: 16px;
    }
    .reports-video > div,
    .reports-video > div:nth-child(2n+1) {
        float: none;
        width: 100%;
    }
    .reports-video > div + div + div {
        display: none;
    }
    .members-list > div {
        flex-basis: 100%;
    }
	.menu-top input {
		width: 145px !important;
	}
    .byty_modal_content table img {
        max-width: 160px;
    }
}

@media (max-width: 1086px) {
    body {
        padding: 110px 0 0;
    }
    .media-file {
        /*height: 55vw;*/
    }
    .media-file img {
        width: auto;
        max-width: none;
        max-height: 100%;
    }
    .media-author {
        bottom: 0;
    }
    .header-info {
        bottom: 5px;
    }
    .header-top {
        padding: 8px 3vw;
    }
    .header-top > *:first-child {
        display: none;
    }
    .header-news {
        text-align: left;
    }
    .header-lang-selected {
        margin: 3px 0;
    }
    .menu-top {
        display: none;
    }
    .menu-responsive {
        display: block;
    }
    header nav {
        position: fixed;
        top: 0;
        left: 0;
        float: none;
        display: none;
        width: 100vw;
        min-height: 100vh;
        padding: 40px 3vw 20px;
        background: var(--blue);
        transform: translateX(-100%);
        transition: all 350ms linear;
        opacity: .95;
        z-index: 48;
    }
    header nav.active {
        transform: translateX(0);
    }
    header nav ul li {
        display: block;
        padding: 10px 0;
    }
    header nav ul li a {
        display: inline;
        padding: 0;
    }
    header nav ul ul {
        display: block;
        position: static;
        margin: 0;
        padding: 10px 0 0;
        text-align: center;
    }
    header nav ul li:hover ul {
        display: block;
    }
    header nav ul ul:before, header nav ul ul:after {
        display: none;
    }
    header nav ul ul li {
        padding: 10px 0;
    }
    header nav ul ul li a {
        min-height: 0;
        padding: 0;
        border-bottom: 0;
    }
    header nav ul ul ul {
        padding: 0;
    }
    header nav ul ul ul li {
        padding: 0;
    }
    .header-search input {
        width: 512px;
    }
    .menu-user.container .slick-slider {
        margin-left: -30px;
        margin-right: -30px;
    }
    div .slick-slide {
        margin: 0 10px;
    }
    div .slick-slide a {
        padding: 30px 5px;
        min-height: 162px;
    }
    .news-content-main h3 {
        height: 72px;
        font-size: 20px;
    }
    .news-content-more > div {
        width: 50%;
    }
    .wrapper_posuv {
        display: block;
    }
    .events_type_left {
        margin: auto;
        padding-right: 0;
    }
    .events_type_right {
        width: 100%;
    }
    .events_type_right .events-type {
        padding-left: 20px;
    }
    .news__arrow_dir_left {
        left: -15px;
    }
    .site-townhall {
        padding-top: 0;
        padding-bottom: 0;
        background-color: #fff;
    }
    .site-townhall .container {
        background-color: #EEF4FE;
        box-shadow: none;
    }
    .site-townhall .container > div {
        width: auto;
        min-height: 0;
    }
    .townhall-mayor {
        display: none;
    }
    .townhall-motto {
        display: none;
    }
    .site-reports {
        display: none;
    }
    .webs {
        gap: 15px;
    }
    [class^="webs-element"], [class^="webs-element"] h3 {
        font-size: 18px;
    }
    .article-header {
        display: block;
    }
    .article-header > div {
        width: auto;
    }
    .article-header > p {
        width: auto;
        padding: 15px 0;
    }
    .article-header .events-info > p {
        margin: 0;
    }
    .members-list > div {
        flex-basis: 50%;
    }
    .search-full-tabs p {
        width: 31%;
        margin: 0 0 15px;
    }
    .site-content {
        min-height: 0;
    }
    .site-content-left {
        display: none;
    }
    .site-content-right {
        float: none;
        width: auto;
    }
    #detskahristemodal {
        width: 90vw;
    }
    #byty_data {
        max-width: 98vw;
    }
    .zlin-page-grid-5x3 {
        display: block;
    }
    .zlin-page-grid-5x3 > div {
        margin-bottom: 20px;
        padding: 1px 25px;
    }
    .zlin-noted-native {
        min-height: auto;
    }
    .thirds-boxes-with-text > * > * + * {
        font-size: 22px;
    }
    .thirds-boxes-with-text > * > * + * span {
        font-size: 30px;
    }
    .halves {
        display: block;
    }
    .halves > * {
        width: auto;
    }
    .thirds {
        display: block;
    }
    .thirds > * {
        width: auto;
    }
    footer .container {
        flex-wrap: wrap;
    }
    .footer-col {
        width: 30%;
    }
    .footer-col:last-child {
        position: relative;
        top: 30px;
        width: 100%;
        padding-top: 0;
        z-index: 2;
    }
    .footer-col:last-child:after {
        position: absolute;
        top: 0;
        left: -5vw;
        display: block;
        width: 100%;
        height: 100%;
        border-left: 5vw solid var(--yellow);
        border-right: 5.3vw solid var(--yellow);
        background-color: var(--yellow);
        content: "";
        z-index: -1;
    }
    .site-bottom > div {
        flex-wrap: wrap;
    }
    .site-bottom > div > .bottom-logos {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .byty_modal_content table {
        margin-top: 0;
    }
    .byty_modal_content table th {
        display: none;
    }
    .byty_modal_content table tr {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #676767;
    }
    .byty_modal_content table td {
        display: block;
        padding: 2px 0;
        border: 0;
    }
    .byty_modal_content table img {
        max-width: 100%;
        max-height: none;
    }
    .byty_modal_content table .link {
        margin: 0;
    }
    .name_popis_byt {
        width: auto;
    }
}

@media (max-width: 767px) {
    body {
        padding: 100px 0 0;
    }
    .container {
        padding-left: 5vw;
        padding-right: 5vw;
    }
    .header-nav {
        padding: 0 5vw;
    }
    .menu-responsive {
        right: 5vw;
    }
    .media-file {
        min-height: 250px;
        background: url("../../../dist/system/front-images/zlin.jpg") center center no-repeat;
        background-size: cover;
    }
    .media-file .vegas {
        height: 55vw;
    }
    .vegas-content-scrollable {
        background: none;
    }
    .vegas-slide {
        display: none;
    }
    .vegas-timer {
        display: none;
    }
    .media-author {
        display: none;
    }
    .header-media h1 {
        display: none;
    }
    .header-search {
        bottom: -29px;
        width: 90vw;
        background: transparent;
    }
    .header-search input {
        width: 100%;
        height: 48px;
        background: #fff;
        color: #000;
        box-shadow: 3px 7px 20px #D6DCE1;
    }
    .header-search button {
        top: 10px;
        background: url("../../../dist/system/front-images/icon-magnifier-blue.svg") center center no-repeat;
    }
    .header-search-tags {
        display: none;
    }
    .header-search .autocomplete {
        width: calc(90vw - 8px);
    }
    .header-search .autocomplete-wrapper {
        display: block;
        width: 100%;
    }
    .header-search .autocomplete-col {
        width: auto;
        padding: 5px 15px 20px;
    }
    .header-nav .mobile-search .autocomplete, .header-nav .mobile-search .autocomplete-wrapper {
        width: 270px;
    }
    .header-info {
        bottom: 25px;
        right: 5vw;
        align-items: center;
        justify-content: space-between;
        width: 90vw;
        padding-left: 15px;
    }
    .social-media {
        display: flex;
        align-items: center;
    }
    .social-media a {
        display: inline-block;
        margin: 0 0 0 15px;
    }
    .social-media img {
        max-width: 20px;
        max-height: 25px;
    }
    .menu-user {
        padding-top: 40px;
    }
    #mobile-sidebar .menu-user {
        padding-top: 0;
    }
    div .slick-slide {
        margin: 0 3vw;
    }
    .slick-list {
        padding: 0 10% !important;
    }
    .site-news {
        padding-top: 0;
        padding-bottom: 0;
    }
    .site-news h2 {
        text-align: left;
    }
    .news-all-mobile {
        display: block;
    }
    .news-wrapper {
        display: block;
    }
    .news-wrapper > div {
        display: none;
    }
    .news-wrapper > div:first-child {
        display: block;
    }
    .news-wrapper h3, .news-wrapper > div:first-child h3 {
        height: auto;
        padding-bottom: 10px;
        font-size: 18px;
    }
    .news-img, .news-wrapper > div:first-child .news-img {
        height: 51vw;
    }
    .site-news > .link {
        display: none;
    }
    .news-filter {
        display: block;
    }
    .news-filter label {
        display: inline-block;
        width: 60px;
    }
    .news-filter select {
        width: calc(100% - 70px);
        margin-right: 0;
    }
    .news-filter input {
        position: relative;
        left: 5px;
        width: calc(100% - 70px);
        margin-right: 0;
    }
    .news-filter button {
        width: calc(100% - 70px);
        margin-left: 70px;
    }
    #mapy_form label,
    #form_search_bydleni label {
        display: block;
        width: auto;
    }
    #mapy_form input[type="checkbox"],
    #form_search_bydleni input {
        position: static;
        width: auto;
        margin-right: 5px;
    }
    #form_search_bydleni button {
        width: auto;
        margin-left: 0;
    }
    #form_search_bydleni .flex input {
        margin-top: 10px;
    }
    #form_search_bydleni .flex {
        display: block;
    }
    .site-events h2 {
        text-align: left;
    }
    .events-all-mobile {
        display: block;
    }
    .events-type {
        display: block;
        margin: 20px 0 10px;
    }
    .events-type li {
        margin: 2px 0;
    }
    .events_type_right {
        padding: 0;
    }
    .events_type_right .events-type {
        padding: 0;
    }
    .events_type_right .slick-slide {
        margin: 0 0 0 2vw;
    }
    .events-content {
        display: block;
    }
    .events-content > div {
        width: auto;
    }
    .events-content > div:first-child {
        display: none;
    }
    .events-content > .link {
        display: block;
    }
    .events-list-data .link {
        display: none;
    }
    .events-list-data h3 {
        margin-top: 0;
        font-size: 16px;
    }
    .article-button-back {
        padding-bottom: 20px;
    }
    .site-townhall .link {
        display: block;
    }
    .site-townhall .link a {
        width: 100%;
    }
    .site-webs h2 {
        text-align: left;
    }
    .webs {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: normal;
    }
    [class^="webs-element"] {
        width: 48.5%;
        height: 24vw;
        margin-bottom: 2vw;
    }
    .webs-logo {
        display: none;
    }
    .webs-element-2 .hidden {
        display: block;
    }
    .webs-img img {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }
    .departments {
        display: block;
        margin-top: 0;
    }
    .departments > div + div {
        padding-left: 0;
    }
    .tenders-header {
        display: block;
    }
    .tenders-header span {
        margin: 0 30px 0 0;
    }
    .tender-content {
        display: block;
    }
    .tender-content p:first-child {
        float: left;
        padding: 0 10px 0 0;
    }
    .tender-content p:first-child + p span {
        display: inline-block;
        padding: 0 0 0 20px;
    }
    .tender-content p:last-child {
        text-align: left;
    }
    .tiles-list p {
        width: 48%;
    }
    .members-list > div {
        flex-basis: 100%;
    }
    .monitoring_hladiny_wrapper label {
        display: block;
    }
    .monitoring_hladiny_wrapper input {
        margin: 5px 0;
    }
    .monitoring_hladiny_wrapper button {
        min-width: 208px;
        margin: 15px 0 0;
    }
    .thirds-boxes-with-text > * {
        width: 48%;
    }
    .two-fifths {
        display: block;
    }
    .two-fifths > *, .two-fifths > * + * {
        width: auto;
    }
    .footer-col:first-child {
        order: 3;
        width: 100%;
    }
    .footer-col:nth-child(2) {
        order: 1;
        width: 50%;
        padding-right: 15px;
    }
    .footer-col:nth-child(3) {
        order: 2;
        width: 50%;
        padding-left: 15px;
    }
    .footer-col:last-child {
        order: 4;
    }
    .footer-contacts {
        display: flex;
    }
    .footer-contacts > * {
        width: 50%;
    }
    .footer-contacts > *:last-child {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-left: 15px;
    }
    .footer-media {
        display: block;
    }
    .footer-media a {
        margin-right: 3vw;
    }
    .footer-media img {
        max-height: 25px;
    }
    .site-reports {
        padding-top: 5px;
        padding-bottom: 20px;
    }
    .reports-app {
        padding: 0 5vw;
    }
    .reports-app img {
        height: 50px;
    }
    .link a {
        padding: 10px 20px;
    }
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 19px;
    }
    h4 {
        font-size: 17px;
    }
}

@media (max-width: 555px) {
    [class^="webs-element"], [class^="webs-element"] h3 {
        font-size: 15px;
    }
    .events-tabs li {
        padding: 10px;
    }
    .events-info {
        display: block;
    }
    .events-info > p {
        width: auto;
        margin: 0;
    }
    .events-info img {
        top: 2px;
        width: 13px;
    }
    .survey-box h3 {
        font-size: 18px;
    }
    .tiles-list a {
        height: 75px;
    }
    .search-full-tabs p {
        width: 100%;
    }
    .site-bottom > div > * {
        width: 50%;
    }
    .site-bottom > div > *:nth-child(3) {
        display: none;
    }
    .bottom-mobile {
        display: block;
    }
    .site-bottom ul li {
        padding: 0 0 4px;
    }
    .thirds-boxes-with-text > * > * + * {
        font-size: initial;
    }
    .thirds-boxes-with-text > * > * + * span {
        font-size: 16px;
    }
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 18px;
    }
}

@media (max-width: 444px) {
    body {
        padding: 80px 0 0;
    }
    div .slick-slide a {
        min-height: 140px;
    }
    div .slick-slide img {
        height: 40px;
    }
    .events-all-mobile {
        position: static;
        text-align: right;
    }
    .tiles-list {
        display: block;
    }
    .tiles-list p {
        width: auto;
    }
    .members-list > div {
        display: block;
    }
    .members-list > div > div {
        padding: 0;
    }
    #poradnik_byty label {
        display: block;
        margin-bottom: 10px;
    }
    .footer-col:nth-child(2), .footer-col:nth-child(3) {
        width: 100%;
        padding-left: 0;
    }
    .footer-contacts {
        display: block;
    }
    .footer-contacts > * {
        width: auto;
    }
    .footer-contacts > :last-child {
        padding-left: 0;
    }
    .site-bottom > div > * {
        width: 100%;
        padding-left: 0
    }
}

@media (max-height: 810px) {
    header nav ul ul {
        padding: 15px 0 0;
    }
    header nav ul ul li {
        padding: 10px 20px;
    }
    header nav ul ul li a {
        min-height: 40px;
    }
    .menu-close {
        top: 110px;
    }
    header.fixed .menu-close {
        top: 100px;
    }
}

@media (max-width: 1300px) {
	.menu-top input {
		width: 145px !important;
	}
}


