@font-face {
    font-family: 'OpenSauceSans';
    src: url('fonts/OpenSauceSans-Regular.svg#OpenSauceSans') format('svg'),
    url('fonts/OpenSauceSans-Regular.ttf') format('truetype'),
    url('fonts/OpenSauceSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSauceSansMedium';
    src: url('fonts/OpenSauceSans-Medium.svg#OpenSauceSans') format('svg'),
    url('fonts/OpenSauceSans-Medium.ttf') format('truetype'),
    url('fonts/OpenSauceSans-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSauceSansBold';
    src: url('fonts/OpenSauceSans-Bold.svg#OpenSauceSans') format('svg'),
    url('fonts/OpenSauceSans-Bold.ttf') format('truetype'),
    url('fonts/OpenSauceSans-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --container-width: 1180px;
    --blue: #14336A;
    --red: #D70010;
    --pink: #ED765B;
    --yellow: #E8C500;
    --font: 'OpenSauceSans';
    --font-huge: 40px;
    --font-big: 32px;
    --font-medium: 20px;
}

body {
    width: 100%;
    margin: 0;
    padding: 97px 0 0;
    background-color: #f9f9f9;
    color: #000;
    font-family: 'OpenSauceSans', Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-align: center;
    overflow-x: hidden;
}

.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;
    left: 0;
    right: 0;
    background-color: #eee;
    font-family: 'OpenSauceSansMedium';
    font-size: 14px;
    z-index: 26;
}
header.fixed {
}

header > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1px 5vw;
}

.logo {
    position: relative;
    z-index: 13;
}
.logo img {
}

header nav {
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

header nav ul li {
    position: relative;
    display: inline-block;
    margin: 0 12px;
}

header nav ul li a {
    font-family: var(--font);
    text-transform: uppercase;
    text-decoration: none;
}

header nav ul li.active a, header nav ul li a:hover {
    color: var(--pink);
    text-decoration: none;
}

header nav ul ul {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-search {
    position: relative;
}
.header-search img {
    width: 15px;
    cursor: pointer;
}

#search_form {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.9);
    z-index: 40;
}
#search_form.active {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.search-title {
    color: #fff;
    font-family: 'OpenSauceSansBold';
    font-size: var(--font-big);
}
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 560px;
    padding: 25px;
    background-color: #fff;
}
#search-query {
    flex: 1;
    height: 54px;
    padding: 0 25px;
    border: 0;
    background-color: #f3f3f3;
}
#search-btn {
    width: 118px;
    height: 54px;
    border: 0;
    background-color: #000;
    color: #fff;
    transition: all 350ms linear;
    cursor: pointer;
}
#search-btn:hover {
    opacity: .7;
}
#search-close {
    position: absolute;
    top: -25px;
    right: -25px;
    margin: 0;
    cursor: pointer;
    z-index: 2;
}
#search-close img {
    width: 50px;
}

.lang {
    position: relative;
}
.lang > p {
    position: relative;
    top: -2px;
    padding: 5px 8px;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
}
.lang:hover > p, .lang > p.active {
    border: 2px solid #e4e4e4;
    background-color: #fff;
}
.lang > div {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    z-index: 2;
}
.lang > div.active {
    display: block;
}
.lang ul {
    margin: 0;
    padding: 5px 8px;
    border: 2px solid #e4e4e4;
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #fff;
    list-style-type: none;
}
.lang li {
    padding: 4px 0;
    cursor: pointer;
}

.menu-responsive {
    display: none;
    position: fixed;
    top: 30px;
    right: 20px;
    width: 26px;
    height: 20px;
    font-size: 0;
    z-index: 49;
}
.menu-responsive span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 26px;
    height: 2px;
    background-color: #000;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
.menu-responsive span:nth-child(1) {
    top: 0;
}
.menu-responsive span:nth-child(2), .menu-responsive span:nth-child(3) {
    top: 8px;
}
.menu-responsive span:nth-child(4) {
    top: 16px;
}
.menu-responsive.active span:nth-child(1) {
    top: 8px;
    left: 50%;
    width: 0;
}
.menu-responsive.active span:nth-child(2) {
    transform: rotate(45deg);
}
.menu-responsive.active span:nth-child(3) {
    transform: rotate(-45deg);
}
.menu-responsive.active span:nth-child(4) {
    top: 8px;
    left: 50%;
    width: 0;
}

.site-slider {
    position: relative;
}
.site-slider .slick-track > div {
    position: relative;
}

.site-slider .slick-prev, .site-slider .slick-next {
    filter: grayscale(1) brightness(2);
}

.slide-img {
    margin: 0;
    font-size: 0;
}
.slide-img img {
}

.slide-content {
    position: absolute;
    top: 0;
    bottom: 2px;
    left: 0;
    right: 0;
    color: #fff;
    z-index: 2;
}
.slide-content > div {
    position: relative;
    top: 50%;
    max-width: 1000px;
    margin: auto;
    padding: 0 85px;
    font-size: 18px;
    transform: translateY(-50%);
    z-index: 4;
}
.slide-content h1 {
    margin-top: 0;
    font-size: 70px;
    text-shadow: 2px 2px 0 #000000C4;
}
.slide-content p {
    text-shadow: 2px 2px 0 #000000C4;
}

.slider-position {
    display: flex;
    align-items: center;
    padding: 0 5vw;
}
.slider-position > div {
    flex: 1;
    display: flex;
}
.slider-position > div div {
    flex-grow: 1;
    height: 3px;
    border-top: 2px solid #fff;
    background-color: var(--blue);
    content: " ";
}
.slider-position > div div.active {
    border-top: 2px solid var(--pink);
    background-color: var(--pink);
}
.slider-position > p {
    width: 90px;
    text-align: right;
}
.slider-position > p span {
    position: relative;
    top: 2px;
    left: -2px;
    color: var(--pink);
    font-size: 22px;
}

.site-recommendations {
    padding-top: 35px;
    padding-bottom: 15px;
    background: url("/assets/custom/frontend/img/background01.png") right 50px no-repeat;
    background-size: 396px auto;
}

.slider-recommendations {
    padding: 20px 0;
}

.slider-recommendations a, .slider-recommendations a:hover {
    text-decoration: none;
}

.slider-recommendations .slick-list {
    /*margin: 0 -25px;*/
}
.slider-recommendations .slick-slide {
    margin: 0 25px;
    padding: 0 0 15px;
}
.slider-recommendations .slick-prev {
    left: -125px;
}
.slider-recommendations .slick-next {
    right: -95px;
}

.recommendation {
    background-color: #fff;
}
.recommendation > p:first-child {
    margin: 0;
}
.recommendation-content {
    padding: 5px 15px 15px;
    box-shadow: 0 3px 5px #eee;
}
.recommendation-content h3 {
    height: 47px;
    overflow: hidden;
}
.recommendation-content p {
    height: 100px;
    opacity: .4;
    overflow: hidden;
}

.site-categories {
    padding: 35px 0 50px;
    background: url("/assets/custom/frontend/img/background02.png") 0 50px no-repeat, url("/assets/custom/frontend/img/background03.png") bottom right no-repeat, #F9F9F9;
    background-size: 361px auto, 464px auto;
}

.categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 30px;
    padding: 15px 0 15px;
}
.categories a {
    position: relative;
}
.categories a > div {
    position: relative;
    font-size: 14px;
}
/*
.categories a > div:after {
    position: absolute;
    top: 0;
    bottom: 3px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.4);
    content: "";
    z-index: 2;
}
*/
.categories a > div:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, black 0%, transparent 50%);
	z-index: 2;
	bottom: 3px;
}

.categories a > div > p {
    margin: 0;
}
.category-content {
    position: absolute;
    bottom: 15px;
    left: 30px;
    right: 30px;
    color: #fff;
    text-align: left;
    z-index: 3;
}
.category-content > p:first-child {
    position: relative;
    top: 0;
    margin-bottom: 5px;
    font-family: 'OpenSauceSansBold';
    font-size: var(--font-medium);
    transition: all 200ms linear;
}
.categories a:hover .category-content > p:first-child {
    top: -10px;
}
.category-content img {
    position: relative;
    top: 7px;
    left: 5px;
    height: 24px;
    filter: grayscale(1) brightness(3);
}
.category-content p + p {
    height: 0;
    margin-top: -10px;
    opacity: 0;
}
.categories a:hover p + p {
    height: auto;
    transition: all 350ms linear;
    opacity: 1;
}

.img_external {
    position: absolute;
    top: -5px;
    right: -19px;
    z-index: 2;
}
.img_external svg {
    height: 12px;
}
.categories .img_external {
    top: 10px;
    right: 10px;
}
.categories .img_external svg {
    height: 22px;
}

.site-calendar {
    padding: 25px 0;
    background: url("img/background04.png") 25px center no-repeat;
    background-size: 323px auto;
}

.calendar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 10px 0;
    font-size: 14px;
    text-align: left;
}
.calendar-left {
    position: relative;
    width: 430px;
}
.calendar-left a {
    position: relative;
    display: block;
    z-index: 2;
}
.calendar-left a:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, black 0%, transparent 55%);
	pointer-events: none;

    /*position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.4);
    content: "";
	*/
}
.calendar-left a > p {
    font-size: 0;
    overflow: hidden;
}
.calendar-left a > p img {
    position: relative;
    left: 50%;
    max-width: none;
    height: 430px;
    transform: translateX(-50%);
}
.calendar-left div {
    position: absolute;
    bottom: 20px;
    left: 30px;
    right: 30px;
    color: #fff;
    z-index: 3;
}
.calendar div h3 {
    margin: 15px 0 -10px;
}
.calendar figcaption {
    position: relative;
    top: 0;
    transition: all 200ms linear;
}
.calendar a:hover figcaption {
    top: -10px;
}
.calendar figcaption img {
    position: relative;
    top: 3px;
    margin-right: 3px;
}
.calendar-left div p:first-child {
    color: var(--white);
	font-weight:bold;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.calendar-left div p:last-child {
    height: 0;
    opacity: 0;
}
.calendar-left a:hover div p:last-child {
    height: auto;
    transition: all 350ms linear;
    opacity: 1;
}
.calendar-left div > p img {
    position: relative;
    top: 6px;
    left: 5px;
    height: 22px;
    filter: grayscale(1) brightness(2);
}
.calendar-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.calendar-right a {
    display: flex;
    align-items: center;
    margin: 15px 0;
    text-decoration: none;
}
.calendar-right a:hover {
    text-decoration: none;
}
.calendar-right a > p {
    flex: 0 0 200px;
    height: 200px;
    margin: 0;
    font-size: 0;
    overflow: hidden;
}
.calendar-right a > p img {
    position: relative;
    left: 50%;
    max-width: none;
    height: 100%;
    transform: translateX(-50%);
}
.calendar-right a > div {
    position: relative;
    padding: 0 15px 0 30px;
}
.calendar-right a > div > * {
}
.calendar-right a div p:first-child {
    color: var(--pink);
}
.calendar-right a div p:last-child {
    height: 0;
    opacity: 0;
}
.calendar-right a:hover div p:last-child {
    height: auto;
    transition: all 350ms linear;
    opacity: 1;
}
.calendar-right a div > p img {
    position: relative;
    top: 6px;
    left: 5px;
    height: 22px;
    filter: grayscale(1) brightness(0);
}

.site-image {
    position: relative;
}
/*
.site-image:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.5);
    content: "";
    z-index: 2;
}
*/

.site-image p {
    margin: 0;
    font-size: 0;
}
.site-image h1 {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0 20px;
    color: #fff;
    font-size: 48px;
    transform: translateY(-50%);
    text-shadow: 2px 2px 0 #000000C4;
    text-transform: uppercase;
    z-index: 2;
}

.site-events {
    padding: 10px 0 40px;
    background-color: #f3f3f3;
    text-align: left;
}
.site-events h2 {
    text-align: center;
}
.site-events .link {
    text-align: center;
}

.events-filter {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 2fr;
    gap: 20px;
    margin: 45px 0 30px;
    padding: 10px 25px 15px;
    background-color: #fff;
}
.events-filter p + p {
    margin-top: -5px;
}
.events-filter input, .events-filter select, .events-filter button {
    width: 100%;
    height: 54px;
    padding: 0 15px;
    border: 1px solid #000;
    background-color: #f3f3f3;
}
.events-filter select {
    background: #f3f3f3 url("/assets/custom/frontend/img/arrow-select.jpg") top right no-repeat;
    background-size: contain;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.events-filter input[type="text"] {
    width: calc(100% - 100px);
}
.events-filter button {
    width: 100px;
    background-color: #000;
    color: #fff;
    cursor: pointer;
}

.events {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    row-gap: 0;
    padding: 10px 0 15px;
}
.events > div {
    position: relative;
    min-height: 100px;
}
.events a {
    position: relative;
    display: block;
    min-height: 100px;
    z-index: 2;
}
/*
.events a:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.7);
    content: "";
}
*/
.events a:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, black 0%, transparent 55%);
    pointer-events: none;
}

.events a > p {
    font-size: 0;
}
.events > div div {
    position: absolute;
    bottom: 10px;
    left: 30px;
    right: 30px;
    color: #fff;
    font-size: 14px;
    z-index: 3;
}
.events h3 {
    margin: 15px 0 -10px;
}
.events div p:first-child {
    color: var(--white);
	font-weight:bold; /*přidáno tučné písmo */
	text-shadow:
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px  0 #000;
}
.events figcaption {
    position: relative;
    top: 0;
    transition: all 200ms linear;
}
.events a:hover figcaption {
    top: -10px;
}
.events figcaption img {
    position: relative;
    top: 3px;
    margin-right: 3px;
}
.events div p:last-child {
    height: 0;
    opacity: 0;
}
.events a:hover div p:last-child {
    height: auto;
    transition: all 350ms linear;
    opacity: 1;
}
.events > div div > p img {
    position: relative;
    top: 6px;
    left: 5px;
    height: 22px;
    filter: grayscale(1) brightness(2);
}

.site-event {
    padding: 10px 0 40px;
    background: url("/assets/custom/frontend/img/background04.png") 0 50px no-repeat, url("/assets/custom/frontend/img/background03.png") bottom right no-repeat;
    background-size: 323px auto, 464px auto;
    line-height: 1.6;
    text-align: left;
}

.site-event a {
    color: var(--blue);
}

.event-date {
    margin-bottom: -20px;
    color: var(--pink);
    font-size: 14px;
	display:none /*skrytí datumu nad akcí */
}

.event {
    display: flex;
    gap: 30px;
    margin-top: -10px;
}
.event-img {
    flex: 0 0 450px;
    height: 450px;
    overflow: hidden;
}
.event-img img {
    position: relative;
    left: 50%;
    max-width: none;
    height: 100%;
    transform: translateX(-50%);
}

.gallery-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 35px;
    padding: 10px 0 15px;
}
.gallery-content > * {
    height: 220px;
    overflow: hidden;
}
.gallery-content > * a {
    height: 100%;
}
.gallery-content > * img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    min-width: 100%;
}

.site-content {
    padding-top: 10px;
    padding-bottom: 40px;
    line-height: 1.4;
    text-align: left;
}

#full-search-label {
    display: flex;
    padding: 15px 0 20px;
}
#full-search-label input {
    height: 46px;
    padding: 0 10px;
    border: 1px solid var(--blue);
    background-color: #fff;
    font-family: var(--font);
}
#full-search-label button {
    height: 46px;
    padding: 0 25px;
    border: 1px solid var(--blue);
    background-color: var(--blue);
    color: #fff;
    font-family: var(--font);
    transition: all 350ms linear;
    cursor: pointer;
}

.search-full-tabs {
    margin: 0 0 30px;
    border-bottom: 1px solid #e5e5e5;
}
.search-full-tabs > div {
    display: flex;
    justify-content: space-evenly;
}
.search-full-tabs > div a {
    text-transform: uppercase;
    text-decoration: none;
}
.search-full-tabs > div a:hover {
    text-decoration: underline;
}

.custom-pagination {
    padding: 15px 0;
}

.pagination {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
}

.pagination li {
    display: inline-block;
}

.pagination li a {
    display: block;
    min-width: 30px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
}

.pagination li.active a, .pagination li a:hover {
    border: 1px solid var(--blue);
}

.breadcrumbs {
    margin-top: 0;
    padding: 0 0 10px;
    font-size: 14px;
}
.breadcrumbs span {
    margin: 0 3px;
    color: var(--pink);
    font-size: 12px;
}
.breadcrumbs a {
    color: #000;
    text-decoration: none;
    opacity: .4;
}

/*menu autocomplete */

.twitter-typeahead {
}

.tt-menu {
    margin-top: -1px;
    padding: 10px 25px 25px;
    background-color: #fff;
    top: 110% !important;
    left: -21vw !important;
    right: -26vw !important;
    text-align: left;
}

.title_search_produkt {
    margin-bottom: 15px !important;
    padding-bottom: 12px;
    border-bottom: var(--blue);
    color: var(--blue);
    text-transform: uppercase;
}

.title_search_produkt span {
    text-transform: none;
}

.tt-menu .tt-suggestion {
    display: block;
    padding: 5px 0;
    color: var(--blue);
    text-decoration: none;
}
.tt-menu .tt-suggestion:hover {
    background-color: #e5e5e5;
}

.tt-menu .result_container {
    display: flex;
    align-items: center;
}

.tt-menu .result_container img {
    width: 30px;
    max-height: 36px;
    margin-right: 10px;
}

.tt-menu .results_data {
    float: none;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    font-size: 13px;
}

.tt-menu .results_data .product_name_search {
    display: inline-block;
    width: calc(100% - 200px);
    padding-right: 20px;
}

.tt-menu .search_dostupnost {
    width: 100px;
    padding-right: 20px;
}

.tt-menu .search_dostupnost p {
    display: inline-block;
    margin: 0;
    color: #749b77;
}

.tt-menu .search_cena {
    width: 80px;
}

.tt-menu .search_cena p {
    /*    display: inline-block;*/
    margin: 0;
    color: #b92a37;
}

.title_search_produkt_celkem {
    display: none;
    padding: 0 25px 0 0;
    font-style: italic;
    text-transform: uppercase;
}

.title_search_produkt_celkem span {
    color: var(--red);
}

.show_all_result_menu {
    display: inline-block;
    padding: 10px 15px 7px;
    border: 1px solid var(--blue);
    border-radius: 10px;
    color: var(--blue);
    text-transform: uppercase;
    text-decoration: none;
}
.tt-dataset-1 .show_all_result_menu {
    display: none;
}

.show_all_result_menu:hover {
    text-decoration: none;
}

.naseptavac-img {
    padding: 20px 0 0;
    text-align: center;
}

.naseptavac-img img {
    max-width: 320px;
}

.tt-menu .tt-suggestion.cat_naseptavac {
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 5px 10px;
    border: 1px solid #999;
    border-radius: 15px;
}

.tt-dataset-0 {
    float: left;
    width: 49%;
}

.tt-dataset-1, .tt-dataset-2 {
    float: right;
    width: 49%;
}

/* konec menu autocomplete*/

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
    width: 100%;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Dots */
.slick-dots {
    position: absolute;
    bottom: 35px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    z-index: 2;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 6px;
}
.slick-dots li button {
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: var(--yellow);
    font-size: 0;
    transition: all 350ms linear;
    cursor: pointer;
}
.slick-dots li.slick-active button,
.slick-dots li button:hover,
.slick-dots li button:focus {
    background: var(--blue);
}

/* Arrows */
.slick-prev, .slick-next {
    position: absolute;
    top: 40%;
    border: 0;
    background-color: transparent;
    font-size: 0;
    transition: all 350ms linear;
    cursor: pointer;
    z-index: 3;
}
.slick-prev:hover, .slick-next:hover {
    opacity: .6;
}
.slick-prev {
    left: 5vw;
}
.slick-next {
    right: 7vw;
}
.slick-prev:before, .slick-next:before {
    display: none;
}
.slick-prev:after, .slick-next:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    background: url("/assets/custom/frontend/img/arrow-l.svg") no-repeat 0 0;
    background-size: contain;
    content: "";
    z-index: 2;
}
.slick-next:after {
    background: url("/assets/custom/frontend/img/arrow-r.svg") no-repeat 0 0;
    background-size: contain;
}

.title {
    font-size: var(--font-huge);
    font-weight: bold;
}

.link a, .link button {
    display: inline-block;
    padding: 5px 20px 15px;
    border: 1px solid var(--blue);
    background-color: #fff;
    font-family: var(--font);
    font-size: 14px;
    transition: all 350ms linear;
    line-height: 1.2;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}
.link a:hover, .link button:hover {
    filter: invert(1);
    text-decoration: none;
}
.link img {
    position: relative;
    top: 6px;
    left: 5px;
    height: 22px;
}
.link a:hover img, .link button:hover img {
    left: 7px;
    filter: grayscale(1) brightness(0);
}
.link a + a {
    float: right;
}

.halves {
    display: flex;
    justify-content: space-between;
}

.halves > * {
    width: 48%;
}

.thirds {
    display: flex;
    justify-content: space-between;
}

.thirds > * {
    width: 30%;
}

a[href^="tel:"] {
    text-decoration: none;
}

footer {
    position: relative;
    padding-top: 25px;
    padding-bottom: 30px;
    background-color: var(--pink);
    color: #fff;
    font-size: 14px;
    text-align: left;
}

.go-up {
    position: absolute;
    top: -20px;
    right: 10vw;
    margin: 0;
    transition: all 350ms linear;
    z-index: 4;
}
.go-up:hover {
    opacity: .7;
}
.go-up img {
    max-height: 40px;
    cursor: pointer;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.footer-col {
    padding-right: 15%;
}

footer h3 {
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
}

.footer-col img {
}

footer ul {
    list-style-type: none;
}

footer li {
    padding: 5px 0;
}

footer li a {
    text-decoration: none;
}

.footer-social a {
    margin-right: 3px;
    transition: all 350ms linear;
}
.footer-social a:hover {
    opacity: .7;
}
.footer-social img {
    max-height: 24px;
}

.site-webs {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #f3f3f3;
}

.webs p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px 45px;
}
.webs p a {
    transition: all 350ms linear;
}
.webs p a:hover {
    opacity: .5;
}
.webs p img {
    max-width: 200px;
    max-height: 60px;
}

.container:after,
.container-full:after {
    clear: both;
    display: block;
    content: '';
}

.clear, .cleaner {
    clear: both;
    display: block;
    height: 1px;
    border: 0;
    font-size: 0;
}

.black {
    color: #000;
}

.white {
    color: #fff;
}

.grey {
    color: #999;
}

.green {
    color: var(--green);
}

.blue {
    color: var(--blue);
}

.red {
    color: var(--red);
}

.yellow {
    color: var(--yellow);
}

.uppercase {
    text-transform: uppercase;
}

.hidden {
    display: none;
}

.invisible {
    visibility: hidden;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

h1, .h1 {
    clear: both;
    margin-top: .7em;
    margin-bottom: .5em;
    font-family: 'OpenSauceSansMedium';
    font-size: var(--font-huge);
    font-weight: normal;
    line-height: 1.1em;
}

h2, .h2 {
    clear: both;
    margin-top: .8em;
    margin-bottom: .6em;
    color: var(--blue);
    font-family: 'OpenSauceSansBold';
    font-size: var(--font-big);
    font-weight: normal;
    line-height: 1.2em;
}

h3, .h3 {
    margin-top: 1em;
    margin-bottom: .8em;
    font-family: 'OpenSauceSansBold';
    font-size: var(--font-medium);
    font-weight: normal;
    line-height: 1.2em;
}

h4 {
    clear: both;
    margin: 25px 0 15px;
    font-family: 'OpenSauceSansBold';
    font-size: 18px;
    font-weight: normal;
    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;
}

.margin-top-5 {
    margin-top: 5px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-40 {
    margin-top: 40px;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-top-60 {
    margin-top: 60px;
}

.margin-bottom-5 {
    margin-bottom: 5px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}

.margin-bottom-60 {
    margin-bottom: 60px;
}

.padding-top-5 {
    padding-top: 5px;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-top-40 {
    padding-top: 40px;
}

.padding-top-50 {
    padding-top: 50px;
}

.padding-top-60 {
    padding-top: 60px;
}

.padding-bottom-5 {
    padding-bottom: 5px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

.padding-bottom-60 {
    padding-bottom: 60px;
}

.no-margin {
    margin: 0;
    padding: 0;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-size: 14px;
    opacity: .7;
}
::-moz-placeholder { /* Firefox 19+ */
    font-size: 14px;
    opacity: .7;
}
:-ms-input-placeholder { /* IE 10+ */
    font-size: 14px;
    opacity: .7;
}
:-moz-placeholder { /* Firefox 18- */
    font-size: 14px;
    opacity: .7;
}

input, textarea, select, option, button {
    color: #000;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: initial;
}

textarea {
    max-width: 100%;
    resize: none;
}

ul {
    margin: 15px 0;
    padding: 0;
    list-style-position: inside;
}

p {
    margin: 15px 0;
    padding: 0;
}

strong {
    font-family: 'OpenSauceSansBold';
    font-weight: normal;
}

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: 1660px) {
    :root {
        --container-width: 100%;
    }
    .container {
        padding-left: 3vw;
        padding-right: 3vw;
    }
    header > div {
        padding: 1px 3vw;
    }
    .slide-content h1,
    .site-image h1 {
        font-size: 2.5vw;
    }
    .slider-recommendations {
        padding: 20px 70px;
    }
    .slider-recommendations .slick-prev {
        left: 0;
    }
    .slider-recommendations .slick-next {
        right: 30px;
    }
    .slick-prev {
        left: 3vw;
    }
    .slick-next {
        right: 6vw;
    }
}

@media (max-width: 1377px) {
    :root {
        --font-huge: 28px;
        --font-big: 24px;
        --font-medium: 18px;
    }
    .recommendation-content h3 {
        height: 44px;
    }
    .event-date {
        margin-bottom: -10px;
    }
}

@media (max-width: 1086px) {
    body {
        padding: 83px 0 0;
    }
    .menu-responsive {
        display: block;
    }
    header > div {
        padding: 1px 60px 1px 3vw;
    }
    header nav {
        position: fixed;
        top: 83px;
        left: 0;
        float: none;
        display: block;
        width: 100vw;
        padding: 0 3vw 20px;
        border-bottom: 1px solid var(--pink);
        background-color: #fff;
        transform: translateX(-100%);
        transition: all 350ms linear;
        text-align: left;
        z-index: 48;
    }
    header nav.active {
        transform: translateX(0);
    }
    header nav ul {
        padding: 5px 0;
    }
    header nav ul li {
        display: block;
        margin: 0;
        border-bottom: 1px solid #f3f3f3;
    }
    header nav ul li a {
        display: block;
        padding: 15px 0;
    }
    header nav ul ul {
        display: block;
        position: static;
        width: auto;
        margin: 0;
        padding: 10px 0 0 20px;
    }
    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;
        border: 0;
    }
    header nav ul ul li a {
    }
    header nav ul ul ul li {
        padding: 2px 0;
    }
    .header-top ul {
        display: none;
    }
    .logo img {
        width: 120px;
    }
    .site-image p {
        height: 170px;
        overflow: hidden;
    }
    .site-image p img {
        position: relative;
        left: 50%;
        height: 100%;
        max-width: none;
        transform: translateX(-50%);
    }
    .categories {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-content > p:first-child {
        top: -10px;
    }
    .category-content p + p {
        height: auto;
        opacity: 1;
    }
    .calendar figcaption {
        top: -10px;
    }
    .calendar-left {
        width: 300px;
    }
    .calendar-left a > p img {
        height: 300px;
    }
    .calendar-left div p:last-child {
        height: auto;
        opacity: 1;
    }
    .calendar-right a > p {
        flex: 0 0 135px;
        height: 135px;
    }
    .calendar-right a > div {
        padding: 0 15px;
        background-color: #fff;
    }
    .calendar-right a div p:first-child {
        font-size: 12px;
    }
    .calendar-right div h3 {
        margin: 0 0 -20px;
    }
    .calendar-right a div p:last-child {
        height: auto;
        opacity: 1;
    }
    .events-filter {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0;
    }
    .events-filter > div:first-child, .events-filter > div:first-child + div {
        flex: 0 0 49%;
    }
    .events-filter > div:first-child + div + div, .events-filter > div:first-child + div + div + div {
        flex: 0 0 100%;
    }
    .events {
        grid-template-columns: repeat(2, 1fr);
    }
    .events figcaption {
        top: -10px;
    }
    .events div p:last-child {
        height: auto;
        opacity: 1;
    }
    .event {
        display: block;
        margin-top: 35px;
    }
    .event-img {
        height: auto;
    }
    .event-img img {
        position: static;
        max-width: 100%;
        height: auto;
        transform: none;
    }
    .site-event h2.text-center {
        padding: 20px 0 10px;
    }
    .gallery-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-content > * {
        height: 260px;
    }
    .halves {
        display: block;
    }
    .halves > * {
        width: auto;
    }
    .thirds {
        display: block;
    }
    .thirds > * {
        width: auto;
    }
	.uvod_text_menu > p{
		text-align: left !important;
	}
}
@media (min-width: 1085px) {
    .calendar-right a:hover {
        background-color: #f1f1f1;
    }
}

@media (max-width: 913px) {
    footer .container {
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 10px;
        text-align: center;
    }
    footer .container .footer-col:first-child {
        grid-area: 1 / span 2;
    }
    .footer-col {
        padding: 0;
    }
}

@media (max-width: 767px) {
    :root {
        --font-huge: 22px;
        --font-big: 20px;
        --font-medium: 18px;
    }
    .search-box {
        width: 380px;
    }
    .slick-slide {
        height: 235px;
    }
    .slide-img {
       /*height: 235px;*/
	   height: clamp(0px, 56.25vw, 100vh);
	   
    }
    .slick-slide img {
        height: 100%;
    }
    .slide-content > div {
        font-size: 14px;
    }
    .slide-content h1, .site-image h1 {
        font-size: 20px;
    }
    .site-slider .slick-prev, .site-slider .slick-next {
        opacity: 0;
    }
    .slider-position {
        display: none;
    }
    .slider-recommendations {
        padding: 20px 0;
    }
    .recommendation {
        margin: 0 0 30px;
    }
    .recommendation-content h3 {
        height: auto;
    }
    .recommendation-content p {
        height: auto;
    }
    .categories {
        grid-template-columns: repeat(1, 1fr);
    }
    .calendar {
        display: block;
    }
    .calendar-left {
        width: auto;
        padding-bottom: 5px;
    }
    .calendar-left a > p img {
        max-width: 100%;
        height: auto;
    }
    .calendar-right {
        display: block;
    }
    .calendar-right a {
        display: block;
    }
    .calendar-right a > p {
        height: auto;
    }
    .calendar-right a > p img {
        position: static;
        max-width: 100%;
        height: auto;
        transform: none;
    }
    .calendar-right a div p:first-child {
        font-size: 14px;
    }
    .calendar-right div h3 {
        margin: 15px 0 -15px;
    }
    .calendar-right a > div {
        padding: 10px 15px;
    }
    .events {
        grid-template-columns: repeat(1, 1fr);
    }
    .gallery-content {
        grid-template-columns: repeat(1, 1fr);
        gap: 0 15px;
        padding: 0 0 15px;
    }
    .gallery-content > * {
        height: auto;
        max-height: 400px;
    }
    .slick-dots {
        bottom: 15px;
    }
    .webs p img {
        max-height: 50px;
    }
}

@media (max-width: 555px) {
    footer .container {
        display: block;
    }
    .footer-col + .footer-col {
        padding-top: 5px;
    }
}

@media (max-width: 464px) {
    .search-box {
        width: 330px;
        padding: 10px;
    }
}

.container-not-found h1 {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-end;
    justify-content: center;
}

@media (min-width: 767px) {
	.sub-item{
		display:flex;
		gap: 30px;
	}
}

.lightbox .lb-image {
	border: none !important;
}

#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;
}

#subscriptionModal form > label:first-child > input {
	height: 50px;
	width: 270px;
	margin: 10px 0 25px;
	padding: 0 15px;
	border: 2px solid #EEF4FE;
}

.subscription-header {
	font-family: "Arial Black", Arial-BoldMT;
	font-size: 18px;
	text-transform: uppercase;
}

.blocker {
	z-index: 5;
}

#subscriptionModal {
	text-align: center !important;
}

.g-recaptcha div {
	width: 100% !important;
	height: 78px;
	margin-bottom: 16px;
	margin-top: 10px;
}


 @media (max-width: 768px) {
      table.zlfl,
      table.zlfl thead,
      table.zlfl tbody,
      table.zlfl th,
      table.zlfl td,
      table.zlfl tr {
        display: block;
      }
      table.zlfl thead {
        display: none;
      }
      table.zlfl tr {
        margin-bottom: 20px;
        background: #fff;
        padding: 10px;
        border: 1px solid #ddd;
      }
      table.zlfl td {
        position: relative;
        padding-left: 50%;
        text-align: left;
        border: none;
        border-bottom: 1px solid #eee;
		width: 100% !important;
      }
      table.zlfl td::before {
        position: absolute;
        left: 10px;
        width: 45%;
        white-space: nowrap;
        font-weight: bold;
      }
      table.zlfl td:nth-of-type(1)::before { content: "DEN"; }
      table.zlfl td:nth-of-type(2)::before { content: "ČAS"; }
      table.zlfl td:nth-of-type(3)::before { content: "FILM"; }
      table.zlfl td:nth-of-type(4)::before { content: "DABING/TITULKY"; }
	  
	  table.zlfl tr:first-of-type {
    	display: none;
  	  }
    }

