/*====================== Alerts styling =================================*/
.messages__wrapper {
  position: fixed;
  top: 10vh;
  z-index: 100;
  width: 80%;
  max-width: 40em;
  left: calc(50% - 20em);
}
@media (max-width: 40em) {
  .messages__wrapper {
    left: 10%;
  }
}
body.toolbar-fixed .messages__wrapper {
  top: 20vh;
}
.alert {
  padding: 1em;
  margin-bottom: 1em;
  border-radius: 1em;
  color: white;
}
.alert > p {
  margin: 0;
}
.alert--dismissible {
  padding-right: 2em;
}
.alert--success {
  background-color: #10b032;
}
.alert--info {
  background-color: #4591f2;
}
.alert--warning {
  background-color: #eab028;
}
.alert--danger {
  background-color: #d23544;
}
/*===================== Forms styling =======================================*/
input[type=email] {
  border: 0.1rem solid #c4c4c4;
  padding: 1em 1.5em;
  font-family: 'lato', sans-serif;
  border-radius: 2.5rem;
  max-width: 100%;
}
input[type=tel] {
  border: 0.1rem solid #c4c4c4;
  padding: 1em 1.5em;
  font-family: 'lato', sans-serif;
  border-radius: 2.5rem;
  max-width: 100%;
}
input[type=text] {
  border: 0.1rem solid #c4c4c4;
  padding: 1em 1.5em;
  font-family: 'lato', sans-serif;
  border-radius: 2.5rem;
  max-width: 100%;
}
input[type=password] {
  border: 0.1rem solid #c4c4c4;
  padding: 1em 1.5em;
  font-family: 'lato', sans-serif;
  border-radius: 2.5rem;
  max-width: 100%;
}
select {
  border-radius: 2.5rem;
  border: 0.1rem solid #c4c4c4;
  box-shadow: none;
  background-color: #fff;
  padding: 1em 1.5em;
  line-height: 1.2em;
}
textarea {
  border: 0.1rem solid #c4c4c4;
  padding: 1em 1.5em;
  font-family: 'lato', sans-serif;
  border-radius: 2.5rem;
  max-width: 100%;
}
form .description {
  font-size: 0.8em;
}
.form-item {
  padding: 0 0 1em 0;
  max-width: 100%;
}
.form-item label {
  display: block;
}
.bef-exposed-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 78rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
  padding: 1em 3em;
  background-color: white;
}
.bef-exposed-form > fieldset {
  margin: auto;
}
.bef-exposed-form .form-item {
  padding: 0;
}
.bef-exposed-form .form-radios {
  display: flex;
  flex-wrap: wrap;
}
.bef-exposed-form .form-radios > .form-item {
  margin: 1em;
  padding: 0;
}
.bef-exposed-form .form-radios label {
  padding: 1em 1.5em;
  color: #3C3C3C;
  font-weight: bold;
  font-size: 0.8em;
  cursor: pointer;
  transition: color 200ms ease-in, background-color 200ms ease-in;
  border-radius: 2em;
}
.bef-exposed-form .form-radios label:hover {
  background-color: #D41E35;
  color: white;
}
.bef-exposed-form .form-radios input[type=radio] {
  display: none;
}
.bef-exposed-form .form-radios input[type=radio]:checked + label {
  background-color: #D41E35;
  color: white;
}
.bef-exposed-form > .form-actions {
  width: 100%;
}
@media all and (max-width: 62rem) {
  .bef-exposed-form {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .bef-exposed-form > .form-item + .form-item {
    margin-top: 0.5em;
  }
  .bef-exposed-form .form-radios {
    justify-content: center;
  }
}
/*=========================== Buttons styling =========================*/
.button {
  color: #3C3C3C;
  background: white;
  padding: 1rem 1.75rem;
  border-radius: 3rem;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.1s ease, background-color 0.1s ease, border 0.1s ease, box-shadow 0.1s ease;
}
.button--primary {
  color: #3C3C3C;
  background: white;
  padding: 1rem 1.75rem;
  border-radius: 3rem;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.1s ease, background-color 0.1s ease, border 0.1s ease, box-shadow 0.1s ease;
  background: #D41E35;
  color: white;
}
.button--primary:hover,
.button--primary:active {
  background: #A00014;
  text-decoration: none;
  font-weight: bold;
  color: white;
}
.button--secondary {
  color: #3C3C3C;
  background: white;
  padding: 1rem 1.75rem;
  border-radius: 3rem;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.1s ease, background-color 0.1s ease, border 0.1s ease, box-shadow 0.1s ease;
  background: #57C3F1;
  color: white;
}
.button--secondary:hover,
.button--secondary:active {
  color: white;
  background-color: #078CC6;
  font-weight: bold;
  text-decoration: none;
}
.button--inverted {
  color: #3C3C3C;
  background: white;
  padding: 1rem 1.75rem;
  border-radius: 3rem;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.1s ease, background-color 0.1s ease, border 0.1s ease, box-shadow 0.1s ease;
  color: white;
  background: transparent;
  border: 0.1rem solid white;
  text-transform: uppercase;
}
.button--inverted:hover {
  text-decoration: underline;
}
.button--alert {
  cursor: pointer;
  position: relative;
  top: -0.15em;
  right: -1.3em;
  color: inherit;
  float: right;
  padding: 0;
  font-size: 1.35em;
  font-weight: normal;
  text-shadow: 0 1px 0 #fff;
  opacity: 1;
  background: transparent;
  box-shadow: none;
}
.button--alert:hover {
  color: inherit;
  background: inherit;
}
.flexslider {
  background: none;
  border: none;
}
.eus-contact > .contact {
  color: #3C3C3C;
  background-color: white;
  border-radius: 1.5em;
  max-width: 16em;
  padding: 1em 0.5em;
}
.eus-contact dt {
  display: none;
}
.eus-contact dd {
  margin-bottom: 0.5em;
}
.eus-contact .hours {
  font-size: 0.85em;
  padding-left: 0.25em;
}
.eus-contact .phone {
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 1em;
}
.eus-contact .phone span {
  font-weight: normal;
  font-size: 0.9em;
  padding-right: 0.2em;
}
.eus-contact .email {
  font-size: 1.1em;
}
@media all and (max-width: 35rem) {
  .eus-contact > h2 {
    text-align: center;
  }
  .eus-contact > .contact {
    margin: auto;
  }
}
/*================================ Global styling ============================== */
body {
  margin: 0;
  font-family: 'lato', sans-serif;
  color: #3C3C3C;
  background-color: white;
  font-weight: normal;
}
html,
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.paragraph ul,
.container--node-body ul,
.paragraph ol,
.container--node-body ol {
  padding-left: 1.3rem;
}
.paragraph ul > li,
.container--node-body ul > li,
.paragraph ol > li,
.container--node-body ol > li {
  margin-bottom: 0.5rem;
  margin-top: 0.2rem;
}
.paragraph ul,
.container--node-body ul {
  list-style: none;
}
.paragraph ul > li::before,
.container--node-body ul > li::before {
  content: '\2022';
  color: #D41E35;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.paragraph ol,
.container--node-body ol {
  list-style: decimal;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.flex > * {
  flex: 1 0 20em;
}
@media all and (max-width: 21em) {
  .flex > * {
    flex-shrink: 1;
  }
}
.flex > p {
  padding: 0.5em;
}
.flex > p + p {
  margin-top: 0;
}
.flex .flex--center {
  align-items: center;
}
.flex .flex--stretch {
  align-items: center;
}
.container {
  width: 96%;
  max-width: 78rem;
  margin: 0 auto;
}
#block-tpp-page-title {
  text-align: center;
}
.page-wrapper {
  margin: auto;
}
strong,
b {
  font-weight: 900;
}
small {
  font-size: 0.75rem;
}
i,
em {
  font-style: italic;
}
p {
  line-height: 1.2;
}
p a:not([class*="button"]) {
  text-decoration: underline;
  transition: color 100ms ease-in;
}
p a:not([class*="button"]).cl-blue:hover,
p a:not([class*="button"]).cl-blue:active {
  color: #078CC6;
}
p a:not([class*="button"]).cl-red:hover,
p a:not([class*="button"]).cl-red:active {
  color: #A00014;
}
p a:not([class*="button"]).cl-green:hover,
p a:not([class*="button"]).cl-green:active {
  color: #58741d;
}
p + p {
  margin-top: 1em;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.site-name {
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  display: block;
  position: absolute;
  text-indent: -66666px;
  overflow: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
h1 {
  font-family: inherit;
  font-weight: bold;
  line-height: 1.1;
  color: inherit;
  margin-top: 0.4em;
  margin-bottom: 0.5em;
  font-family: 'lato', sans-serif;
  font-size: 2.5em;
  font-weight: 900;
}
@media (max-width: 50rem) {
  h1 {
    font-size: 2em;
  }
}
h2 {
  font-family: inherit;
  font-weight: bold;
  line-height: 1.1;
  color: inherit;
  margin-top: 0.4em;
  margin-bottom: 0.5em;
  font-weight: 900;
  font-family: 'lato', sans-serif;
  font-size: 2em;
}
@media (max-width: 50rem) {
  h2 {
    font-size: 1.8em;
  }
}
h3 {
  font-family: inherit;
  font-weight: bold;
  line-height: 1.1;
  color: inherit;
  margin-top: 0.4em;
  margin-bottom: 0.5em;
  font-weight: 900;
  font-family: 'lato', sans-serif;
  font-size: 1.65em;
  font-weight: 800;
}
@media (max-width: 50rem) {
  h3 {
    font-size: 1.485em;
  }
}
h4 {
  font-family: inherit;
  font-weight: bold;
  line-height: 1.1;
  color: inherit;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
  font-size: 1.25em;
}
@media (max-width: 50rem) {
  h4 {
    font-size: 1.125em;
  }
}
h5 {
  font-family: inherit;
  font-weight: bold;
  line-height: 1.1;
  color: inherit;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
  font-size: 1em;
}
h6 {
  font-family: inherit;
  font-weight: bold;
  line-height: 1.1;
  color: inherit;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
  font-size: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
picture > img {
  margin-left: auto;
  margin-right: auto;
}
nav.breadcrumb {
  width: 96%;
  max-width: 78rem;
  margin: 0 auto;
  padding: 2em 0;
}
nav.breadcrumb a {
  font-size: inherit;
  text-decoration: underline;
  color: #595959;
  font-weight: 400;
}
nav.breadcrumb ol {
  display: flex;
}
nav.breadcrumb ol > li {
  font-size: 0.8em;
  color: #595959;
  font-weight: 400;
  text-decoration: underline;
  opacity: 0.5;
}
nav.breadcrumb ol > li + li {
  position: relative;
  padding-left: 2em;
}
nav.breadcrumb ol > li + li::before {
  content: '<';
  display: block;
  position: absolute;
  left: 0.75em;
  top: calc(50% - 0.45em);
}
@media all and (max-width: 35rem) {
  nav.breadcrumb ol > li:last-child {
    display: none;
  }
  nav.breadcrumb ol > li {
    display: flex;
    align-items: center;
  }
}
article {
  margin-bottom: 1em;
}
main.content {
  padding-top: 8rem;
  min-height: 62vh;
}
@media all and (max-width: 62rem) {
  main.content {
    padding-top: 4.5rem;
  }
}
.page-node-type--page main.content::before {
  content: '';
  position: absolute;
  opacity: 0.22;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  background-image: url("../images/nova-krajina_seda.svg");
  background-size: auto 16.5em;
  background-position: center 8rem;
  background-repeat: repeat-x;
}
@media all and (max-width: 62rem) {
  .page-node-type--page main.content::before {
    background-position-y: 4.5rem;
  }
}
.page-node-type--page.toolbar-horizontal main.content::before {
  background-position-y: calc(8rem + 39px);
}
.page-node-type--page.toolbar-horizontal.toolbar-tray-open main.content::before {
  background-position-y: calc(8rem + 79px);
}
/*============================ Navbar ===================================== */
.menu-overlay.navbar--opened,
.ui-widget-overlay {
  background: black;
  opacity: 0.8;
}
.menu-overlay.navbar--opened {
  height: 100vh;
  position: fixed;
  width: 100vw;
  z-index: 99;
  top: 0;
  left: 0;
}
header#navbar {
  display: grid;
  grid-template-columns: 11.2rem 1fr 3em;
  grid-template-rows: 30% 70%;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  z-index: 99;
  background-color: white;
  height: 8rem;
  transition: height 200ms ease-in;
  border-bottom: 0.1em solid #c4c4c4;
}
@media all and (min-width: 80rem) {
  header#navbar {
    padding-left: calc(50% - 78rem/2);
    padding-right: calc(50% - 78rem/2);
  }
}
@media all and (max-width: 80rem) {
  header#navbar {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
header#navbar > #block-tpp-site-branding {
  display: flex;
  align-items: center;
  max-width: 14.5em;
  padding: 0 0.8em;
  transition: padding 200ms ease-in;
  grid-row-end: span 2;
}
header#navbar > #block-tpp-site-branding img {
  transition: width 200ms ease-in;
  max-height: 8rem;
  width: 11.2rem;
}
header#navbar > nav {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
header#navbar.fixed {
  position: fixed;
  padding-top: 0;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.45);
}
header#navbar .menu--label {
  display: none;
}
header#navbar #block-horninavigace {
  justify-self: end;
}
header#navbar #block-tpp-main-menu {
  grid-column-end: span 2;
  padding-bottom: 0.5em;
}
header#navbar #block-tpp-main-menu .phone {
  position: absolute;
  right: 0;
  bottom: 0.75em;
  padding: 0.25em 0.25em 0.25em 1.4em;
  background-image: url("../images/ico-tel-class.svg");
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: 0.2em center;
  font-size: 1.5em;
  border: 0.1rem solid #D41E35;
  border-radius: 2em;
}
header#navbar #block-tpp-main-menu .phone span {
  font-size: 1rem;
}
header#navbar #block-tpp-main-menu .phone:hover {
  text-decoration: none;
}
@media all and (max-width: 23.5rem) {
  header#navbar #block-tpp-main-menu .phone {
    right: 5.85em;
  }
}
header#navbar .language-switcher-language-url {
  text-transform: uppercase;
  position: relative;
}
header#navbar .language-switcher-language-url ul {
  padding-right: 1em;
  position: relative;
  position: absolute;
  top: 0.3em;
  left: 0;
  padding: 0 1em 0.2em 0.5em;
  overflow: hidden;
  max-height: 1.5em;
  border: 0.1em solid #c4c4c4;
  border-radius: 1em;
  transition: max-height 150ms ease-in;
}
header#navbar .language-switcher-language-url ul::after {
  content: '';
  display: block;
  position: absolute;
  right: 0.3em;
  top: 0.5em;
  border-right: 0.1em solid #c4c4c4;
  border-bottom: 0.1em solid #c4c4c4;
  padding: 0.2em;
  opacity: 1;
  transition: opacity 150ms ease-in;
  transform: rotate(45deg);
}
header#navbar .language-switcher-language-url ul > li.is-active {
  display: none;
}
header#navbar .language-switcher-language-url ul > li + li {
  margin-top: 0.25em;
}
header#navbar .language-switcher-language-url ul:hover {
  max-height: 5em;
}
header#navbar .language-switcher-language-url ul:hover::after {
  opacity: 0;
}
@media (max-width: 62rem) {
  .user-logged-in #navbar.fixed {
    top: 0;
  }
  #toolbar-administration {
    display: none;
  }
  body.toolbar-tray-open.toolbar-vertical.toolbar-fixed {
    margin-left: 0!important;
  }
  header#navbar {
    position: fixed;
  }
  header#navbar > #block-tpp-site-branding img {
    width: calc((4.5rem - 0.75rem) * 22 / 9);
    max-height: 4.5rem;
  }
  header#navbar .language-switcher-language-url {
    display: none;
  }
  header#navbar #block-tpp-main-menu .phone {
    position: fixed;
    top: 0.5em;
    right: 6.25em;
    height: 2em;
    width: 2em;
    text-indent: -9999px;
    border: none;
    background-image: url("../images/ico-volani-pevna-sm.svg");
    background-size: 1.5em;
  }
  header#navbar .menu--label {
    display: block;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    bottom: 0;
    right: 2em;
    position: relative;
    color: #D41E35;
  }
}
@media (max-width: 23.5rem) {
  header#navbar > #block-tpp-site-branding {
    padding-left: 0;
  }
  header#navbar > #block-tpp-site-branding img {
    width: calc((4.5rem - 1.25rem) * 22 / 9);
  }
}
/*=====================  Main menu styling =============================== */
.menu--main {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: right;
  position: relative;
  background: transparent;
}
.menu__item--main {
  list-style: none;
  min-width: 6.25em;
  position: relative;
  display: flex;
  align-items: center;
}
.menu__link--main {
  color: black;
  width: 100%;
  display: table;
  text-align: center;
  text-decoration: none;
  padding: 1em 1.3em;
  font-size: 1.25em;
  font-weight: 900;
}
.menu__link--main span {
  transition: border-top-color 200ms ease-in;
  padding-top: 0.2em;
  border-top-color: transparent;
}
.menu__link--main:hover,
.menu__link--main.is-active {
  color: black;
  text-decoration: none;
}
.menu__link--main:hover span.link__title,
.menu__link--main.is-active span.link__title {
  border-top: 0.25em solid #D41E35;
}
.menu__link--main:hover,
.menu__item--main:hover > .menu__link--main {
  color: black;
}
.menu__link--main.menu__link--parent > .menu__arrow {
  width: 0;
  height: 0;
  border-left: 0.4em solid transparent;
  border-right: 0.4em solid transparent;
  border-top: 0.4em solid black;
  display: block;
  position: absolute;
  top: calc(50% - 0.1732em);
  right: 0.7em;
}
.menu__item--main:hover .menu__link--main.menu__link--parent > .menu__arrow {
  border-top-color: black;
}
.menu__item--main.menu__item--parent {
  position: relative;
}
.menu__item--main.menu__item--parent > ul {
  display: block;
  overflow: hidden;
  max-height: 0;
  width: 10em;
  opacity: 0;
  background-color: white;
  top: 100%;
  padding: 0;
  z-index: 29;
  position: absolute;
  transition: opacity 400ms ease;
}
.menu--main.menu--child > .menu__item {
  list-style: none;
}
.menu--main.menu--child > .menu__item > .menu__link {
  display: table;
  padding: 0.75em 0.5em 0.75em 1.3em;
  text-align: left;
  font-style: italic;
}
.menu--main.menu--child > .menu__item--last > .menu__link {
  border-bottom: 0 solid #eee;
}
.menu__item--main.menu__item--parent:hover > .menu--child {
  opacity: 1;
  max-height: 90em;
}
.menu__overlay {
  width: 100vw;
  height: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  background-color: rgba(0, 0, 0, 0.8);
  transition: opacity 300ms ease-in;
}
@media (max-width: 62rem) {
  .menu__overlay.navbar--opened {
    opacity: 1;
    height: 100vh;
  }
  .menu__item--main {
    display: block;
  }
  header#navbar {
    height: 4.5rem;
    display: block;
  }
  header#navbar nav#block-tpp-main-menu {
    position: absolute;
    border-left: 0.1em solid #c4c4c4;
    right: -28em;
    top: 4.5rem;
    width: 22em;
    max-width: 100vw;
    height: calc(100vh - 4.5rem);
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1em;
    padding-left: 2em;
    background-color: white;
    border-top: 0.15em solid #f5f5f5;
    transition: right 300ms cubic-bezier(0.77, 0, 0.175, 1);
  }
  header#navbar .menu--main.menu--parent {
    display: block;
    width: 100%;
    padding-bottom: 1em;
    border-bottom: 0.1em solid #c4c4c4;
  }
  header#navbar .menu__arrow {
    display: none;
  }
  header#navbar .menu__link--main {
    display: block;
    text-align: left;
    white-space: nowrap;
    padding: 0.5em 0.5em;
    overflow: hidden;
  }
  header#navbar .menu__link--main:hover > .link__title,
  header#navbar .menu__link--main.is-active > .link__title {
    border-top: none;
    border-bottom: 0.1em solid #D41E35;
  }
  header#navbar ul.menu--child {
    max-height: none;
    width: 100%;
    position: relative;
    opacity: 1;
    padding-left: 1em;
  }
  header#navbar.navbar--opened nav#block-tpp-main-menu {
    right: 0;
  }
  .icon--burger {
    position: absolute;
    top: calc(50% - 1.25em);
    right: 2.75em;
    display: block;
    z-index: 1060;
    background: transparent;
    border: 0.1em solid #eaeaea;
    border-radius: 1.5em;
    padding: 0.75em 0.5em;
    width: 6.3em;
  }
  .icon--burger::before {
    content: 'menu';
    text-transform: uppercase;
    display: block;
    float: left;
    font-size: 1em;
    color: #D41E35;
    font-weight: bold;
    width: 3.5em;
  }
  .icon--burger * {
    transition: all 500ms ease;
  }
  .icon--burger__top,
  .icon--burger__center,
  .icon--burger__bottom {
    display: block;
    width: 1.8em;
    height: 0.2em;
    background: #D41E35;
    position: absolute;
    top: 0.75em;
    right: 0.5em;
  }
  .icon--burger__center {
    top: 1.242em;
    opacity: 1;
  }
  .icon--burger__bottom {
    top: 1.734em;
  }
  .navbar--opened .icon--burger .icon--burger__center {
    opacity: 0;
  }
  .navbar--opened .icon--burger .icon--burger__top {
    transform: rotate(45deg);
    top: 1.35em;
  }
  .navbar--opened .icon--burger .icon--burger__bottom {
    transform: rotate(-45deg);
    top: 1.35em;
  }
}
@media all and (max-width: 23.5rem) {
  .icon--burger {
    right: 1.75em;
  }
}
.menu--horni-navigace.menu--parent {
  display: flex;
}
.menu--horni-navigace.menu--parent a {
  color: #333333;
}
.menu--horni-navigace.menu--parent > li {
  padding: 0 0.5em 0.75em;
}
.menu--horni-navigace.menu--parent .my-zone {
  padding-left: 1.5em;
  padding-right: 0.75em;
  background-image: url("../images/zona.svg");
  background-repeat: no-repeat;
  background-position: 0.35em center;
  background-size: 1em;
  border: 0.1em solid #333333;
  border-radius: 1em;
}
.menu--horni-navigace.menu--parent .my-zone:hover {
  text-decoration: none;
}
.menu--horni-navigace.menu--parent .menu--child {
  position: absolute;
  top: 1.8em;
  width: 15em;
  left: calc(50% - 7.5em);
  background-color: #D41E35;
  display: none;
  color: white;
  padding: 1.25em;
  border-radius: 2em;
  z-index: 9;
  font-weight: 400;
}
.menu--horni-navigace.menu--parent .menu--child > li {
  padding-left: 0.5em;
  padding-bottom: 0.25em;
  padding-top: 0.25em;
  transition: padding-left 100ms ease-in;
}
.menu--horni-navigace.menu--parent .menu--child > li:hover {
  padding-left: 0;
}
.menu--horni-navigace.menu--parent .menu--child > li:hover a {
  text-decoration: none;
}
.menu--horni-navigace.menu--parent .menu--child a {
  color: white;
  display: block;
}
.menu--horni-navigace.menu--parent .menu--child::before {
  content: '';
  display: block;
  position: absolute;
  top: -0.4em;
  left: calc(50% - 0.45em);
  width: 0;
  height: 0;
  border-top: 0.9em solid #D41E35;
  border-left: 0.9em solid transparent;
  transform: rotate(-45deg);
}
.menu--horni-navigace.menu--parent > .menu__item--parent {
  position: relative;
}
.menu--horni-navigace.menu--parent > .menu__item--parent > a {
  padding-right: 1em;
  position: relative;
}
.menu--horni-navigace.menu--parent > .menu__item--parent > a::after {
  content: '';
  display: block;
  position: absolute;
  right: 0.3em;
  top: 0.5em;
  border-right: 0.1em solid #c4c4c4;
  border-bottom: 0.1em solid #c4c4c4;
  padding: 0.2em;
  opacity: 1;
  transition: opacity 150ms ease-in;
  transform: rotate(45deg);
}
.menu--horni-navigace.menu--parent > .menu__item--parent:hover .menu--child {
  display: block;
}
@media all and (max-width: 62rem) {
  header#navbar #block-horninavigace {
    position: absolute;
    border-left: 0.1em solid #c4c4c4;
    right: -28em;
    top: 4.5rem;
    width: 22em;
    max-width: 100vw;
    height: calc(100vh - 4.5rem);
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1em;
    padding-left: 2em;
    background-color: white;
    border-top: 0.15em solid #f5f5f5;
    transition: right 300ms cubic-bezier(0.77, 0, 0.175, 1);
    padding-top: 0;
    top: calc(4.5rem + 12em);
    border-top: none;
    z-index: 9;
    max-height: calc(100vh - 4.5rem - 12em);
    overflow: scroll;
  }
  header#navbar .menu--horni-navigace.menu--parent {
    width: 100%;
    flex-direction: column;
  }
  header#navbar .menu--horni-navigace.menu--parent > li > a {
    display: block;
    font-weight: bold;
  }
  header#navbar .menu--horni-navigace.menu--parent > li > a::after {
    display: none;
  }
  header#navbar .menu--horni-navigace.menu--parent .my-zone {
    display: inline-block;
    margin-top: 0.5em;
  }
  header#navbar .menu--horni-navigace.menu--parent .menu__link.is-active {
    text-decoration: underline;
  }
  header#navbar .menu--horni-navigace.menu--parent .menu--child {
    display: block;
    background-color: transparent;
    border-radius: 0;
    top: 0;
    padding: 0.5em 0 0;
  }
  header#navbar .menu--horni-navigace.menu--parent .menu--child > li {
    padding-left: 0;
  }
  header#navbar .menu--horni-navigace.menu--parent .menu--child > li:hover > a {
    text-decoration: underline;
  }
  header#navbar .menu--horni-navigace.menu--parent .menu--child::before {
    display: none;
  }
  header#navbar .menu--horni-navigace.menu--parent .menu--child a {
    color: #333333;
  }
  header#navbar.navbar--opened #block-horninavigace {
    right: 0;
  }
}
/*================================ edit-link ============================== */
.edit-link {
  position: absolute;
  top: -13px;
  right: -13px;
  border-radius: 15px;
  width: 26px;
  height: 26px;
  background: #fff;
  text-indent: -9999px;
  overflow: hidden;
  border: 2px solid #aaa;
}
.edit-link:after {
  position: absolute;
  transform: rotate(45deg);
  background: #aaa;
  width: 6px;
  height: 11px;
  left: 9px;
  top: 4px;
  content: '';
}
.edit-link:before {
  position: absolute;
  transform: rotate(45deg);
  content: '';
  top: 14px;
  left: 1px;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #aaa;
  border-bottom: 0;
}
.edit-link:hover:after {
  background: #333;
}
.edit-link:hover {
  border-color: #333;
}
.edit-link:hover:before {
  border-top-color: #333;
}
/*================================ login ============================== */
.page--user-login .user-login-form {
  padding: 50px;
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
body[class*="page--user"] #block-tpp-page-title,
body[class*="page--user"] #block-pagetitle {
  margin-top: -8rem;
  height: calc(8rem + 9em);
  padding-top: 8rem;
  text-align: center;
}
body[class*="page--user"] #block-tpp-page-title h1,
body[class*="page--user"] #block-pagetitle h1 {
  margin-top: 1.5em;
}
body[class*="page--user"] form.user-login-form input[type=submit] {
  color: #3C3C3C;
  background: white;
  padding: 1rem 1.75rem;
  border-radius: 3rem;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.1s ease, background-color 0.1s ease, border 0.1s ease, box-shadow 0.1s ease;
  background: #D41E35;
  color: white;
}
body[class*="page--user"] form.user-login-form input[type=submit]:hover,
body[class*="page--user"] form.user-login-form input[type=submit]:active {
  background: #A00014;
  text-decoration: none;
  font-weight: bold;
  color: white;
}
body[class*="page--user"] form.user-login-form input[type=submit]:hover,
body[class*="page--user"] form.user-login-form input[type=submit]:active {
  background: #A00014;
  text-decoration: none;
  font-weight: bold;
  color: white;
}
/*================================ admin taby ============================== */
.region--taby {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fff;
  max-width: 150px;
  -webkit-border-top-right-radius: 20px;
  -moz-border-radius-topright: 20px;
  border-top-right-radius: 20px;
  border: 1px solid #680984;
  border-left-width: 0;
  border-bottom-width: 0;
}
.region--taby ul {
  margin: 0;
  padding: 10px;
  list-style: none;
}
.region--taby ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.region--taby ul li a {
  display: block;
  padding: 3px;
  color: #921fb3;
  font-size: 13px;
  text-decoration: none;
}
.region--taby ul li a:hover {
  color: #4a0254;
}
.region--taby .contextual {
  display: none;
}
/*================================ Footer ===============================*/
footer.region--footer {
  clear: both;
  position: relative;
  display: flex;
  padding-top: 1.75em;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  background-color: #A00014;
  color: white;
}
@media (min-width: 80rem) {
  footer.region--footer {
    padding-left: calc(50% - (78rem / 2));
    padding-right: calc(50% - (78rem / 2));
  }
}
footer.region--footer > :first-child,
footer.region--footer > :nth-child(2),
footer.region--footer > :nth-child(3),
footer.region--footer > :nth-child(4) {
  width: 19.5rem;
  margin-bottom: 5rem;
}
@media (max-width: 80rem) {
  footer.region--footer > :first-child,
  footer.region--footer > :nth-child(2),
  footer.region--footer > :nth-child(3),
  footer.region--footer > :nth-child(4) {
    width: 24%;
  }
}
footer.region--footer #block-onas {
  width: 15.6rem;
}
@media (max-width: 80rem) {
  footer.region--footer #block-onas {
    width: 20%;
  }
}
footer.region--footer > nav,
footer.region--footer .eus-menus > nav {
  padding: 0 1em 1em;
}
footer.region--footer > nav li + li,
footer.region--footer .eus-menus > nav li + li {
  margin-top: 0.5em;
}
footer.region--footer > nav a.menu__link,
footer.region--footer .eus-menus > nav a.menu__link {
  text-decoration: none;
  font-weight: normal;
}
footer.region--footer > nav a.menu__link:hover,
footer.region--footer .eus-menus > nav a.menu__link:hover {
  text-decoration: underline;
}
footer.region--footer .menu__title,
footer.region--footer h2 {
  color: white;
  font-weight: 900;
  font-size: 1.5em;
  line-height: 2;
  text-decoration-line: underline;
}
.eus-copyright {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4rem;
  background-color: #430008;
  display: flex;
  align-items: center;
}
.eus-copyright > * {
  flex-grow: 1;
}
.eus-copyright small {
  display: flex;
  font-weight: 300;
  font-size: 1.2em;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  max-width: 78rem;
}
@media all and (max-width: 80rem) {
  .eus-copyright small {
    margin: 0 2%;
  }
}
.eus-copyright p + p {
  margin: 0;
}
@media (max-width: 62rem) {
  footer.region--footer {
    justify-content: space-between;
    padding-right: 10%;
    padding-left: 10%;
  }
  footer.region--footer > :nth-child(1),
  footer.region--footer > :nth-child(2),
  footer.region--footer > :nth-child(3),
  footer.region--footer > :nth-child(4),
  footer.region--footer > #block-onas {
    width: 45%;
    margin-bottom: 1rem;
  }
  footer.region--footer > :nth-child(3),
  footer.region--footer > :nth-child(4) {
    margin-bottom: 5rem;
  }
}
@media (max-width: 35rem) {
  footer.region.region--footer {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4em;
  }
  footer.region.region--footer > div,
  footer.region.region--footer > nav,
  footer.region.region--footer > #block-onas {
    max-width: 96%;
    width: 20em;
    margin-bottom: 1.5rem;
  }
  footer.region.region--footer .eus-copyright {
    text-align: center;
    width: 100%;
    margin-bottom: 0;
    max-width: none;
  }
  footer.region.region--footer .eus-copyright small {
    flex-direction: column;
    justify-content: center;
    font-size: 1em;
  }
}
.pager__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  list-style: none;
  text-align: center;
  margin: 1rem 0;
  font-weight: bold;
  color: #595959;
}
.pager__item {
  display: inline-block;
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}
.pager__item > a {
  text-transform: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 2rem;
  height: 2rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  border-radius: 1rem;
  line-height: 1;
}
.pager__item.is-active > a {
  color: white;
  background-color: #57C3F1;
}
.pager__item:hover > a {
  color: white;
  background-color: #ffffff;
}
.cl-red {
  color: #D41E35;
}
.cl-footer {
  color: #A00014;
}
.cl-dark-red {
  color: #430008;
}
.cl-blue {
  color: #57C3F1;
}
.cl-light-blue {
  color: #DDF5FF;
}
.cl-dark-blue {
  color: #078CC6;
}
.cl-green {
  color: #96C532;
}
.cl-white {
  color: white;
}
.bg-red {
  background-color: #D41E35;
}
.bg-footer {
  background-color: #A00014;
}
.bg-dark-red {
  background-color: #430008;
}
.bg-blue {
  background-color: #57C3F1;
}
.bg-light-blue {
  background-color: #DDF5FF;
}
.bg-dark-blue {
  background-color: #078CC6;
}
.bg-green {
  background-color: #96C532;
}
.bg-white {
  background-color: white;
}
.bg-gray {
  background-color: #fafafa;
}
.bg-gray2 {
  background-color: #f5f5f5;
}
.eus-section-red {
  background-color: #D41E35;
  color: white;
  padding-bottom: 8em;
  position: relative;
  overflow: hidden;
}
.eus-section-red::before,
.eus-section-red::after {
  content: '';
  display: block;
  position: absolute;
}
.eus-section-red::before {
  border-left: 10em solid white;
  border-top: 10em solid transparent;
  border-bottom-left-radius: 4em;
  transform: rotate(-135deg);
  left: -5em;
  top: 20%;
}
.eus-section-red::after {
  border-left: 7em solid white;
  border-top: 7em solid transparent;
  border-bottom-left-radius: 3em;
  transform: rotate(45deg);
  right: -3.5em;
  top: 50%;
}
@media all and (max-width: 78rem) {
  .eus-section-red {
    padding-bottom: 4em;
  }
  .eus-section-red::before,
  .eus-section-red::after {
    display: none;
  }
}
