@font-face {
  src: url(../font/century-gothic-grassetto.ttf);
  font-family: CenturyGothicBold;
  font-weight: 400;
}
/*@font-face{
    src: url(../font/Roboto/Roboto-Regular.ttf);
    font-family: Roboto;
    font-weight: 400;
}
@font-face{
    src: url(../font/Roboto/Roboto-Bold.ttf);
    font-family: Roboto;
    font-weight: 700;
}*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-margin-top: 180px;
}

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  background-color: #fafafe;
  font-family: CenturyGothicBold, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #180d00;
}
@media all and (max-width: 500px) {
  body {
    font-size: 17px;
  }
}

main {
  display: block;
}

#main strong {
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration-line: none;
  text-underline-offset: 2.5px;
  text-decoration-thickness: 1px;
}
a.outer:after {
  display: inline-block;
  content: "";
  width: 0.8em;
  height: 0.8em;
  background-image: url(../img/icon/outer-link.svg);
  background-size: contain;
  background-position: center;
}

h1, h2, h3 {
  font-weight: 700;
  text-transform: uppercase;
}

h1.def {
  text-align: center;
  text-transform: uppercase;
  font-size: 46px;
}
@media all and (max-width: 1200px) {
  h1.def {
    font-size: 42px;
  }
}
@media all and (max-width: 1000px) {
  h1.def {
    font-size: 40px;
  }
}
@media all and (max-width: 800px) {
  h1.def {
    font-size: 36px;
  }
}
@media all and (max-width: 600px) {
  h1.def {
    font-size: 32px;
  }
}
@media all and (max-width: 500px) {
  h1.def {
    font-size: 28px;
  }
}

@media all and (max-width: 900px) {
  h2 {
    font-size: 24px;
  }
}
@media all and (max-width: 700px) {
  h2 {
    font-size: 22px;
  }
}
@media all and (max-width: 500px) {
  h2 {
    font-size: 20px;
    font-weight: 600;
  }
}

.btn-cont {
  margin-top: 40px;
  text-align: center;
}
.btn-cont.left {
  text-align: left;
}

.btn, button, input[type=submit] {
  display: inline-block;
  border: 0;
  background: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

button, input[type=submit] {
  appearance: none;
}

.btn {
  appearance: none;
}
.btn.def {
  height: 40px;
  padding: 0 25px;
  border: 0;
  border-radius: 3px;
  line-height: 40px;
  font-weight: 700;
  background: #004f6a;
  text-decoration: none !important;
  color: white;
  transition: background-color 0.3s ease;
}
.btn.def:hover {
  background: #0089b6;
}
.btn.def[type=submit] {
  background: #0089b6;
}
.btn.def[type=submit]:hover {
  background: #00769d;
}
.btn.def.neutral {
  border-color: #111;
  background-color: #111;
}
.btn.def.neutral:hover {
  background-color: black;
}
.btn.def.odstranit {
  border-color: #a00000;
  background-color: #a00000;
}
.btn.def.odstranit:hover {
  background-color: #870000;
}
.btn.def.submit {
  border-color: #098509;
  background-color: #098509;
}
.btn.def.submit:hover {
  background-color: #076d07;
}

.link.def {
  color: #0089b6;
  text-decoration: underline;
}
.link.def:hover {
  text-decoration: none;
}

small {
  font-weight: 400;
}

.Text h1 {
  margin-bottom: 15px;
}
.Text h2 {
  margin-top: 30px;
  margin-bottom: 15px;
}
.Text p {
  font-weight: 400;
  padding: 10px 0;
  line-height: 28px;
  text-align: justify;
}
.Text strong {
  font-weight: 700;
}
.Text ul {
  list-style-position: inside;
  list-style: none;
  margin: 10px 0;
}
.Text ul li {
  position: relative;
  padding: 7px 0;
  padding-left: 20px;
  line-height: 24px;
}
.Text ul li:before {
  content: "";
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 17px;
  left: 0;
  line-height: 24px;
  font-size: 24px;
  vertical-align: middle;
  background: #004f6a;
  border: 2px solid #004f6a;
}
.Text ul li h3 {
  display: inline;
}
.Text ol {
  list-style: none;
  list-style-position: inside;
  counter-reset: ol_counter;
  margin: 10px 0;
}
.Text ol li {
  display: list-item;
  position: relative;
  padding: 7px 0;
  padding-left: 24px;
  line-height: 24px;
}
.Text ol li:before {
  content: counter(ol_counter) ")";
  counter-increment: ol_counter;
  display: inline-block;
  vertical-align: top;
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #111;
}
.Text table:not(.def) {
  margin: 15px 0;
  border-collapse: collapse;
  border: 1px solid #111;
}
.Text table:not(.def) th, .Text table:not(.def) td {
  padding: 10px;
  border: 1px solid #111;
  font-weight: 400;
  background: white;
}
.Text table:not(.def) th {
  background: #fafafe;
  font-weight: 700;
}
.Text table.def {
  margin: 10px 0;
}
.Text a {
  text-decoration: underline;
}
.Text a:hover {
  text-decoration: none;
}
.Text .btn.def {
  margin: 15px 0;
}
.Text video {
  margin: 15px 0;
  width: 100%;
  max-width: 600px;
}

ul.def, ol.def {
  list-style-position: inside;
}

table.def {
  width: 100%;
  border-collapse: collapse;
}
table.def.def td, table.def.def th {
  border-width: 2px;
  border-left: 0;
  border-color: white;
}
table.def.def th {
  background: #004f6a;
  text-align: left;
  color: white;
}
table.def.def td {
  padding: 15px 10px;
}
table.def tr:not(:last-of-type) th, table.def tr:not(:last-of-type) td {
  border-bottom: 2px solid #004f6a;
}
table.def thead th {
  height: 60px;
  border-bottom: 3px solid #004f6a;
  text-align: center;
}
table.def tfoot td {
  border-top: 3px solid #004f6a;
}
table.def th, table.def td {
  padding: 10px;
  text-align: left;
}
table.def th:not(:first-child), table.def td:not(:first-child) {
  border-left: 2px solid #004f6a;
}
table.def th.short, table.def td.short {
  width: 120px;
}
table.def th.r-align, table.def td.r-align {
  text-align: right;
}
table.def th a, table.def td a {
  text-decoration: underline;
}
table.def th a:hover, table.def td a:hover {
  text-decoration: none;
}
table.def td time {
  white-space: nowrap;
  font-size: 0.9em;
  font-weight: 700;
}
table.def td.actions {
  white-space: nowrap;
}
table.def tr[data-visible="0"] {
  opacity: 0.4;
}
table.def tr[data-visible="0"] .akce.visibility img.not-visible {
  display: block;
}
table.def tr[data-visible="0"] .akce.visibility img.visible {
  display: none;
}

.akce {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  width: 25px;
  height: 25px;
  overflow: hidden;
  margin: 0 5px;
  position: relative;
  cursor: pointer;
  background: #111;
  color: white;
}
.akce.visibility img {
  width: 80%;
  height: 80%;
  position: absolute;
  top: 10%;
  left: 10%;
}
.akce.visibility img.not-visible {
  display: none;
}
.akce.number {
  width: auto;
  padding: 0 6px;
  cursor: default;
}
.akce img {
  width: 60%;
  height: 60%;
  /*position: absolute;
  top: 20%;
  left: 20%;*/
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.article.def {
  border-radius: 5px;
  background: #004f6a;
  box-shadow: 5px 5px 25px 0 rgba(0, 137, 182, 0.1);
  position: relative;
}
.article.def h1, .article.def p {
  padding: 25px 35px 35px;
}
@media all and (max-width: 420px) {
  .article.def h1, .article.def p {
    padding: 20px 15px 20px;
  }
}
.article.def .bg {
  height: 200px;
  width: 100%;
  object-fit: cover;
  position: absolute;
}
.article.def h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding-bottom: 25px;
  background: rgba(0, 79, 106, 0.1);
  background-size: cover;
  text-align: center;
  font-size: 25px;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  color: white;
}
.article.def h1:hover {
  text-decoration: underline;
}
.article.def h1:after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../img/flat-hill.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.article.def p {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  line-height: 25px;
  color: white;
}
.article.def p.time {
  padding: 0;
}
@media all and (max-width: 420px) {
  .article.def p.time {
    padding: 15px;
  }
}
.article.def p:not(.time) {
  padding: 30px;
}
@media all and (max-width: 420px) {
  .article.def p:not(.time) {
    padding: 15px;
  }
}
.article.def time {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 30px;
  left: -30px;
  border-radius: 999px;
  background: #0089b6;
  text-align: center;
  color: white;
}
@media all and (max-width: 420px) {
  .article.def time {
    display: inline-block;
    height: auto;
    width: auto;
    position: static;
    border-radius: 0;
    padding: 5px 10px;
    white-space: nowrap;
  }
}
.article.def .table-cont {
  padding: 20px;
}
.article.def table.def tr:nth-of-type(odd) {
  background: white;
}
.article.def table.def tr:nth-of-type(even) {
  background: #83e0ff;
}
.article.def table.def td, .article.def table.def th {
  border-left: 0;
}
.article.def table.def th {
  background: #004f6a;
  text-align: left;
  color: white;
  border-color: white;
}

.Glr {
  display: flex;
  flex-flow: wrap;
}
.Glr .pic {
  width: 160px;
  height: 20vw;
  max-height: 120px;
  background-color: #111;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
  box-shadow: 5px 5px 25px 0 rgba(0, 137, 182, 0.1);
}

input, textarea, select {
  height: 40px;
  padding: 0 17px;
  border: 0;
  background: #fafafe;
  line-height: 34px;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
}

.wrp {
  margin: auto auto;
  width: calc(100% - 20px);
  max-width: 1400px;
}
.wrp.small {
  max-width: 900px;
}
@media all and (max-width: 1700px) {
  .wrp {
    max-width: 1200px;
  }
}

.orange-filter:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #111;
  mix-blend-mode: hue;
}
.orange-filter.video:after {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/icon/play.svg);
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(5px 3px 10px rgba(0, 0, 0, 0.05));
}
.orange-filter.playing:before, .orange-filter.playing:after {
  display: none !important;
}

[data-appeared] {
  position: relative;
  opacity: 0;
}
[data-appeared][data-appeared="1"] {
  opacity: 1;
}

.cf:after {
  content: "";
  display: block;
  clear: both;
}

.template {
  display: none;
}

template {
  display: none;
}

.popup-backdrop {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999999999;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.popup-backdrop.active {
  opacity: 1;
  pointer-events: all;
}
.popup-backdrop.active .popup {
  animation: showPopup 0.2s ease;
  animation-fill-mode: both;
  pointer-events: all;
}
.popup-backdrop.hiding .popup {
  animation: hidePopup 0.2s ease;
  animation-fill-mode: both;
}

.popup {
  width: calc(100% - 20px);
  max-width: 1000px;
  max-height: 90vh;
  position: fixed;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px 40px 20px;
  border-radius: 4px;
  background: white;
  opacity: 0;
  transition: opacity 0.5s ease;
  box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}
.popup.active {
  opacity: 1;
  pointer-events: all;
}
.popup h2 {
  margin-bottom: 15px;
}
.popup .btn.close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  margin: 0;
  padding: 0;
  /*border: 1px solid rgb(230,230,230);*/
  border: 0;
  border-radius: 0;
  background: white;
  cursor: pointer;
  line-height: auto;
}
.popup .btn.close img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  position: absolute;
  top: calc(50% - 7px);
  left: calc(50% - 7px);
  filter: brightness(0);
}
.popup .popup-content {
  max-height: calc(90vh - 50px);
  overflow-y: auto;
}
.popup .popup-content .input {
  padding: 10px 0;
}
.popup .popup-content .input label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}
.popup .popup-content .input input {
  width: 100%;
}
.popup .btn-area {
  padding: 20px 0;
  text-align: center;
}
.popup .btn-area .btn {
  margin: 15px;
  font-weight: 700;
  font-size: 18px;
  color: white;
  text-shadow: 0 1.5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}
.popup[data-deleted="0"] .return {
  display: none;
}
.popup[data-deleted="1"] .delete {
  display: none;
}

@keyframes showPopup {
  0% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
@keyframes hidePopup {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
}

/*# sourceMappingURL=default.css.map */
