/*
Theme Name: vamed-nemocnice
Author: Tomáš Pilát
Author URI: http://www.archa.cz
Description: zákaznická šablona
Version: 1.1
License: GNU General Public License
License URI: license.txt
*/

/* ------------------------- RESET ------------------------------ */
body, div, h1, h2, h3, h4, p, ul, li, form { margin:0; padding:0; }
div, h1, h2, h3, h4, p, li, th, td, input, select, option, textarea { font: inherit; }
a img { border:none; }

html {
	scroll-behavior: smooth;
}
@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

/* ------------------------- BASIC ------------------------------ */
:root {
  --tyrkys: #009fe3;
	--modra: #006db8;
	--seda: #58585a;
	--svseda: #e6e6e6;
	--svtyrkys: #d2ecff;
  --basic-font: 'Figtree', sans-serif;
	--heavy-font: 'Figtree', sans-serif;
	--black-font: 'Figtree', sans-serif;
}
:root #ru {
	--basic-font: 'Open Sans', sans-serif;
  --heavy-font: 'Open Sans', sans-serif;
  --black-font: 'Open Sans', sans-serif;
}
html {
  /*overflow: -moz-scrollbars-vertical;
  overflow-y: scroll;*/
}
body {
  font-family:sans-serif;		/* fallback font for old browsers */
	font-family:var(--basic-font);
  font-size:17px;
  line-height: 1.5;
  color:var(--seda);
  margin:0 auto;
  text-align:center;
}
h1, h2, h3, h4 {
  font-family:var(--heavy-font);
  font-weight: bold;
  line-height:1.1em;
}
h1, .h1 {
	color:#333;
	font-size:38px;
  margin:1em 0;
}
h2 {
	font-size:32px;
  margin: 1.5em 0 1em 0;
  text-align: center;
}
#de h2 {
  font-size: 30px;
}
h3 {
	font-size: 23px;
	margin:2em 0 1em 0;
}
#de h3 {
  font-size: 21px;
}
h4 {
	font-size: 19px;
  margin:0.5em 0;
}
p {
  margin-bottom:1em;
}
a, a:visited, a:hover {
	color: var(--modra);
}
a,  a:visited { text-decoration:none; }
a:hover { text-decoration:underline; }
.fr { float:right; }
.fl { float:left; }
.cb { clear:both; }
.left { text-align:left; }
.center { text-align:center; }
.right { text-align:right; }
.bold { font-weight:700; }

.cols2 {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  -moz-column-gap: 2em;
  -webkit-column-gap: 2em;
  column-gap: 2em;
	text-align:left;
}
.cols3 {
  -webkit-columns: 3;
  -moz-columns: 3;
  columns: 3;
  -moz-column-gap: 2em;
  -webkit-column-gap: 2em;
  column-gap: 2em;
	text-align:left;
}
span.break {
	display:block;
}
.container {
  width:1200px;
  margin:0px auto;
  text-align:left;
  padding:0 20px;
	box-sizing:border-box;
  overflow:auto;
}
ul, ol {
  margin-top:0;
}
/* ------------------------ WORDPRESS BASIC ---------------------------- */
.my-logo div{
  width: 32px;
  height: 32px;
  background-image: url("./assets/css/custom-logo.png") no-repeat;
}
a.post-edit-link, a.post-edit-link:visited {
  float:right;
  text-transform:uppercase;
}


/* ------------------------- TOP LISTA + SEARCH ------------------------------ */
header {
  overflow:auto;
  height:177px;
}
#toplista {
  background:var(--svseda);
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
#toplista .container {
  width:100%;
  padding:0 50px;
  box-sizing: border-box;
}
.logged-in #toplista {  /* pro prihlaseneho (pri ladeni) posun listu az pod admin listu Wordpressu */
  top: 32px;
}
#navbar {
  overflow: hidden;
  /* posuň pro testování fixed lištu až pod admin lištu WP (aby bylo menu při ladění vidět) */
  /*margin-top: 32px;*/
}
#navbar a:hover{
	background-color: #fff;
}
#headermenu li.menu-item-has-children a:hover {
  cursor: default;
}
#headermenu li .sub-menu li a:hover {
  cursor: pointer;
}
#navbar a.active,
#navbar a[aria-haspopup="true"]:focus {
  background-color: #fff;
  color:var(--tyrkys);
}
#navbar a.active ~ .sub-menu {
	display:none;
}
#navbar > a {
  float:right;
  font-family:var(--heavy-font);
  font-size: 16px;
  text-align: center;
  padding: 0px 15px;
  line-height: 40px;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  color: #999;
  border-right: 1px solid #ccc;
  line-height: 40px;
}
#showsearch img {
	padding-left:8px;
}
#togglesearch{
  background:#fff;
	border-bottom:1px solid var(--svseda);
  position: absolute;
  top: 40px;
  right: 0;
  width: 100%;
  height: 55px;
  line-height: 55px;
  display: none;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 15px 20px -20px;
}
#togglesearch input[type="text"]{
  width: 150px;
  padding: 0 10px 0 40px;
  border: 1px solid #ccc;
  outline: none;
  color: #666;
  line-height: 30px;
	background:url('assets/css/menu_search.svg') 10px center no-repeat;
  background-size:20px;
}
#togglesearch button {
  background-color: var(--tyrkys);
  color: #fff;
  text-transform: uppercase;
  font-family:var(--heavy-font);
  line-height: 40px;
  padding: 0;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid var(--tyrkys);
  padding: 0 10px;
  font-size: 1rem;
  line-height: 30px;
  border-radius: .25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/* ------------------------- TOP LISTA MENU ------------------------------ */
#headermenu {
  float:right;
  width: auto;
  list-style-type:none;
  text-align:left;
  overflow:hidden;
}
#headermenu li {
	float:left;
}
#headermenu li a {
  font-family:var(--heavy-font);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  padding: 0px 15px;
  line-height: 40px;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  color: #666;
  border-right: 1px solid #ccc;
  line-height: 40px;
}
#headermenu li.current-menu-item a, #headermenu li.current-menu-item a:visited,
#headermenu li.current-post-ancestor a, #headermenu li.current-post-ancestor a:visited {
  color:var(--tyrkys);
}
#headermenu li .sub-menu {
  position:absolute;
	list-style-type:none;
  display: none;
  background-color: #fff;
  min-width: 160px;
  padding: 5px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
#headermenu li .sub-menu li {
  float:none;
	position:relative;
}
#headermenu li .sub-menu li a:hover {
	background:var(--svtyrkys);
}
#headermenu li .sub-menu li a, #headermenu li .sub-menu li a:visited {
  text-align: left;
  font-family:var(--basic-font);
  font-weight:normal;
  text-transform: none;
  color:var(--seda);
  float: none;
  padding: 0 15px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-right:none;
  border-bottom:1px solid #eee;
}
#headermenu li .sub-menu li:last-child a, #headermenu li .sub-menu li:last-child a:visited {
  border-bottom:none;
}
#headermenu li .sub-menu li a.active {
	color:var(--tyrkys);
  font-weight: bold;
}
#headermenu li .sub-menu li a::before {
  display: inline-block;
  content: '';
  background-image: url('assets/css/menu_this.svg');
  background-size: 14px 14px;
  height: 14px;
  width: 14px;
  margin-right:3px;
}
#headermenu .menu-item-has-children a[aria-haspopup="true"]::after {
  display: inline-block;
  content: '';
  background-image: url('assets/css/menu_show.svg');
  background-size: 16px 16px;
  height: 16px;
  width: 16px;
  margin-left: 8px;
  transition: 300ms ease all;
  transform: rotate(0deg);
}
#headermenu li:hover > .sub-menu,
#headermenu li:focus-within > .sub-menu,
#headermenu li ul:hover,
#headermenu li ul:focus {
   display: block;
}

/* menu 3. urovne */
#headermenu li .sub-menu li a:not([href]) {
	cursor:default;
	pointer-events:none;
}
#headermenu li .sub-menu li a:not([href])::before {
  background-image: none;
}
#headermenu li .sub-menu li .sub-menu {
	position: absolute;
  left: 100%;
  top: 0;
  width: 300px;
}


/* ------------------------- TOP LIŠTA (MAIN-MENU) ------------------------------ */
#top {
	margin:40px 0 0 0;
  padding:0;
  position: fixed;
	left: 0;
	width: 100%;
	background: white;
	z-index:99;
}
#socials {
	float:right;
}
#socials a, #socials a:visited {
	margin-left:10px;
}
#socials img {
	width:25px;
	height:auto;
}
.social img {
	width:20px;
	height:20px;
  vertical-align: middle;
  margin-bottom: 3px;
}
#topmenu li.social a::before {
	display:none;
}
#top nav {
  padding-top:45px;
  transition: all .3s ease;
}
#top.sticky nav {
  padding-top: 0;
  transition: all .3s ease;
  border-bottom: 1px solid var(--tyrkys);
}
.logo_wrapper {
	position: static;
	float: left;
	z-index: 999;
}
.logo {
  width: 100%;
	display: block;
	position: relative;
  margin-left: 1em;
}
.logo img {
  height:55px;
  margin-top:0;
  transition: all .3s ease;
}
#top.sticky .logo img {
  height:35px;
  margin-top:22px;
  transition: all .3s ease;
}

nav .container {
  width:100%;
  padding:0 50px;
	margin:0px auto;
  text-align:left;
	box-sizing:border-box;
}
#topmenu {
  float:right;
  overflow:hidden;
}
#topmenu li {
	float:left;
  margin: 12px 0 0 0;
  list-style-type: none;
}
#topmenu li.mobile {
	display:none;
}
#topmenu li a, #topmenu li a:visited {
  font-family:var(--black-font);
	font-size:16px;
	display:block;
  height: 80px;
  line-height: 80px;
  padding: 0 13px 0 0;
  position: relative;
  color: var(--seda);
  text-transform: uppercase;
}
#topmenu li a:hover {
  text-decoration:none;
  color:var(--modra);
}
#topmenu li.menu-item-has-children,
#topmenu li > a {
	font-weight:bold;
}
#topmenu li.menu-item-has-children a:hover {
	cursor:default;
}
#topmenu li a::before {
  display: inline-block;
  content: '';
  -webkit-border-radius:4px;
  border-radius:4px;
  height:8px;
  width:8px;
  margin:0 13px 2px 0;
  background-color: var(--svseda);
}
#topmenu li:first-child a::before {
	display:none;
}
#topmenu li:hover a::after {
  background:var(--modra);
}
#topmenu li.current-menu-item a, #topmenu li.current-menu-item a:visited,
#topmenu li.current-post-ancestor a, #topmenu li.current-post-ancestor a:visited {
  color:var(--tyrkys);
}
#topmenu li .sub-menu {
  position: absolute;
	display: none;
  border-top: 3px solid var(--tyrkys);
  background: #fff;
  min-width: 150px;
	box-sizing:border-box;
  padding: 5px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 9999;
}
#topmenu li#menu-item-480 .sub-menu {
  min-width: 190px;
	column-count:2;
}
#topmenu li#menu-item-480 .sub-menu li:hover .sub-menu {
	display: block;
  column-count: 1;
  top: calc(100% - 50px);
	left:95%;
  width:100px;
}
#topmenu li .sub-menu li a:not([href])::before {
  background-image: none;
}
#topmenu li .sub-menu li {
  float:none;
	margin-top:0;
}
#topmenu li .sub-menu li a, #topmenu li .sub-menu li a:visited {
  height: 40px;
  line-height: 40px;
  font-family:var(--basic-font);
  font-weight: normal;
  text-transform: none;
  color: var(--seda);
  float: none;
  padding:0 15px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #eee;
  break-inside:avoid; /* zabrání zalamování obsahu prvku do více sloupců*/
}
#topmenu li .sub-menu li.current-menu-item a, #topmenu li .sub-menu li.current-menu-item a:visited,
#headermenu li .sub-menu li.current-menu-item a, #headermenu li .sub-menu li.current-menu-item a:visited {
	color: var(--modra);
  font-weight: bold;
}
#topmenu li .sub-menu li:last-child a, #topmenu li .sub-menu li:last-child a:visited {
  border-bottom:none;
}
#topmenu li#menu-item-66 .sub-menu li:nth-of-type(9) a, #topmenu li#menu-item-66 .sub-menu li:nth-of-type(9) a:visited {
	border-bottom:none;
}
#topmenu li .sub-menu li a::before {
  display: inline-block;
  content: '';
	background-color:unset;
  background-image: url('assets/css/menu_this.svg');
  background-size: 14px 14px;
  height: 14px;
  width: 14px;
  margin-right:3px;
  margin-bottom: 0;
}
#topmenu li:hover > .sub-menu,
#topmenu li:focus-within > .sub-menu,
#topmenu li ul:hover,
#topmenu li ul:focus {
   display: block;
}
#topmenu li .sub-menu li a:hover {
  background: var(--svtyrkys);
  cursor: pointer;
}
#closebtn,
#topmenu li.icon {
  display: none;
}
#fullmenu,
#socialmenu {
	display:none;
}
#menu_icon {
	display:none;
}
/* menu 3. urovne */
#topmenu li .sub-menu li a:not([href]) {
	cursor:default;
	pointer-events:none;
}
#topmenu li .sub-menu li a:not([href])::before {
  background-image: none;
}
#topmenu li .sub-menu li .sub-menu {
	position: absolute;
  left: 100%;
  top: 0;
  width: 300px;
}
/* korekce mm menu */
.mm-page {
	min-height:initial !important;
}
.mm-btn--next::after {
  right: 23px !important; /* osetreni inset-inline-end na starsich android browserech */
}
.mm-listitem--selected a, .mm-listitem--selected a:visited,
.mm_selected_group {
	color:var(--tyrkys) !important;
  font-weight: bold;
}


/* ------------------------- HOMEPAGE ------------------------------ */
#info_popup {
  position: relative;
  margin: 0 auto;
  background:#fff;
  border:3px solid var(--tyrkys);
  padding: 2em;
  width: 600px;
  vertical-align: middle;
  z-index: 99999;
  text-align:center;
}
#info_popup img {
  margin-top:1em;
}
#info_popup h3 {
  color:var(--tyrkys);
}
#uvod-boxy {
	display:flex;
  justify-content: center;
	align-content:center;
	align-items:flex-start;
  margin-bottom: 2em;
}
#uvod-boxy .wp-block-group {
	width:20%;
	padding-left:10px;
}
#uvod-boxy .wp-block-group:first-of-type {
	padding-left:0;
}
/*
#uvod-boxy .wp-block-group:nth-child(1) h3 {
	word-spacing: 100vw;
}
*/
#uvod-boxy .wp-block-group h3 {
  display:block;
  height:60px;
  margin-left:30px;
  margin-bottom:0.5em;
}
#uvod-boxy .wp-block-group h3::before {
  display: inline-block;
  content: '';
  background-color: unset;
  background-image: url('assets/css/ok.svg');
  background-size: 20px 20px;
  height: 20px;
  width: 20px;
  margin:0 10px 0 -30px;
}
#uvod-boxy .wp-block-group p {
  margin-left:27px;
}
#videos {
	margin-bottom:3em;
}
#videos iframe {
	width: 100%;	/* sirka aktualniho containeru */
	height: 674px; /* sirka videa 715px ku vysce 402px, vztazeno k nove sirce 1200px */
}
#counters {
  margin: 1em 0;
}
.circle {
  width: 230px;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-align: center;
  line-height: 1.2;
}
.circle canvas {
  vertical-align: top;
}
.circle strong {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  text-align:center;
  line-height:150px;
  font-size: 36px;
  color: var(--tyrkys);
}
.circle span {
  display: block;
  color: #666;
  margin: 12px 0;
  padding:0 20px;
  box-sizing:border-box;
}
#buttons,
.wp-block-buttons {
  width:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin:2em 0;
}
#buttons:empty{
	display:none;
}
#buttons .wp-block-button,
.wp-block-buttons .wp-block-button {
  margin: 0 10px 20px 10px !important;
}
#buttons .wp-block-button__link,
#adresa .wp-block-button__link,
.wp-block-buttons .wp-block-button__link {
  color: #fff;
  font-size:16px;
  text-transform:uppercase;
  border:1px solid transparent;
  background:var(--modra);
  padding:7px 15px 5px 15px;
  border-radius: 5px;
  white-space: nowrap;
	width:auto;
}
#buttons .wp-block-button__link:hover,
#buttons .wp-block-button__link.active,
#adresa .wp-block-button__link:hover,
#adresa .wp-block-button__link.active,
.wp-block-buttons .wp-block-button__link:hover,
.wp-block-buttons .wp-block-button__link.active {
  text-decoration:none;
  background:var(--modra);
}
.wp-block-buttons .palackeho .wp-block-button__link {
	background:rgba(0, 151, 167, 0.8);
}
.wp-block-buttons .palackeho .wp-block-button__link:hover {
	background:rgba(0, 151, 167, 1);
}
#buttons .wp-block-button__nolink,
#adresa .wp-block-button__nolink,
.wp-block-buttons .wp-block-button.telefon .wp-block-button__link {
  display: inline-block;
	color: var(--modra);
  font-size:16px;
  text-transform:uppercase;
  border:1px solid var(--modra);
	background:none;
  padding:7px 15px 5px 15px;
  border-radius: 5px;
}
#buttons .wp-block-button__nolink:hover,
#adresa .wp-block-button__nolink:hover,
.wp-block-buttons .wp-block-button.telefon .wp-block-button__link:hover {
  text-decoration:none;
  background:var(--modra);
  border:1px solid var(--modra);
	color:#fff;
}
#news {
  padding-top:4em;
}
#news h2 {
  margin-top:0;
}
#content {
	overflow:auto;
}
section {
  clear:both;
  overflow:hidden;
}


/* ------------------------- SLIDER UVODNI (FULLSIZE) ------------------------------ */
#home_slider .owl_container {
  width:100%;
	margin: 0 auto 30px auto;
  position:relative;
}
#home_slider .owl-carousel .owl-item {
	max-height: 480px;
  height: 480px;
	background:var(--svseda);
}
#home_slider .owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
#home_slider .owl-overlay {
  transform: skewX(-35deg) translate(-240px,0);
  width: 400px;
  height: 100%;
  background: rgba(0,109,184,.85);
  position: absolute;
  right: 3%;
  top: 0;
  z-index: 1;
  box-sizing: border-box;
}
#home_slider .owl-overlay h1 {
  transform: skewX(0deg);
  text-align: left;
  color: white;
  font-size: 32px;
  padding: 10px 40px 0 70px;
  margin-bottom:0.7em;
}
#home_slider .owl-overlay h1 span {
  transform: skewX(35deg);
  /*display:inline-block;*/
  display:block;
}
#home_slider .owl-caption {
  transform: skewX(0);
  display: inline-block;
  width: 100%;
  text-align:left;
  margin-bottom:0;
}
#home_slider .owl-caption a {
  transform: skewX(35deg);
  display: inline-block;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  padding:10px 40px 10px 70px;
  font-size: 30px;
  line-height: 1.1;
}
#home_slider .owl-caption.active {
  background:#fff;
}
#home_slider .owl-caption.active a, #home_slider .owl-caption.active a:visited {
  color:var(--modra);
  text-decoration:none;
}


/* ------------------------- SLIDER ZPRAV (po jedne) ------------------------------ */
#zpravy .slide {
  position: relative;
  height:567px;
}
#zpravy .slide::after {
  content: "";
  width:calc(60% + 28px);
  height:40px;
  position: absolute;
  bottom: 0;
  right: 40%;
  border-style: solid;
  border-width: 0 28px 40px 0;
  border-color: transparent transparent #fff transparent;
  transform: translate(28px,0);
  z-index: 1;
}
#zpravy .slide img {
  position: absolute;
  height:100%;
}
#zpravy .text_overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: rgba(255,255,255,0.9);
  padding: 50px 40px 30px 40px;
  box-sizing: border-box;
}
#zpravy .text_overlay h4 {
  font-size: 24px;
  margin-bottom: 1em;
}
#zpravy .text_overlay p {
  color:var(--seda);
  line-height:1.5em;
}
#zpravy .text_overlay a.vice, #zpravy .text_overlay a.vice:visited {
  display:inline-block;
  margin-top:1em;
  font-size: 16px;
  text-transform: uppercase;
  padding:7px 15px 5px 15px;
  border:1px solid var(--tyrkys);
  border-radius: 5px;
}
#zpravy .text_overlay a.vice:hover {
  text-decoration: none;
  background: var(--tyrkys);
  color:#fff;
}
#zpravy .owl-dots {
  position: absolute;
  bottom: 0;
  right: 41%;
}

#zpravy h2,
#news h2,
#reference h2 {
  position: relative;
}
#zpravy a.vse, #zpravy a.vse:visited,
#news a.vse, #news a.vse:visited,
#reference a.vse, #reference a.vse:visited {
  float: right;
}
.nav-links {
	text-align:center;
}
.nav-links .page-numbers {
	margin:0 7px;
}
#news .owl-theme .owl-nav,
#reference .owl-theme .owl-nav {
  z-index: 999;
}
/*#news .owl-carousel .owl-nav.disabled,
#news .owl-carousel .owl-dots.disabled,
#reference .owl-carousel .owl-nav.disabled,
#reference .owl-carousel .owl-dots.disabled {
  display:block;
}*/
#news .owl-item .img_cont {
	/*width:260px;
	height:175px;*/
  width:270px;
	height:270px;
  overflow: hidden;
}
#news .owl-item .img_cont img {
  transition: transform .3s ease;
}
#news .owl-item:hover .img_cont img {
  transform: scale(1.05);
}
#news .owl-theme .owl-nav [class*="owl-"],
#reference .owl-theme .owl-nav [class*="owl-"] {
  margin-top:0;
}
#news .owl-nav button,
#reference .owl-nav button {
	width:25px;
	height:25px;
}
#news .owl-carousel .owl-nav button.owl-prev span, #news .owl-carousel .owl-nav button.owl-next span,
#reference .owl-carousel .owl-nav button.owl-prev span, #reference .owl-carousel .owl-nav button.owl-next span {
  display:none;
}
#news .owl-nav .owl-prev,
#reference .owl-nav .owl-prev {
	background:url('assets/css/slider_prev.svg') center left no-repeat;
  background-size:30px;
}
#news .owl-nav .owl-next,
#reference .owl-nav .owl-next {
	background:url('assets/css/slider_next.svg') center left no-repeat;
  background-size:30px;
}
#news .owl-item .slide a {
  text-decoration: underline;
}
#news .owl-item h3 {
  margin: 1em 0 0.5em 0;
}
#news .owl-item p {
  line-height:1.3em;
}
#news .owl-item p.datum {
  line-height:1.5em;
  color:var(--modra);
}
#news .owl-item p.datum::before {
  content:'';
  display:inline-block;
  width:20px;
  height:20px;
  background:url('assets/css/date.svg') center left no-repeat;
  background-size:20px;
  vertical-align:top;
  margin-right: 5px;
}
#reference .owl-item h3 {
  font-size: 22px;
  margin: 1em 0 0.5em 0;
}
#reference .owl-item .datum {
	color:var(--tyrkys);
	font-weight:bold;
}
#reference .owl-item a{
	margin-left:10px;
}
#reference .owl-item p {
  line-height:1.3em;
}
.single #reference .owl-carousel .owl-stage.owl-centered {
	/*
	width:100% !important;
	display: flex !important;
  flex-direction: row;
  justify-content: center;
	*/
  margin: auto;
}


/* ------------------------- SINGLE AMBULANCE ------------------------------ */
.single-ambulance h2 {
  margin: 2em 0 1em 0;
}
.single #content .container h1 {
  text-align:center;
}
.single #content .container .sec_header h1 {
  margin:0 0 1em 0;
  font-size: 34px;
  text-align:right;
  color:var(--seda);
}
.image_wrapper {
  width:100%;
  /*height: 336px;*/
  /*height:384px;*/
  height:20vw;
  overflow: hidden;
  position: relative;
  margin-bottom: 50px;
  background: var(--svseda);
}
.category-aktuality .image_wrapper, /* miniaturni zahlavi pro stranky bez titulni fotky */
.single-from-aktuality .image_wrapper,
.category-zpravy-z-nemocnice .image_wrapper,
.single-from-zpravy-z-nemocnice .image_wrapper,
.post-type-archive-reference .image_wrapper,
.single-reference .image_wrapper,
.post-type-archive-dokument .image_wrapper,
.single-dokument .image_wrapper {
  height:200px;
	background:var(--tyrkys);
}
.image_wrapper img {
  display:block;
  width:100%;
  /*height:336px;*/
  /*height:384px;*/
  height:20vw;
}
.image_text_wrapper {
  transform: skewX(-35deg) translate(-240px,0);
  width: 400px;
  height: 100%;
  background: rgba(0,109,184,.85);
  position: absolute;
  right: 3%;
  top: 0;
  z-index: 1;
  box-sizing: border-box;
}
::before, ::after {
  box-sizing: border-box;
}
.image_text_wrapper::before,
.image_text_wrapper::after {
  content: " ";
  position: absolute;
  z-index: 2;
  display: inline-block;
  width: 100%;
  height: 50px;
  background: none;
  height: 0;
  width: 100%;
  border-style: solid;
  width: 500%;
  min-width: 4000px;
  opacity: 1;
}
.image_text_wrapper::before {
  top: 0;
  right: 100%;
  border-width: 40px 29px 0 0;
  border-color: #fff transparent transparent transparent;
  transform: skewX(35deg) translate(15px,0);
}
.image_text_wrapper::after {
  bottom: -1px;
  left: 400px;
  border-width: 0 0 40px 28px;
  border-color: transparent transparent #fff transparent;
  transform: skewX(35deg) translate(-14px,0);
}
.image_text_wrapper h1 {
  display: inline-block;
  position: absolute;
  bottom:0;
  left:0;
  padding:0 40px 0 45px;
	box-sizing:border-box;
  text-align: left !important;
  color: #fff;
  margin:50px 0;
  font-size: 34px;
  line-height: 1.1;
  transform: skewX(0deg);
}
.single-from-zpravy-z-nemocnice .image_text_wrapper h1,
.single-from-aktuality .image_text_wrapper h1 {
  margin:35px 0;
}
.image_text_wrapper h1 span {
  transform: skewX(35deg);
  display: inline-block;
}
.sec_content {
  text-align:left;
  margin-top: 2em;
}
.post-template-single_centered #content .container {
  text-align:center;
}
.sec_content h2 {
  clear:both;
  width:400px;
  float:left;
  padding:0 30px 15px 0;
  box-sizing:border-box;
  text-align:right;
  margin:0;
  font-family:var(--heavy-font);
  font-size: 26px;
  line-height: 1.1em;
	color:var(--tyrkys);
}
#de .sec_content h2 {
  font-size: 24px;
}
.sec_content > :not(h2) {
  margin-left:400px;
  margin-bottom: 1em;
  width:calc(100% - 400px);
  padding:0 15px;
  box-sizing:border-box;
}
.sec_content > :not(h2) p:first-child() {
  padding:15px 25px;
}
.sec_content a.obr {
  display:block;
  margin-bottom: 1em;
}
.sec_content > :not(h2).panel {
  padding:15px 25px;
}
.sec_content h4 {
	line-height: 1.3;
}
.sec_content .flip.last {
  margin-bottom:30px;
}
.sec_content .wp-block-image {
  display:block;
}
.sec_content .wp-block-image img {
  height:auto;
}
.sec_content ul,
.sec_content ol {
  margin-bottom:2em;
}
.sec_content ul li,
.sec_content ol li {
  margin:0 0 0.55em 2em;
}
.page-id-1947 .sec_content h2::before,
.page-id-1952 .sec_content h2::before,
.page-id-1955 .sec_content h2::before,
.page-id-1958 .sec_content h2::before {
	content:'';
	display:block;
	float:right;
  background-image: url('assets/css/menu_this.svg');
	background-size: 18px 18px;
	height: 18px;
	width: 18px;
	margin-right: -30px;
}
.blocks-gallery-grid, .wp-block-gallery {
  align-items: center;
  justify-content: center;
}
.wp-block-gallery.certifikaty .blocks-gallery-item img {  /* sjednoti velikosti obrazku bez ohledu na pocet sloupcu v galerii */
  width:100%;
	max-width:278px;
  height: auto;
}
#content .wp-block-gallery.columns-3 .blocks-gallery-item {
  max-height: 250px;
  flex-grow: initial;
}
.tab {
  overflow: hidden;
}
.tab button {
  background-color: inherit;
  float: left;
  width:33.33%;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 17px 25px;
  transition: 0.3s;
  font-family: inherit;
  font-size: 18px;
	text-transform:uppercase;
	margin:0;
	color:var(--modra);
}
.tab button:hover {
  background-color: var(--tyrkys);
	color:#fff;
}
.tab button.active {
  background-color: #f6f6f6;
  color:#000;
}
.tabcontent {
  display: none;
  width:100%;
  margin:0 auto 2em auto;
  text-align:center;
	background:#f6f6f6;
	border: 1px solid var(--tyrkys);
  animation: fadeEffect 1s;
  padding:25px;
	box-sizing:border-box;
}
#mapa.tabcontent {
	padding:0;
}
#adresa.tabcontent,
#umisteni.tabcontent,
#dotaz.tabcontent {
	width:520px;
}
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}
.zavreno {
  margin: 0 auto 1.5em auto;
  width: 50%;
  border: 1px solid var(--tyrkys);
  padding: 20px 30px;
  color: var(--tyrkys);
  font-size: 20px;
  text-align:center;
}
.zavreno div {
  text-transform:uppercase;
  font-weight: bold;
  font-size:1.2em;
}
.single-ambulance .zavreno h2 {
  margin-top:0;
}
.charakteristika .tlf {
  font-size:21px;
  font-weight:bold;
}
.charakteristika .tlf img {
  vertical-align: middle;
  width:21px;
  height: auto;
  margin-right:3px;
}
.charakteristika iframe {
  width:100%;
}
.objednavani {
	text-align:center;
}
.flip {
  display:inline-block;
  color:var(--tyrkys);
  padding:10px 10px 10px 50px;
}
.flip:hover {
  text-decoration:none;
  color:var(--modra);
	cursor:pointer;
}
.flip::before {
  content:'';
  display:inline-block;
  background-image: url('assets/css/menu_show.svg');
  background-image: url('assets/css/plus.svg');
  background-size: 16px 16px;
  height: 16px;
  width: 16px;
  margin:0 10px 0 -26px;
}
.flip.highlight {
	color:var(--modra);
}
.flip.highlight::before {
  background-image: url('assets/css/menu_hide.svg');
  background-image: url('assets/css/minus.svg');
}
.panel {
  display: none;
	width:800px;
  padding: 0 0 15px 0;
	box-sizing: border-box;
}
h3.flip {
  display: block;
  margin-bottom:0;
  cursor:pointer;
  font-size: 20px;
	padding: 10px 0;
	margin-top:0;
  text-align:center;
}
h3.flip:hover {
	color:var(--modra);
}
h3.flip_uzky {
  padding: 10px 280px 10px 320px;
  text-align:left;
}
.vykony {
  width:800px;
  margin:1em auto;
  text-align:left;
}
.obsah .vykony ul {
  padding:0 20px 10px 40px;
}
.sec_content .flip {
  margin-top: 0;
	padding-left:25px;
}
.sec_content .panel {
	width:100%;
}
.page-id-1403 .sec_content .flip {
  width: 100%;
}

#vykony > .wp-block-group__inner-container {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: center;*/
  margin:0;
  padding-left: 3em;
  text-align: left;
}
#vykony > .wp-block-group__inner-container > .wp-block-group {
  width: 33.3%;
  margin: 0 0 0.5em 0 !important;
  padding-right: 3em;
}
#vykony .wp-block-group h3.flip {
  text-align: left;
}
#vykony .wp-block-group .panel {
	width:initial;
  max-height: 300px;
  overflow: auto;
  padding-right: 10px;
}
#vykony .wp-block-group .panel li {
	margin-left:1em;
}
.single-ambulance .wp-block-embed,
.single-luzkove .wp-block-embed {
  margin: 2em auto !important;
  width: 800px;
  text-align:center;
}
.wp-block-gallery.columns-3 .blocks-gallery-item {
  overflow: hidden;
  flex-grow: initial; /* mene nez 3 fotky se rovnaji doleva */
}
.obsah .wp-block-group.kolecka {
  margin: 1.5em auto;
  /*text-align: left;*/
	width: 95%;
	padding-left: 0;
}
.obsah .wp-block-group.kolecka .wp-block-file {
	display: inline-block;
	margin-right: 1.5em;
}
.pojistovny {
  margin-top: 2em;
	text-align:center;
}
.pojistovny h4 {
  margin:2em 0;
}
.lekari {
  text-align:center;
}
.lekari h2 {
	clear:both;
	display:blok;
}
.lekar {
  display:inline-block;
  vertical-align: top;
  margin:0 20px 40px 20px;
  width:calc(50% - 40px);
  min-width: 540px;
  padding:20px;
  box-sizing: border-box;
	height:230px;
	overflow:hidden;
  background: var(--svseda);
}
.lekar:nth-child(odd) {
	clear:both;
}
.lekar:hover {
	background:var(--svtyrkys);
}
.lekar a.obr,
.lekar a.no_obr {
  float:left;
	display:block;
}
.lekar a.obr img,
.lekar a.no_obr img {
  clip-path:circle(97px at 97px 97px); /* shora se kruh dotyka okraje fotky, aby hlava byla uprostred vyrezu */
}
.lekar .text_lekare {
  float:left;
	text-align:left;
  width: 270px;
  margin-left:30px;
  padding-top:30px;
}
.lekar .text_lekare p {
	margin-bottom:0;
}
.mini .lekar {
  padding: 20px 20px 10px 20px;
  height: auto;
}
.mini .lekar a.obr,
.mini .lekar a.no_obr {
  width: 60px;
	height:70px;
}
.mini .lekar a.obr img,
.mini .lekar a.no_obr img {
  clip-path: circle(30px at 30px 30px);
  width: 100%;
  height: 70px;
}
.mini .lekar .text_lekare {
  padding-top:0;
}
.mini .lekar .text_lekare h4 {
  margin: 0.5em 0;
}
body:not(#cs) .lekari {
	margin-top:3em;
}
body:not(#cs) .sec_content .lekari h2 {
  width: 100%;
	padding: 0 0 30px 0;
	text-align: left;
}
body:not(#cs) .sec_content .lekari .lekar {
  margin: 0 0 30px 0;
}
a.like_button, a.like_button:visited {
	display:inline-block;
	margin-right:20px;
	background:var(--tyrkys);
	color:white;
	text-transform:uppercase;
	padding:10px 15px;
  border-radius: .25rem;
}
a.like_button:hover {
	background:var(--modra);
	text-decoration:none;
}

.sec_content .wp-block-buttons {
	justify-content: flex-start;
	margin-top:0;
	margin-bottom:2em;
}

#externi {
	width:660px;
	margin:0 auto;
  background: var(--svtyrkys);
	padding:1.5em 2em;
}

/* ------------------------- CATEGORY ------------------------------ */
.category h1 {
  text-align:center;
}
.category-aktuality article {
  float:left;
  width:25%;
  box-sizing:border-box;
  padding:0 40px 40px 0;
}
.category-aktuality article:nth-child(4n+5) {
  clear:both;
}
.category-aktuality article h2 {
  margin: 0.5em 0;
  text-align: left;
  font-size: 21px;
}
.category-aktuality article p {
  line-height:1.3em;
}
#seznam { /* tabulkovy archivni vypis zprav a aktualit */
  clear:both;
  width:800px;
  margin:0 auto 2em auto;
  text-align:center;
  border-bottom: 1px solid var(--svseda);
}
#seznam tr:nth-of-type(2n+1) {
  background:#f6f6f6;
}
#seznam tr td {
  border-top: 1px solid var(--svseda);
  text-align:left;
	padding:12px 0;
}
#seznam tr td:first-child {
  text-align:right;
  width:105px;
  font-weight: bold;
  padding-left:25px;
  vertical-align: top;
}
.post-type-archive-reference #seznam tr td:first-child {
	text-align:left;
}
#seznam tr td a, #seznam tr td a:visited {
  display:block;
  font-weight: bold;
  padding:0 20px 0 37px;
  text-indent: -17px;
  line-height: 1.5em;
}
#seznam tr td a::before {
  display: inline-block;
  content: '';
  background-image: url('assets/css/menu_this.svg');
  background-size: 14px 14px;
  height: 14px;
  width: 14px;
  margin-right: 3px;
}
#seznam tr:hover {
  background: var(--svtyrkys);
}
#seznam tr:hover td a {
  text-decoration:none;
}
#nasi {
	text-align:center;
}
#nasi article {
  display:inline-block;
	width:33.33%;
	padding-right:25px;
  box-sizing: border-box;
  margin: 2.5em auto 0 auto;
	vertical-align:top;
}
#nasi article:nth-child(3n+3) {
	padding-right:0;
}
#nasi article:nth-child(3n+4) {
	clear:both;
}
#nasi article .text {
  text-align:left;
}
#nasi article .text h2 {
  text-align:left;
	margin:0.5em 0;
  font-size: 26px;
}
#nasi article .text em,
.single .sec_content p em {
  color: var(--modra);
  display: block;
  margin: 15px 0;
  font-size: 1.05em;
}
#nasi .wp-block-button__link {
  color: #fff;
  font-size:16px;
  font-style:normal;
  text-transform:uppercase;
  background:var(--tyrkys);
  padding:10px 20px 7px 20px;
  border-radius: 5px;
}
#nasi .wp-block-button__link:hover {
  text-decoration:none;
  background:var(--modra);
}
#all_oddeleni {
	display: flex;
  flex-wrap: wrap;
}
#all_oddeleni .odd {
  width: calc(33% - 2em);
  vertical-align:top;
  padding:20px 30px;
  box-sizing:border-box;
  border: 1px solid var(--tyrkys);
  margin: 1em;
}
#all_oddeleni .odd:nth-of-type(3n+4) {
  clear:both;
}
#all_oddeleni .odd h2 {
  margin:0.5em 0;
  text-align:left;
  font-size: 26px;
  line-height: 1.3em;
}
#all_oddeleni .odd .vice {
  float: right;
  line-height: 50px;
  margin-bottom:0;
}
#all_oddeleni .odd .vice::after {
  content:'';
  display:block;
  width:50px;
  height:50px;
  background-size:50px;
  float:right;
  margin:0 0 0 10px;
}
#all_oddeleni .chirurgie .vice::after,
#all_oddeleni .detska-chirurgie .vice::after { background-image:url('assets/css/oddeleni/chirurgie.svg'); }
#all_oddeleni .fyzioterapie .vice::after { background-image:url('assets/css/oddeleni/fyzioterapie.svg'); }
#all_oddeleni .laborator .vice::after { background-image:url('assets/css/oddeleni/laborator.svg'); }
#all_oddeleni .denni-stacionar .vice::after { background-image:url('assets/css/oddeleni/denni-stacionar.svg'); }
#all_oddeleni .endoskopie .vice::after { background-image:url('assets/css/oddeleni/endoskopie.svg'); }
#all_oddeleni .interna-diabetologie .vice::after { background-image:url('assets/css/oddeleni/interna.svg'); }
#all_oddeleni .kardiologie-echo .vice::after { background-image:url('assets/css/oddeleni/kardiologie.svg'); }
#all_oddeleni .mammologie .vice::after { background-image:url('assets/css/oddeleni/mammologie.svg'); }
#all_oddeleni .neurologie .vice::after { background-image:url('assets/css/oddeleni/neurologie.svg'); }
#all_oddeleni .ortopedie .vice::after { background-image:url('assets/css/oddeleni/ortopedie.svg'); }
#all_oddeleni .plicni .vice::after { background-image:url('assets/css/oddeleni/pneumologie.svg'); }
#all_oddeleni .proktologie .vice::after { background-image:url('assets/css/oddeleni/proktologie.svg'); }
#all_oddeleni .radiodiagnostika .vice::after,
#all_oddeleni .sonografie .vice::after { background-image:url('assets/css/oddeleni/rtg-sono-ct.svg'); }
#all_oddeleni .rehabilitace .vice::after { background-image:url('assets/css/oddeleni/rehabilitace.svg'); }
#all_oddeleni .urologie .vice::after { background-image:url('assets/css/oddeleni/urologie.svg'); }
#all_oddeleni .zilni .vice::after { background-image:url('assets/css/oddeleni/flebologie.svg'); }
#all_oddeleni .ocni .vice::after { background-image:url('assets/css/oddeleni/ocni.svg'); }
#all_oddeleni .psychiatrie .vice::after { background-image:url('assets/css/oddeleni/psychologie.svg'); }
#all_oddeleni .prakticky-lekar .vice::after { background-image:url('assets/css/oddeleni/prakticky-lekar.svg'); }
#all_oddeleni .hojeni-chronickych-ran .vice::after { background-image:url('assets/css/oddeleni/hojeni-ran.svg'); }

#all_oddeleni .dlouhodoba-luzkova-pece .vice::after { background-image:url('assets/css/oddeleni/odlp.svg'); }
#all_oddeleni .dlouhodoba-intenzivni-osetrovatelska-pece-diop .vice::after { background-image:url('assets/css/oddeleni/diop.svg'); }
#all_oddeleni .jednodenni-pece-na-luzku-jpl .vice::after { background-image:url('assets/css/oddeleni/nasledna-pece.svg'); }
#all_oddeleni .nasledna-intenzivni-pece-nip .vice::after { background-image:url('assets/css/oddeleni/nip.svg'); }

.archive #buttons {
	margin-top:3em;
}
.zivotopis {
  padding:30px;
  box-sizing:border-box;
}
.zivotopis h3 {
  margin-top:0;
  text-align:left;
}
.zivotopis .personalistka {
  display: block;
  float: right;
  padding: 20px 40px;
  border: 1px solid var(--tyrkys);
  margin: 0 0 2em 2em;
}
.inzeraty {
  box-sizing:border-box;
}
.inzeraty .tabcontent {
	overflow:auto;
	background:none;
	padding:0;
	border:none;
}
.inzeraty .kategorie_kariery:first-child h2 {
  margin-top:0;
  text-align:left;
}
.inzeraty article {
	width:calc(50% - 30px);
  margin:0 15px;
	text-align: left;
  background: #f6f6f6;
	padding: 15px 25px;
	box-sizing: border-box;
  display: inline-block;
	vertical-align: top;
	border: 1px solid var(--tyrkys);
}
.inzeraty article h3, 
.inzeraty article h4 {
	margin-top:1em;
}
.inzeraty article ul {
	margin-left: 2em;
}


/* ------------------------- SINGLE ------------------------------ */
.wp-block-table th,
.wp-block-table td {
	vertical-align:top;
	padding:10px 7px;
	background:white;
}
div:not(.ordinacni).wp-block-table th,
div:not(.ordinacni).wp-block-table td {
	border: 1px solid #999 !important;
}
.wp-block-table th {
  background:var(--tyrkys);
	border: 1px solid var(--tyrkys) !important;
	/*font-family: 'CloneRoundedLatn-Bd', sans-serif;
	font-size: 22px;*/
	font-weight: bold;
	color: white;
	line-height: 1.3em;
	text-transform: uppercase;
}
.obsah {
  text-align:center;
}
.obsah p {
	text-align:left;
}
.obsah p.center,
.obsah p.has-text-align-center {
  text-align: center;
}
.obsah p.zvyraznit,
.sec_content p.zvyraznit {
	color: var(--modra);
	font-weight:bold;
	font-size: 1.2em;
	margin-bottom: 1.5em;
}
.obsah p.zvyraznit a, .obsah p.zvyraznit a:visited,
.sec_content p.zvyraznit a, .sec_content p.zvyraznit a:visited {
	text-decoration:underline;
}

.obsah ul.fajfky {
  text-align: left;
  padding: 30px 40px;
  border: 1px solid var(--tyrkys);
  width: 50%;
  margin: 0 auto 2em auto;
  box-sizing:border-box;
}
.obsah ul.fajfky li {
  list-style-type:none;
  padding-left:25px;
  padding-bottom: 5px;
  line-height: 1.3;
}
.obsah ul.fajfky li:before {
  content: '';
  display: inline-block;
  width:20px;
  height:20px;
  background:url('assets/css/ok.svg') bottom center no-repeat;
  background-size:15px;
  margin-left: -25px;
  margin-right: 5px;
}
.obsah .doleva .wp-block-group__inner-container {
	width:310px;
	margin:0 auto;
	text-align:left;
}
.obsah .doleva .wp-block-group__inner-container .wp-block-file {
	padding-left: 3em;
  text-indent: -3em;
  line-height: 1em;
}
div.gallery dl.gallery-item {
  float:left;
  margin:0;
  width:33%;
  padding:15px;
  box-sizing:border-box;
}
div.gallery dl.gallery-item a, div.gallery dl.gallery-item a:visited {
  display:block;
  overflow:auto;
}
div.gallery dl.gallery-item img {
  width:100%;
  height:auto;
}
.sloupce2 {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  -moz-column-gap: 2em;
  -webkit-column-gap: 2em;
  column-gap: 2em;
	text-align:left;
  margin: 2em 0;
}
.wp-block-image {
  display: inline;  /* jinak obrazek vlozeny do sloupce2 blokuje to zalomeni do 2 sloupcu */
}
.wp-block-group.blok_hodin {
  display:inline-block;
  vertical-align:top;
  width:730px;
  margin:30px auto;
  overflow:auto;
  border:1px solid #bbb;
}
.wp-block-group.blok_hodin.ordinacni {
  border:1px solid var(--tyrkys);
}
.wp-block-group.blok_hodin .wp-block-table tr td {
	width:max-content;
	border:none;
}
.wp-block-group.blok_hodin h3 {
  font-size:22px;
  margin: 0 0 0.6em 0;
}
.wp-block-group.blok_hodin h3:first-child {
	margin:1.4em 0 0.6em 0;
}
.wp-block-group.blok_hodin.ordinacni h3 {
  color:var(--tyrkys);
  text-align:center;
}
.wp-block-group.blok_hodin .wp-block-table {
  width:90%;
  margin:0 auto;
  text-align:center;
	padding-bottom:20px;
}
.wp-block-group.blok_hodin .wp-block-table tr {
  line-height: 1.5em;
  border-top: 1px dotted #aaa;
  border-bottom: 1px dotted #aaa;
}
.wp-block-group.blok_hodin.ordinacni .wp-block-table tr {
  line-height: 1.5em;
  border-top: 1px dotted var(--modra);
  border-bottom: 1px dotted var(--modra);
}
.wp-block-group.blok_hodin.ordinacni .wp-block-table:not(first-child) tr:first-child {
  border-top: 1px solid var(--tyrkys);
}
.wp-block-group.blok_hodin .wp-block-table tr:last-child {
  border-bottom:none;
}
.wp-block-group.blok_hodin .wp-block-table tr:hover td {
	background: #f3f3f3;
}
.wp-block-group.blok_hodin.ordinacni .wp-block-table tr:hover td {
  background:var(--svtyrkys);
}
.wp-block-group.blok_hodin.ordinacni .wp-block-table tr td:nth-child(1) {
	width:150px;
	text-align:left;
	font-weight:bold;
}
.wp-block-group.blok_hodin.ordinacni .wp-block-table tr td:nth-child(2) {
	width:120px;
	text-align:center;
}
.wp-block-group.blok_hodin.ordinacni .wp-block-table tr td:nth-child(3) {
	text-align:right;
}
.wp-block-group.blok_hodin .wp-block-table td:first-child {
  padding-left:20px;
  text-align:left;
}
.wp-block-group.blok_hodin .wp-block-table td.has-text-align-center {
	text-align: center !important;
}
.sec_content .wp-block-group.blok_hodin {
  margin-left: 415px;
}
.obsah .vykon {
  display: inline-block;
  vertical-align:top;
  margin: 0 15px 30px 15px;
	width: calc(50% - 34px);
	padding: 20px 30px;
  box-sizing: border-box;
  overflow: hidden;
  border:1px solid var(--tyrkys);
  text-align:left;
}
.obsah .vykon h4 {
  color:var(--tyrkys);
}
.obsah .vykon ul {
  margin-left:30px;
}
.container .formular {
  width:500px;
  margin:0 auto;
}
.wp-block-group.upozorneni {
  display: inline-block;
  width: 730px;
  margin:30px auto;
  padding:1em;
  overflow:auto;
  background: var(--svtyrkys);
}
.wp-block-group.upozorneni h2,
.wp-block-group.upozorneni h3 {
  margin:0.5em;
}
.wp-block-group.upozorneni p {
  text-align: center;
  font-size: 17px;
}
.single .sec_content .wp-block-file {
  margin-bottom:10px;
}
#content .wp-block-file:not(.wp-element-button) a {
	font-size:initial;
}
.wp-block-file a::before, .wp-block-file a:visited::before {
  display: inline-block;
  content:'';
  background: #00aeef url('assets/css/ikona_stahnout.svg') center no-repeat;
  background-size:12px;
  color: transparent;
  width:30px;
  height:30px;
  border-radius: 50%;
  padding:0;
  margin-right: 10px;
  vertical-align: middle;
}
.wp-block-file a.wp-block-file__button, .wp-block-file a.wp-block-file__button:visited {
  display:none;
}
.blocks-gallery-grid.is-cropped .blocks-gallery-image a, .blocks-gallery-grid.is-cropped .blocks-gallery-image img, .blocks-gallery-grid.is-cropped .blocks-gallery-item a, .blocks-gallery-grid.is-cropped .blocks-gallery-item img, .wp-block-gallery.is-cropped .blocks-gallery-image a, .wp-block-gallery.is-cropped .blocks-gallery-image img, .wp-block-gallery.is-cropped .blocks-gallery-item a, .wp-block-gallery.is-cropped .blocks-gallery-item img {
  max-width: 376px; /* aby se lichy obrazek neroztahoval pres celou sirku galerie */
}
table.kontakt_tab {
  width:730px;
  border-collapse: collapse;
  margin-bottom:30px;
}
table.kontakt_tab tr {
  border-bottom:1px solid #eee;
}
table.kontakt_tab tr:hover td {
  background: var(--svtyrkys);
}
table.kontakt_tab tr td {
  text-align:left;
  padding:10px 10px 5px 20px;
  vertical-align:top;
  width:50%;
  line-height: 1.3em;
}
table.kontakt_tab tr td h4 {
  font-size: 19px;
  line-height:1em;
  margin:5px 0 0 0;
}
table.kontakt_tab tr td h4~br {
  display: contents;
}
.legenda .wp-block-column {
	text-align:left;
}
.legenda .wp-block-column p {
	margin-bottom:5px;
}
.legenda strong {
	padding:7px 10px 5px 10px;
	line-height: 2em;
	color:#fff;
  font-size: 1.2em;
  font-family:var(--heavy-font);
}
.legenda .pismenoA strong { background:#499B2D; }
.legenda .pismenoB strong { background:#FBBD00; }
.legenda .pismenoC strong { background:#007BAF; }
.legenda .pismenoD strong { background:#EC6607; }
.legenda .pismenoE strong { background:#004562; }
.legenda .pismenoF strong { background:#C00D0D; }
.legenda .pismenoG strong { background:#6F2282; }

.legenda_ikony {
	background:url('assets/css/legenda.png') 0 5px no-repeat;
}
.legenda_ikony p {
	line-height:2.62em;
  padding-left:40px;
}
.post-template-single_centered #plan {
	position:relative;
}
.post-template-single_centered #plan img,
.single-ambulance #plan img,
.single-luzkove #plan img {
  width: 100%;
	height: auto;
}
.single-ambulance #mapa .legenda,
.single-luzkove #mapa .legenda {
  padding:0 50px 30px 50px;
}
.kontaktujte_nas h2 {
	clear:both;
	text-align:left;
}
.kontaktujte_nas .wp-block-group {
	width:50%;
	float:left;
  margin-bottom: 2em;
}
.kontaktujte_nas .wp-block-group:first-child {
  padding-right: 50px;
}
.map-responsive{
  overflow:hidden;
  position:relative;
  width:100%;
  height:300px;
  margin-bottom: 2em;
}
.map-responsive iframe{
  left:0;
  top:0;
  height:100%;
  width:100%;
  position:absolute;
}

.sec_content #buttons {
  justify-content: left;
}

.pismena strong {
	background:var(--tyrkys);
	border-radius:50%;
	width:30px;
	height:30px;
	display: inline-block;
	text-align: center;
	line-height: 34px;
	color: #fff;
	margin: 5px 10px 0 0;
}

.single-ambulance #reference h2,
.single-luzkove #reference h2 {
	text-align:center;
}
.single-ambulance .owl-carousel,
.single-luzkove .owl-carousel {
  /*width: 33%;*/
  margin: 0 auto;
}

#boxy_vedle_sebe .wp-block-group__inner-container {
	display:flex;
  justify-content: center;
  gap:0 3em;
}
#boxy_vedle_sebe .wp-block-group__inner-container .wp-block-group {
	text-align:left;
}
#boxy_vedle_sebe .wp-block-group__inner-container .wp-block-group__inner-container {
	flex-direction: column;
}
#boxy_vedle_sebe h3 {
	margin-top:0;
}
#boxy_vedle_sebe ul {
	list-style-type:none;
}

/* ------------------------- generovane ORDINACNI HODINY ------------------------------ */
.ordinacni_hodiny {
  text-align: center;
}
.ordinacni_box {
  box-sizing: border-box;
	display: inline-block;
  vertical-align: top;
  width: 730px;
  margin: 30px auto;
  overflow: auto;
  border: 1px solid var(--tyrkys);
}
.ordinacni_box h3 {
  color: var(--tyrkys);
  text-align: center;
  font-size: 22px;
  margin: 1.4em 0 0.6em 0;
}
.ordinacni_box table {
  width: 90%;
  margin: 0 auto 20px auto;
  text-align: center;
  padding-bottom: 20px;
  border-collapse: collapse;
}
.ordinacni_box table tr {
  line-height: 1.5em;
  border-top: 1px solid var(--tyrkys);
  border-bottom: 1px dotted var(--modra);
}
.ordinacni_box table tr td {
	padding: .5em;
  vertical-align: top;
}
.ordinacni_box table tr.dalsiDen {
  border-top: 1px dotted var(--modra);
}
.ordinacni_box table tr:hover td {
  background:var(--svtyrkys);
}
.ordinacni_box table tr td:nth-child(1) {
	width:150px;
	text-align:left;
	font-weight:bold;
}
.ordinacni_box table tr td:nth-child(2) {
	width:120px;
	text-align:center;
}
.ordinacni_box table tr td:nth-child(3) {
	text-align:right;
}
.ordinacni_box table tr:last-child {
  border-bottom: none;
}
.ordinacni_box table tr:last-child td {
  margin-bottom:20px;
}
.ordinacni_box table tr td span {
  color:var(--modra);
}

/* ------------------------- FORM ------------------------------ */
.wpcf7-form {
  width:100%;
	box-sizing: border-box;
  padding:0;
  margin: 0 auto 2em auto;
}
.wpcf7-form p {
  text-align:left;
}
.wpcf7-form h2 {
	margin-top:0;
}
.wpcf7-form .blok {
  float:left;
  width:100%;
  box-sizing:border-box;
}
.wpcf7-form .first {
	margin-right:2%;
}
.wpcf7-form div {
  line-height:30px;
}
.wpcf7-form label {
  line-height: 30px;
}
.wpcf7-form input,
.wpcf7-form textarea {
  width:100%;
  padding:0 10px;
  box-sizing:border-box;
  line-height:1.5em;
  border:1px solid #bcbcbd;
}
.wpcf7-form input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}
.wpcf7-form textarea {
  height:150px;
  line-height: 1.3em;
  padding-top: 6px;
}
.wpcf7-form input[type="submit"]{
  margin: 0 0 10px 0;
  border:none;
  background:var(--tyrkys);
  color:white;
  text-transform:uppercase;
  line-height:1em;
	padding: 10px 15px 7px 15px;
  border-radius: .25rem;
}
.wpcf7-form input[type="submit"]:hover{
	cursor:pointer;
}
.wpcf7 .screen-reader-response {
	display:none;
}
.wpcf7-form .wpcf7-response-output {
  margin:20px 0;
  padding:0;
}
.wpcf7-form .wpcf7-response-output:empty {
	display:none;
}
.wpcf7-validation-errors,
.wpcf7-not-valid-tip {
	color:red;
}
.grecaptcha-badge { visibility: hidden !important; }

.single-from-kontakty h2.flip {
  margin:0;
	padding: 0 0 0 25px;
}
.single-from-kontakty .panel {
  width: 100%;
}
/*.single-from-kontakty ul {
	margin-left:2vw;
}*/
.single-from-kontakty .tlacitko {
  display:inline-block;
	color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  border: 1px solid transparent;
  background: var(--tyrkys);
  padding: 7px 15px 5px 15px;
  border-radius: 5px;
  white-space: nowrap;
}
.single-from-kontakty .tlacitko:hover {
  text-decoration: none;
  background: var(--modra);
}
.single-from-kontakty .flip::before {
  display: none;
}


/* ------------------------- FOOTER ------------------------------ */
footer {
	margin-top: 3em;
  padding: 30px 0 25px;
  background: #333;
  color:#999;
}
footer a, footer a:visited {
  color:var(--tyrkys);
}
footer .bloky a, footer .bloky a:visited,
footer .bloky span {
  color:var(--svseda);
}
footer_social {
	margin-bottom:20px;
}
footer_social a, footer_social a:visited {
	display: inline-block;
	margin:5px 10px 0 0;
}
footer .bloky a:hover,
footer .bloky span:hover {
	color:var(--tyrkys);
	text-decoration:none;
}
footer .bloky ul {
  margin: 0 0 1em 0;
}
footer .bloky ul li {
  list-style-type:none;
}
footer .bloky ul li a::before, footer .bloky ul li a:visited::before,
footer .bloky ul li span::before {
  display: inline-block;
  content: '';
  background-image: url('assets/css/menu_this_footer.svg');
  background-size: 14px 14px;
  height: 14px;
  width: 14px;
  margin-right: 3px;
}
footer .bloky a:hover::before,
footer .bloky span:hover::before {
  background-image: url('assets/css/menu_this_footer_blue.svg');
}
footer .bloky p a::before, footer .bloky p a:visited::before {
  display: none;
}
footer .blok {
	display:inline-block;
  vertical-align: top;
  width:33.33%;
  padding: 0 50px 0 0;
  box-sizing: border-box;
}
footer .bloky #blok1 img {
  width:35px;
  height:35px;
  opacity: 0.3;
}
footer .bloky #blok1 img:hover {
  opacity: 0.7;
}
footer .bloky #blok1 .vamed img {
  vertical-align:top;
  width: 50px;
}
footer .blok h4 {
  font-size: inherit;
  text-transform:uppercase;
  color: #ccc;
  border-bottom: 1px solid #444;
}
footer .bloky #blok3 {
  color:white;
  padding-right: 0;
}
footer .bloky #blok3 span {
	display:none;
}


/* ------------------------- HOTSPOTS ------------------------------ */
#hotspots {
  position:relative;
  width:1160px;
  height:494px;
	margin-left:0 !important;
  background-image: url('assets/css/mapa.svg');
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: center;
	padding:0;
}
#hotspots div {
  position:absolute;
  width:10px;
  height:10px;
}
#spot1 { left:47.5%; top:18%; }
#spot2 { left:37%; top:50%; }
#spot3 { left:59%; top:64%; }
#spot4 { left:38%; top:40%; }
#spot5 { left:36.8%; top:39.5%; }
#spot6 { left:37.5%; top:28.5%; }
#spot7 { left:36.4%; top:29.5%; }
#spot8 { left:38%; top:37.5%; }
#spot9 { left:38.5%; top:32%; }

#hotspots a, #hotspots a:visited {
  position: absolute;
  box-sizing: border-box;
  width:15px;
  height:15px;
  border-radius: 50%;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
  font-family: sans-serif;
  color: #fff;
}
#hotspots a::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  display: block;
  margin:0;
}
#hotspots span {
  display: block;
  position: absolute;
  top:0;
  transform: translate(-90px, -60px);
  transform-origin: bottom center;
  padding: 10px 20px;
  border-radius:15px;
  background:var(--modra);
  text-align: center;
  color:#fff;
  transition: 0.3s ease-in-out;
  opacity: 0;
  width:190px;
  height:55px;
  pointer-events: none;
  z-index:9;
  box-sizing: border-box;
}
#hotspots span.is_visible {
  opacity: 1;
}
#hotspots span:hover {
  opacity: 1;
  pointer-events: inherit;
}
#hotspots span p {
  margin-bottom:0;
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  padding:0 15px;
  box-sizing:border-box;
  font-size: 1em;
	line-height: 1em;
}
#hotspots span:after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 10px solid var(--modra);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}
#hotspots div:hover span {
  opacity: 1;
  background:var(--seda);
  transition: none;
  z-index:10;
}
#hotspots div:hover span:after {
  border-top:10px solid var(--seda);
}
#hotspots div:hover span a {
	color:#fff;
}
#hotspots span a, #hotspots span a:visited {
  position: relative;
  box-sizing: border-box;
  width:auto;
  height:auto;
  border-radius: initial;
	transition: none;
	cursor: pointer;
}
#hotspots span a::after {
	display:none;
}


/* ------------------------- COOKIES (-settings) a LISTA (-alert) ------------------------------ */
#cookies-alert {
  display: block;
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 1.5em 3em;
  z-index: 9999999;
  background-color: #333;
	color:#fff;
  border-top: 1px solid #fff;
}
#cookies-settings p {
	margin-bottom:0;
}
#cookies-alert .button,
#cookies-settings .button {
  border:none;
	text-transform:uppercase;
	display:inline-block;
}
#cookies-alert .button:hover,
#cookies-settings .button:hover {
  text-decoration:none;
}
#cookies-alert .button {
  margin: 0;
  padding: 10px 15px;
 	display: inline-block;
	color:#fff;
}
#cookies-alert .button:hover {
	color:var(--modra);
	background:#fff;
  cursor:pointer;
}
#cookies-settings .button {
  margin: 0 30px 0 0;
	padding: 0;
  font-weight: bold;
}
#cookies-settings .button:hover {
  color:var(--seda);
	cursor:pointer;
}
#cookies-settings .group h2 {
	text-align:left;
	margin:15px 0 0 0;
  font-size: 23px;
}
#cookies-settings .group p {
	padding-left:80px;
}
.buttons {
  overflow: auto;
	line-height: 3em;
	padding-left:80px;
  margin-top: 20px;
}
.switch, .switch-item {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 30px;
  margin-right:20px;
}
.switch input, .switch-item input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider, .slider-item {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--seda);
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before, .slider-item:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 5px;
  bottom: 3px;
  background-color: #fff;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider, input:checked + .slider-item {
  background-color: var(--tyrkys);
}
input:checked + .slider:before {
  -webkit-transform: translateX(25px);
  -ms-transform: translateX(25px);
  transform: translateX(25px);
}
input:checked + .slider-item:before {
  -webkit-transform: translateX(-8px);
  -ms-transform: translateX(-8px);
  transform: translateX(-8px);
}
input#cookieset_nutne:checked + .slider {  cursor: default;	}
input#cookieset_nutne:checked + .slider::before {	opacity: 0.5; /* nutne cookies */	}
.slider.round {	border-radius: 34px;	}
.slider-item.round { border-radius: 22px;	}
.slider.round:before, .slider-item.round:before {	border-radius: 50%;	}

.cookie_link:hover {
	cursor:pointer;
	text-decoration:underline;
}
#cookies-modal {
  position: fixed;
  z-index: 9999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  display: none;
	justify-content:center;
  align-items:center;
}
#cookies-modal-box {
  background-color: white;
  border: 1px solid #888;
  width: 900px;
	max-height:calc(100% - 4em);
  padding:1.5em;
	overflow-x:auto;
	position:relative;
	text-align: left;
}
#cookies-modal-box .title {
  font-size:34px;
	font-weight:bold;
	margin-bottom:0.3em;
}
#cookies-modal-box p {
  line-height: 1.2em;
}
.close-modal {
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 50px;
  font-weight: bold;
  color: #000;
}
.close-modal:hover,
.close-modal:focus {
  cursor: pointer;
}

/* ------------------------- JOURNEY ------------------------------ */
#cesta {
	margin:30px 0;
}
#cesta .groups {
	width:100%;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
#cesta .group {
	float:left;
  width:25%;
	box-sizing:border-box;
  background:#009ee0;
  color:white;
	text-align:center;
	overflow:hidden;
	padding-bottom:20px;
  flex: 1 auto;
}
#cesta h2 {
	font-size:20px;
  color:white;
  margin: 2em 0 1em 0;
}
#cesta a, #cesta a:visited {
	color:black;
	display:block;
}
#cesta .blok {
	border-collapse:collapse;
  width: 100%;
  display: -webkit-box;           /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;              /* OLD - Firefox 19- (doesn't work very well) */
  display: -ms-flexbox;           /* TWEENER - IE 10 */
  display: -webkit-flex;          /* NEW - Chrome */
  display: flex;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cesta .box {
	box-sizing:border-box;
	padding:10px 0 10px 15px;
  -webkit-box-flex: 1;      /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;         /* OLD - Firefox 19- */
  -webkit-flex: 1;          /* Chrome */
  -ms-flex: 1;              /* IE 10 */
  flex: 1;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
#cesta .box img {
	background:white;
	width:50px;
	height:50px;
	border-radius:10px;
}
#cesta .box p {
	line-height: 1.3em;
	margin-bottom:0;
}
#cesta .boxy {
	width:calc(100% - 30px);
}
#cesta .boxy:last-child {
  width:100%;
	padding-right:30px;
}
#cesta .line {
	width:30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
	box-sizing:border-box;
	vertical-align:top;
}
#cesta .line table {
	width:100%;
  height:100%;
  border-collapse:collapse;
}
#cesta .line table .top {
	height:30px;
}
#cesta .line table .top td {
	width:30px;
	vertical-align: top;
	text-align: left;
	padding:0px;
}
#cesta .line table .top div {
	border-top: 2px dotted white;
	border-left: 2px dotted white;
	border-top-left-radius: 14px;
	width: 15px;
	height: 15px;
	position: relative;
	top: 15px;
	left: 14px;
}
#cesta .line .middle {
  height:100%;
}
#cesta .line .middle td {
  padding:2px 0;
}
#cesta .line .middle div {
	height:100%;
	width:14px;
	border-right:2px dotted white;
}
#cesta .line .bottom {
	height:30px;
}
#cesta .line .bottom td {
  width:30px;
	vertical-align: top;
	text-align: left;
	padding:0;
}
#cesta .line .bottom div {
	border-bottom: 2px dotted white;
	border-right: 2px dotted white;
	border-bottom-right-radius: 14px;
	width: 15px;
	height: 15px;
	position: relative;
	top: -2px;
	left: -1px;
}
#cesta .afterGr2,
#cesta .afterGr4,
#cesta .afterGr6 {
	display:none;
}
#cesta .spoj {
	margin-left:54%;
  margin-left:53%;
	border-left:2px dotted white;
	height:20px;
}
#cesta .group .spoj_top {
	margin-top:15px;
	border-top:2px dotted white;
  margin-right:46%;
  border-right:2px dotted white;
	height:15px;
  border-radius:0 15px 0 0;
}
#cesta .group:first-child .spoj_top {
	border:none;
}
#cesta .group .spoj_bottom {
  margin-left:54%;
	border-left:2px dotted white;
	margin-bottom:15px;
	border-bottom:2px dotted white;
	height:15px;
	border-radius:0 0 0 15px;
}
#cesta .gr4 {
	padding-right:0;
	padding-bottom:0;
}
#cesta .gr4 .line {
	display:none;
}
#cesta .gr4 .spoj_bottom {
	display:none;
}
#cesta .after2groups {
	display:block;
	width:100%;
	height:60px;
	background:#009fe3;
}
#cesta .after2groups table {
	width:100%;
	height:100%;
  border-collapse:collapse;
}
#cesta .after2groups table tr td {
  vertical-align: top;
	height:60px;
}
#cesta .after2groups table tr .left,
#cesta .after2groups table tr .right {
	width:25%;
	padding:0px;
}
#cesta .after2groups table tr .left div {
	border-top: 2px dotted white;
	border-left: 2px dotted white;
	border-top-left-radius: 14px;
	width: 51%;
	height: 30px;
	position: relative;
	top: 30px;
	left: 49%;
}
#cesta .after2groups table tr .center {
  width:50%;
}
#cesta .after2groups table tr .center div {
	width:100%;
	height:29px;
	border-bottom:2px dotted white;
}
#cesta .after2groups table tr .right div {
	border-bottom: 2px dotted white;
	border-right: 2px dotted white;
	border-bottom-right-radius: 14px;
	width:48%;
	height: 30px;
	top: 0;
	right: 46%;
}
#cesta .afterGr2,
#cesta .afterGr6 {
	display:none;
}
#cesta .gr5 .spoj_top {
	display:none;
}
#cesta .boxy div:nth-last-child(2) {
  display:none;
}
#cesta .group:last-child .boxy div:nth-last-child(2) {
  display:block;
}
#cesta .group:last-child .boxy div:last-child {
  display:none;
}

/* ------------------------- TICKER ------------------------------ */
#ticker {
  width: 100%;
  overflow: hidden;
}
#ticker_container {
  width: 100%;
  overflow: hidden;
  height: 2rem;
  padding-left: 100%; /* zacatek */
  box-sizing: content-box;
}
#ticker_box {
  display: inline-block;
  height: 2rem;
  line-height: 2rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
  transform: translate3d(-25%, 0, 0);
}
#ticker_box:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
#ticker_box .ticker_item {
  display: inline-block;
  padding: 0 3rem;
}
#ticker_box .ticker_item::before {
  content:'';
  width:10px;
  height:10px;
  display:inline-block;
  background-color:var(--tyrkys);
  border-radius:50%;
  margin-right:10px;
}
#ticker_box .ticker_item p {
  display:inline;
}
@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
    visibility: visible;
  }
  75% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  75.001% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
    visibility: visible;
  }
  75% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  75.001% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* ------------------------- extra pismo RUSTINA ------------------------------ */
body#ru,
#ru .legenda strong {
	font-size:16px;
}
#ru #navbar > a,
#ru #togglesearch button,
#ru #headermenu li a, #ru #headermenu li a:visited,
#ru #topmenu li a, #ru #topmenu li a:visited,
#ru #headermenu li .sub-menu li a, #ru #headermenu li .sub-menu li a:visited,
#ru #topmenu li .sub-menu li a, #ru #topmenu li .sub-menu li a:visited {
  font-weight: bold;
  font-size: 15px;
}
#ru h1, #ru h2, #ru h3, #ru h4 {
	font-weight:bold;
}
#ru #home_slider .owl-overlay h1,
#ru #home_slider .owl-caption a {
  font-size: 28px;
}
