/* Remove meta data */
.entry-meta .byline, .entry-meta .cat-links { display: none; }
.entry-meta .posted-on { display: none; }

/* podtrhavani nazvu orenasek v programu pri hoveru */
.lgx-schedule h3 a {
	text-decoration:underline!important;
	cursor: hand!important;
}

/* zeleny trojuhelnik pod daty v programu */
.lgx-schedule .lgx-tab .nav-pills .active:before {
    left: -0%!important;
    transform: scaleX(0.9)!important;
}

/* tooltip u nazvu prdnasek v programu */
.lgx-schedule h3 a:hover:after {
    content: "ⓘ bližší info o akci";
    position: absolute;
    background: white;
    color: #666;
  top: -45px;
  left: 20px;
  width: 200px;
	height: 50px!important;
	line-height: 15px!important;
  font-size: 15px;
	padding: 20px;
	border-radius: 10px;
}

/* podtrhavani odkazu v ramci clanku */
.lgx-blog a:hover, .lgx-blog-list a:hover {
	text-decoration: underline!important;
}

/* odstraneni velkych uvozovek */
blockquote::before {content: ""!important;}
blockquote::after {content: "";!important;}

/* zoom efekt odkazu dotazniku*/
.zoom-in-zoom-out {
margin: 20px auto 20px auto;
    animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.05, 1.05);
  }
  100% {
    transform: scale(1, 1);
  }
}