:root {
  --spacing: 4vw;
}
/*#353942; #4E5159;*/
html {
  font-size: 16px !important;
}
body {
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #5F636D;
  font-size: 1rem;
  font-family: 'Epilogue', sans-serif;
  line-height: 1.4;
}
h1,
h2,
h3 {
  color: #0c38b3;
  font-weight: 600;
  line-height: 1.15;
}
p {
  margin: 0 0 1em 0;
}
a {
  color: #0c38b3;
  text-decoration: none;
}
table {
  border-collapse: collapse;
}
img {
  max-width: 100%;
}
.wrap {
  padding: 0 var(--spacing);
}
.separator::before {
  display: block;
  width: 2.4em;
  height: 2px;
  background-color: #0c38b3;
  content: "";
}
@media screen and (min-width: 900px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.hero-photo img {
  display: block;
  width: 100%;
}
.hero-info {
  background: url(../images/mraky.jpg) 0 0 no-repeat;
  background-size: cover;
}
.hero-text {
  padding: var(--spacing);
}
.hero-text h1 {
  margin: 0 0 0.25em 0;
  font-size: 2em;
}
.hero-text h2 {
  margin: 0 0 2.5em 0;
  font-size: 1em;
}
.hero-text p {
  margin: 0;
}
.hero-box {
  box-sizing: border-box;
  margin-left: calc(-0.5 * var(--spacing));
  padding: var(--spacing) var(--spacing) var(--spacing) calc(1.5 * var(--spacing));
  background: #2650c8;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .hero-box {
    width: calc(50vw - (var(--spacing) * 0.75));
    padding: calc(0.75 * var(--spacing)) var(--spacing) calc(0.75 * var(--spacing)) calc(1.5 * var(--spacing));
  }
}
.hero-slide h2 {
  color: #fff;
}
.hero-slide a {
  color: #fff;
}
.layout-content {
  padding: var(--spacing);
}
.top-title {
  background: #2650c8 url(../images/bg-page-title.jpg) 100% 50% no-repeat;
  background-size: cover;
}
.top-title .page-title {
  color: #fff;
  margin: 0;
  padding: 2.4em 0;
  /*edited*/
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  /*edited*/
  font-size: 1.8em;
  /*edited*/
}
.page-node-type-page article.with-side,
.page-node-type-zpravodaj article.with-side {
  display: grid;
  column-gap: var(--spacing);
  grid-template-columns: 1fr;
  grid-template-areas: 'c' 's';
}
@media screen and (min-width: 900px) {
  .page-node-type-page article.with-side,
  .page-node-type-zpravodaj article.with-side {
    grid-template-columns: 3fr 1fr;
    grid-template-areas: 'c s';
  }
}
.page-node-type-page article.with-side .node__content,
.page-node-type-zpravodaj article.with-side .node__content {
  grid-area: c;
}
.page-node-type-page article.with-side .article-side,
.page-node-type-zpravodaj article.with-side .article-side {
  grid-area: s;
}
.path-node .node__content {
  position: relative;
  padding-top: 2em;
}
.path-node .node__content::before {
  display: block;
  width: 2.4em;
  height: 2px;
  background-color: #0c38b3;
  content: "";
}
.path-node .node__content::before {
  position: absolute;
  top: 0;
  display: block;
  height: 2px;
}
.frontpage-news {
  display: grid;
  padding: var(--spacing);
  grid-template-columns: 1fr;
  gap: var(--spacing);
}
@media screen and (min-width: 900px) {
  .frontpage-news {
    grid-template-columns: 2fr 1fr;
  }
}
.news-list .view-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.7vw;
}
@media screen and (min-width: 900px) {
  .news-list .view-content {
    grid-template-columns: 1fr 1fr;
  }
}
.news-item::before {
  display: block;
  width: 2.4em;
  height: 2px;
  background-color: #0c38b3;
  content: "";
}
.partner {
  display: flex;
  padding: 8em var(--spacing);
  /*edited*/
  background: url(../images/partneri.jpg) 0 0 no-repeat;
  background-size: cover;
  gap: var(--spacing);
}
.partner-title {
  color: #0c38b3;
  font-size: 1.2em;
  line-height: 3;
}
.partner-title::before {
  display: block;
  width: 2em;
  height: 2px;
  background-color: #0c38b3;
  content: "";
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .partner-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
  }
}
@media screen and (min-width: 900px) {
  .with-side .partner-grid {
    grid-template-columns: repeat(9, 1fr);
    grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
  }
}
.partner-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1em 0.5em 1em;
  background: #fff;
}
.footer-info {
  display: flex;
  flex-direction: column;
  padding: 0 var(--spacing);
  background-color: #2650c8;
  color: #fff;
  gap: 1em;
  font-size: 0.9em;
  /*edited*/
  font-weight: 700;
  /*edited*/
  line-height: 145%;
  /*edited*/
}
@media screen and (min-width: 900px) {
  .footer-info {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-info a {
  color: inherit;
}
.footer-name {
  position: relative;
  display: flex;
  overflow: hidden;
  margin-right: calc(-1 * var(--spacing));
  margin-left: calc(-1 * var(--spacing));
  padding: 1.4em 5rem 1.3em var(--spacing);
  background-color: #0c38b3;
  font-weight: 700;
  font-size: 1.3em;
  /*edited*/
}
@media screen and (min-width: 900px) {
  .footer-name {
    margin-right: 0;
  }
  .footer-name::after {
    position: absolute;
    top: -1rem;
    right: -4rem;
    width: 5rem;
    height: 5rem;
    background-color: #2650c8;
    content: "";
    transform: rotate(-20deg);
  }
}
.footer-copyrigth {
  padding: 3em var(--spacing);
  /*edited*/
  font-weight: 400;
  /*edited*/
  text-align: center;
  font-size: 0.9em;
  /*edited*/
}
.view-id-fotogalerie .view-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing);
}
@media screen and (min-width: 900px) {
  .view-id-fotogalerie .view-content {
    grid-template-columns: repeat(4, 1fr);
  }
}
.page-node-type-fotogalerie .field--name-field-obrazek {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(var(--spacing)/2);
}
@media screen and (min-width: 900px) {
  .page-node-type-fotogalerie .field--name-field-obrazek {
    grid-template-columns: repeat(4, 1fr);
  }
}
[data-history-node-id="2"] .field--name-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing);
}
[data-history-node-id="2"] .field--name-body img {
  display: block;
  max-width: 100%;
  width: 100%;
}
.person {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 1em;
}
.person div::before {
  display: block;
  width: 2.4em;
  height: 2px;
  background-color: #0c38b3;
  content: "";
}
.person a {
  color: #ffac46;
  text-decoration: underline;
}
.person-name {
  display: block;
  padding-top: 1em;
  color: #0c38b3;
}
.view-id-revisionists .view-content h2 {
  margin-top: var(--spacing);
}
.revisionists {
  display: grid;
  column-gap: var(--spacing);
  grid-template-columns: 1fr;
  row-gap: var(--spacing);
}
@media screen and (min-width: 900px) {
  .revisionists {
    grid-template-columns: repeat(4, 1fr);
    row-gap: calc(var(--spacing)/2);
  }
}
.revisionists .views-field-title {
  font-weight: bold;
}
.revisionist-name {
  font-weight: 700;
}
.fog {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}
.fog::before {
  position: absolute;
  top: -3em;
  right: 0;
  left: 0;
  height: 3em;
  background: linear-gradient(to bottom, #f9f9f900 0%, #f9f9f9 50%, #f9f9f9 100%);
  content: "";
}
.fog a {
  display: inline-block;
  padding: 0.25em 1em;
  border-radius: 9em;
  background-color: #ffac46;
}
.path-seznam-reviznich-techniku .view-header {
  margin-bottom: 2em;
}
.path-seznam-reviznich-techniku .form-item {
  float: none !important;
  margin: 0;
}
.path-seznam-reviznich-techniku .form-item-tid > label {
  display: none;
}
.path-seznam-reviznich-techniku .bef-links {
  position: relative;
  max-height: 30vh;
  background: url(../images/mapa.svg) 0 0 no-repeat;
  background-size: cover;
  aspect-ratio: 12 / 7;
  margin: auto;
}
.path-seznam-reviznich-techniku .bef-links ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.path-seznam-reviznich-techniku .bef-links li {
  position: absolute;
}
.path-seznam-reviznich-techniku .bef-links li:nth-child(1) {
  right: 0;
}
.path-seznam-reviznich-techniku .bef-links li:nth-child(1) .bef-link {
  width: auto;
  transform: translate(0, 0);
  padding: 0 0.5em;
  border: 3px solid #ffac46;
}
.path-seznam-reviznich-techniku .bef-links li:nth-child(1) .bef-link--selected {
  border: 3px solid #ffac46;
  transform: translateX(-100vw);
}
.path-seznam-reviznich-techniku .bef-links li:nth-child(2) {
  top: 44%;
  left: 37%;
}
.path-seznam-reviznich-techniku .bef-links li:nth-child(3) {
  top: 50%;
  left: 15%;
}
.path-seznam-reviznich-techniku .bef-links li:nth-child(4) {
  top: 75%;
  left: 34%;
}
.path-seznam-reviznich-techniku .bef-links li:nth-child(5) {
  top: 18%;
  left: 30%;
}
.path-seznam-reviznich-techniku .bef-links li:nth-child(6) {
  top: 40%;
  left: 58%;
}
.path-seznam-reviznich-techniku .bef-links li:nth-child(7) {
  top: 78%;
  left: 67%;
}
.path-seznam-reviznich-techniku .bef-links li:nth-child(8) {
  top: 54%;
  left: 82%;
}
.path-seznam-reviznich-techniku .bef-links .bef-link {
  box-sizing: border-box;
  display: block;
  width: 4em;
  height: 1.5em;
  background: #ffac46;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-2em, -0.75em);
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 9em;
  border: 2px solid #ffac46;
}
.path-seznam-reviznich-techniku .bef-links .bef-link:hover {
  color: #fff;
}
.path-seznam-reviznich-techniku .bef-links .bef-link.bef-link--selected {
  color: #fff;
  border: 2px solid #fff;
}
#block-azzcr-pravidladiskuze {
  background-color: #dbf0ff;
  padding: 1em;
  margin-bottom: var(--spacing);
}
.collective-members {
  margin-bottom: 1em;
}
.collective-members-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.collective-members-list img {
  display: block;
}
.header-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1em 5em 1em var(--spacing);
  background-color: #EFF8FF;
  color: #2650c8;
  gap: var(--spacing);
  font-size: 0.85rem;
  /*edited*/
}
@media screen and (min-width: 900px) {
  .header-top {
    justify-content: space-between;
    padding: 0 var(--spacing);
  }
}
.header-social {
  display: flex;
  justify-content: flex-end;
  gap: 0.4em;
}
@media screen and (min-width: 900px) {
  .header-social {
    flex-grow: 3;
  }
}
.header-social a svg {
  display: block;
  width: 16px;
  /*edited*/
  border-radius: 4px;
  /*edited*/
  padding: 2px 4px;
  /*edited*/
  background-color: #dbf0ff;
}
.header-eshop a {
  display: inline-block;
  padding: 0.4em 1em 0.2em 1em;
  /*edited*/
  border-radius: 9em;
  background-color: #ffac46;
  text-transform: uppercase;
  font-size: 0.75rem;
  /*edited*/
  font-weight: bold;
  /*edited*/
}
.header-user .menu {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 3em;
  /*edited*/
}
.header-search {
  display: none;
}
@media screen and (min-width: 900px) {
  .header-search {
    display: block;
  }
}
.header-search input[type='search'] {
  outline: none;
  border: 0;
  border-radius: 9em;
  /*edited*/
  border: 1px solid rgba(12, 56, 179, 0.2);
  background-color: #f9f9f9;
}
.header-search .form-submit {
  display: block;
  padding: 0;
  width: 2em;
  height: 2em;
  border: 0;
  border-radius: 9rem;
  background: url(../images/ico-search.svg) 50% 50% no-repeat;
  background-size: 1.375rem 1.375rem;
  color: transparent;
}
.header-bar {
  display: flex;
  align-items: center;
  padding: 0 var(--spacing);
  background-color: #2650c8;
  gap: 1em;
}
.header-logo {
  padding: 1em 0;
}
.header-logo svg {
  display: block;
  min-width: 13em;
}
.header-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #2650c8;
  transition: all 0.25s;
  transform: translateX(100%);
}
@media screen and (min-width: 900px) {
  .header-menu {
    position: relative;
    flex-grow: 10;
    transition: none;
    transform: none;
  }
}
.header-menu.visible {
  transform: translateX(0%);
}
.header-menu .menu {
  position: relative;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .header-menu .menu {
    display: flex;
    justify-content: center;
    gap: 4em;
  }
}
.header-menu .menu .menu-item {
  position: relative;
  margin: 0;
  padding: 0;
  font-weight: 700;
}
.header-menu .menu .menu-item a {
  color: #dbf0ff;
  white-space: nowrap;
}
.header-menu .menu .menu-item .is-active::after {
  position: absolute;
  top: 0;
  left: -0.5em;
  color: #ffac46;
  content: "•";
  font-size: 2em;
  line-height: 0.75;
}
@media screen and (min-width: 900px) {
  .header-menu .menu .menu-item .is-active::after {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffac46;
    content: "";
  }
}
@media screen and (min-width: 900px) {
  .header-menu .menu .menu-item:hover .menu {
    display: block;
  }
}
.header-menu .menu .menu-item:has(.menu-item > a.is-active)::after {
  position: absolute;
  top: 0;
  left: -0.5em;
  color: #ffac46;
  content: "•";
  font-size: 2em;
  line-height: 0.75;
}
@media screen and (min-width: 900px) {
  .header-menu .menu .menu-item:has(.menu-item > a.is-active)::after {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffac46;
    content: "";
  }
}
.header-menu .menu .menu-item--expanded {
  list-style-type: none;
  list-style-image: none;
}
@media screen and (min-width: 900px) {
  .header-menu .menu .menu-item--expanded::before {
    position: absolute;
    left: -1em;
    display: block;
    color: #dbf0ff;
    content: "›";
    transform: rotate(90deg);
  }
}
.header-menu .menu .menu {
  padding: 0 0 0 1em;
  text-transform: none;
}
@media screen and (min-width: 900px) {
  .header-menu .menu .menu {
    position: absolute;
    left: -2em;
    display: none;
    padding: 1em;
    background-color: #2650c8;
  }
}
.header-menu .menu .menu .menu-item a {
  display: inline-block;
  padding: 0.25em 1em;
  line-height: 1.2;
  font-weight: 400;
  /*edited*/
}
.header-menu .menu .menu .menu-item a:hover {
  background-color: #ffac46;
  color: #0c38b3;
}
.header-menu .menu .menu .menu-item .is-active {
  background: #ffac46;
  color: #0c38b3;
}
.header-menu .menu .menu .menu-item .is-active::after {
  display: none;
}
/**
 * Swiper 11.1.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 30, 2024
 */
/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, 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');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-slide {
  margin-bottom: 2em;
}
.swiper-pagination-bullets {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.swiper-pagination-bullet {
  width: 1em;
  height: 1em;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  background-color: #ffac46;
  border-radius: 9em;
}
.swiper-pagination-bullet-active::before {
  background-color: #fff;
}
.forum-table,
table[id*='forum-topic'] {
  border-collapse: collapse;
  border: 1px solid #2650c8;
  width: 100%;
}
.forum-table thead,
table[id*='forum-topic'] thead {
  background-color: #2650c8;
  color: #fff;
}
.forum-table thead a,
table[id*='forum-topic'] thead a {
  color: #fff;
}
.forum-table th,
table[id*='forum-topic'] th {
  padding: 0.5em;
  text-align: left;
}
.forum-table tbody > tr,
table[id*='forum-topic'] tbody > tr {
  border-bottom: 1px solid #2650c8;
}
.forum-table tbody > tr:nth-child(even),
table[id*='forum-topic'] tbody > tr:nth-child(even) {
  background-color: #dbf0ff;
}
.forum-table td,
table[id*='forum-topic'] td {
  padding: 0.5em;
}
.user-login-form .form-item label {
  display: block;
}
input {
  border: 1px solid #2650c8;
  padding: 0.35em 1em 0.25em 1em;
}
input[type=text],
input[type=password] {
  border: 1px solid #2650c8;
}
input[type=submit] {
  display: inline-block;
  padding: 0.35em 1em 0.25em 1em;
  border-radius: 9em;
  background-color: #ffac46;
  text-transform: uppercase;
  border: 1px solid #ffac46;
  color: #0c38b3;
}
label {
  display: block;
}
.webform-submission-form fieldset {
  border: 1px solid #2650c8;
}
.webform-submission-prihlaska-do-azz-form .form-item-souhlas-zverejneni {
  display: grid;
  grid-template-columns: 2em auto;
  grid-template-areas: 'i l' 'i d';
}
.webform-submission-prihlaska-do-azz-form .form-item-souhlas-zverejneni label {
  grid-area: l;
}
.webform-submission-prihlaska-do-azz-form #edit-souhlas-zverejneni {
  width: 1em;
  grid-area: i;
}
.webform-submission-prihlaska-do-azz-form .form-type-checkbox .description {
  margin-left: 0;
  grid-area: d;
}
/**
 * OokHamburger
 *
 * Pure CSS animated hamburger menu button.
 *
 * Exmaple code:
 *
 * <div id="hamburger">
 *   <span>Toggle menu</span>
 * </div>
 *
 * <nav id="main-menu" class="main-menu" role="navigation">
 *   <ul>
 *     <li><a href="#">link</a></li>
 *   </ul>
 * </nav>
 *
 * <script>
 *   var toggle = document.getElementById('hamburger');
 *   var mainMenu = document.getElementById('main-menu');
 *   if(toggle) {
 *     toggle.addEventListener( "click", function(e) {
 *       e.preventDefault();
 *       (this.classList.contains("active") === true) ? this.classList.remove("active") : this.classList.add("active");
 *       (mainMenu.classList.contains("visible") === true) ? mainMenu.classList.remove("visible") : mainMenu.classList.add("visible");
 *     });
 *   }
 * </script>
 */
#hamburger {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 12vmin;
  height: 12vmin;
  background: black;
  font-size: 0;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 255;
}
@media all and (min-width: 1000px) {
  #hamburger {
    display: none;
  }
}
#hamburger span {
  position: absolute;
  top: 46.875%;
  left: 18.75%;
  width: 62.5%;
  height: 0.75vmin;
  background-color: white;
  transition: background 0s 0.2s;
}
#hamburger span:before,
#hamburger span:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  transition-delay: 0.2s, 0s;
  transition-duration: 0.2s, 0.2s;
}
#hamburger span:before {
  top: -400%;
  transition-property: top, transform;
}
#hamburger span:after {
  bottom: -400%;
  transition-property: bottom, transform;
}
#hamburger.active span {
  background: none;
}
#hamburger.active span:before {
  top: 0%;
  transition-delay: 0s, 0.2s;
  transform: rotate(45deg);
}
#hamburger.active span:after {
  bottom: 0%;
  transition-delay: 0s, 0.2s;
  transform: rotate(-45deg);
}
@media screen and (min-width: 900px) {
  .mycontacts {
    display: flex;
    gap: var(--spacing);
  }
}
.mycontacts h2 {
  white-space: nowrap;
}
.mycontacts iframe {
  margin-top: 2em;
}
.field--name-field-obrazek-zpravodaj {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.field--name-field-obrazek-aktualita {
  margin-top: 2em;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
/*# sourceMappingURL=./style.css.map */