@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,700;1,400;1,700&display=swap')

.hn {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
.h13 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.h46 {
  margin-top: 10px;
  margin-bottom: 10px;
}


/*====================== 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: 1px solid #ddd;
  border-radius: 5px;
  padding: 13px;
  -webkit-box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  font-family: Arial, Helvetica, sans-serif;
}
input[type=tel] {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 13px;  width: 100%;
  -webkit-box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  font-family: Arial, Helvetica, sans-serif;
}
input[type=date] {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 13px;
  width: 100%;
  -webkit-box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  font-family: Arial, Helvetica, sans-serif;
}
input[type=phone] {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 13px;
  -webkit-box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  font-family: Arial, Helvetica, sans-serif;
}
input[type=text] {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 13px;
  -webkit-box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  font-family: Arial, Helvetica, sans-serif;
}
input[type=password] {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 13px;
  -webkit-box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  font-family: Arial, Helvetica, sans-serif;
}
textarea {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 13px;
  width: 100%;
  -webkit-box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  box-shadow: inset 5px -5px 5px -5px rgba(0, 0, 0, 0.15);
  font-family: Arial, Helvetica, sans-serif;
}

.webform-flex--1 .webform-button--submit {
  margin-top: 27px;
  width: 100%;
}

.form-item {
  padding: 0 0 15px 0;width: 100%;
}

.webform-flex--container > .form-item > input:not([type="checkbox"]), .webform-flex--container > .form-item > select {

  min-height: 51px;
}

.webform-flexbox {
  display: flex;
  margin: 0.5em -0.5em;
}

.form-item label {
  display: block;
  padding-bottom: 8px;
}
/*=========================== Buttons styling =========================*/
.button {
  color: #fff;
  background: #184998;
  padding: 0.65rem 1.6rem;
  border-radius: 5px;
  border-width: 0;
  font-weight: bold;
  margin: 0 0.4rem 0.4rem 0;
  display: inline-block;
  text-decoration: none;
  transition: color 0.1s ease, background-color 0.1s ease, border 0.1s ease, box-shadow 0.1s ease;
}
.button:hover {
  background:#0072d6;
  color: #fff;
}
.button--primary {
  background: #184998;
  color: white;
  padding: 1rem 2.75rem;
}
.button--primary:hover {
  background: #0072d6;
  color: #fff;
}
.button--secondary {
  border: 0.2rem solid #002d10;
  background: transparent;
  color: #002d10;
}
.button--secondary:hover {
  color: #006022;
  text-decoration: underline;
  background-color: transparent;
  box-shadow: 0 0.3rem 0.43rem -0.125rem rgba(0, 0, 0, 0.2);
}
.button--inverted {
  color: #57be1b;
  background: #ffffff;
}
.button--inverted:hover {
  color: #980009;
  background: #ffffff;
}
.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;
}
/*=====================  Main menu styling =============================== */
.menu--main {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: right;
  position: relative;

}
.menu__item--main {
  list-style: none;
  min-width: 100px;
  position: relative;
}
.menu__link.is-active > .link__title {
  font-weight: bold;
}
.menu__item--append > .menu__link {
  font-style: italic;
}
.menu__link--main {
  color: white;
  padding: 0 1.3em;
  width: 100%;
  display: table;
  text-align: center;
  text-decoration: none;

 /*
  padding-top: 2em;
  padding-bottom: 1em;
  */
  color: #03499A;
  height: 80px;
}
.menu__link--main span {
  display: table-cell;
  vertical-align: middle;
}
.menu__link--main:hover,
.menu__item--main:hover > .menu__link--main {
 color: #CA000D;
 text-decoration: underline;
}

.menu__link--main.menu__link--parent > .menu__arrow {
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  content: '';
  top: 2.6em;
  margin-top: -5px;
  right: 10px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
}
.menu__item--main:hover .menu__link--main.menu__link--parent > .menu__arrow {
  border-bottom: 1px solid white;
  border-right: 1px solid white;
}
.menu__item--main.menu__item--parent {
  position: relative;
}
.menu__item--main.menu__item--parent > ul {
  display: block;
  overflow: hidden;
  max-height: 0;
  width: 20em;
  opacity: 0;
  top: 100%;
  padding: 0;
  z-index: 29;
  position: absolute;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
  background: #004719;
}
.menu--main.menu--child > .menu__item {
  list-style: none;
}
.menu--main.menu--child > .menu__item > .menu__link {
  display: table;
  padding: 13px 8px 13px 1.3em;
  text-align: left;
  font-style: italic;
}
.menu--main.menu--child > .menu__item > .menu__link:hover {
  background-color: #00561f;
}
.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: 1500px ;
}





@media (max-width: 990px) {
  .user-logged-in #navbar.fixed {
    top: 0;
  }
  #toolbar-administration {
    display: none;
  }
  body {
    padding-top: 0!important;
  }
  body.toolbar-tray-open.toolbar-vertical.toolbar-fixed {
    margin-left: 0!important;
  }
}
@media (max-width: 520px) {
  #edit-reset.button {
    padding: 9px 30px 10px 15px;
    font-size: 14px;
  }
}
@media (max-width: 378px) {
  .region--brand {
    max-width: 250px;
  }
}
@media (max-width: 990px) {
  header#navbar {
    height: 4.5em;
  }
  header#navbar nav#block-tpp-main-menu {
    position: absolute;
    right: 0;
    top: 4.5em;
    width: 22em;
    transition: box-shadow 0.4s ease-in;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.33);
  }
  header#navbar .menu--main.menu--parent {
    display: block;
    width: 100%;
  }
  header#navbar .menu__arrow {
    display: none;
  }
  header#navbar .menu__link--main {
    display: block;
    text-align: left;
    white-space: nowrap;
    max-height: 0;
    padding: 0 1em;
    overflow: hidden;
    color: rgba(255, 255, 255, 0);
text-align: center;
    transition: max-height 0.4s ease-in, padding 0.4s ease-in, 0.4s 0.2s color;
 
  }

  header#navbar ul {
    background: #fefefe; 
    box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.2);
  }




  header#navbar ul.menu--child {
    max-height: none;
    width: 100%;
    position: relative;
    opacity: 1;
    padding-left: 1em;
  }
  header#navbar .active .menu__link--main {
    max-height: 4em;
    padding: 0.9em;display: table;
    color: #555;
    background: #fff;
    position: relative;
    
  }

    header#navbar .active .menu__link--main:after {
      position: absolute;
      top: 0;
      left: 10%;
      width: 80%;
      height: 1px;
      background: #ddd;
      content: "";
    }


  header#navbar .active nav#block-tpp-main-menu {
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.33);
  }
  .icon--burger {
    position: absolute;
    top: calc(50% - 18px);
    right: 6px;
    width: 44px;
    height: 44px;
    display: block;
    z-index: 1060;
    background: transparent;
  }
  .icon--burger * {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .icon--burger__top,
  .icon--burger__center,
  .icon--burger__bottom {
    display: block;
    width: 32px;
    height: 5px;

    position: absolute;
    top: 6px;
    left: 3px;
  }
  .icon--burger__center {
    top: 16px;
    opacity: 1;
  }
  .icon--burger__bottom {
    top: 26px;
  }
  .active.icon--burger .icon--burger__center {
    opacity: 0;
  }
  .active.icon--burger .icon--burger__top {
    transform: rotate(45deg);background: #ca000d;
    top: 16px;
  }
  .active.icon--burger .icon--burger__bottom {
    transform: rotate(-45deg);background: #ca000d;
    top: 16px;
  }
}
/*================================ Global styling ============================== */
body {
  font-family: "Ubuntu", sans-serif;
  padding: 0;
  margin: 0;
}


html,
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.flex {
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 100%;
}
.flex > * {
  -webkit-flex: 1 1 0;
  -moz-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
}
.flex .flex--center {
  align-items: center;
  -webkit-align-items: center;
}
.flex .flex--stretch {
  align-items: center;
  -webkit-align-items: center;
}
.container {
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
}
#block-tpp-page-title {
  text-align: center;
}
.page-wrapper {
  margin: auto;
}
strong {
  font-weight: 500;
}
i {
  font-style: italic;
}
p {
  line-height: 1.2;
  letter-spacing: 0.02em;
}

li {
  letter-spacing: 0.02em;
}



p + p {
  margin-top: 1em;
}
a {
  color: inherit;
}
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: 500;
  line-height: 1.1;
  color: inherit;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: bold;
}
@media (max-width: 799px) {
  h1 {
    font-size: 28.8px;
  }
}
h2 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: #CA000D;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 30px;
}
@media (max-width: 799px) {
  h2 {
    font-size: 27px;
  }
}
h3 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: #03499A;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
}
h4 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
}
h5 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
}
h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
picture > img {
  margin-left: auto;
  margin-right: auto;
}
.region--content {
  padding-top: 0;
  min-height: calc(100vh - 22em);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 990px) {
  .region--content {
    padding-top: 4em;
  }
}
/*============================ Content  ===================================== */

#content {
  box-shadow:0 0 5px 0 rgba(0,0,0,0.5);
  max-width: 1210px;
  margin: 0 auto 50px auto;
  width: 90%;
  border-radius: 5px;
  padding: 35px ;
  position: relative;

}

.banner-bannervlevo .paragraph,
.banner-bannervpravo .paragraph{

  width: 100%;  
  max-width:160px; 
  margin:0;


}

.banner-bannervlevo,
.banner-bannervpravo {
  position: absolute;
  top: 0;
  width: 160px;
}

.banner-bannervlevo {right: calc(100% + 50px)}
.banner-bannervpravo {left: calc(100% + 50px)}

.more-info {
  position: absolute;
  top: 80px;
  width: 100%;
  left: 0;
}

.toolbar-horizontal .more-info {
  top: 160px;
}

.more-info .more-info__in {
  position: relative;
  max-width: 1210px;
  margin: 0 auto 0 auto;
}

.more-info .more-info__in #block-tpp-informacearezervacenonstop {
  font-size: 1.1em;
  line-height: 1.7em;
  color: #fff;
  background: rgba(2,73,154,0.6);
  position: absolute;
  top: 100%;
  right: 0;
  padding: 18px;
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}


.more-info .more-info__in #block-tpp-informacearezervacenonstop p {

 margin-bottom: 5px;  
 
}


.obrazek-k-clanku {
  max-width: 30%;
  float: right;
  margin-left: 30px;
}

.obrazek-k-clanku img {
  border-radius: 5px;
}

#content h1 {
  font-size: 46px;
  text-align: left;
  font-weight: normal;
  margin-top: 0; 
  color: #184998;
}

#content li,
#content p {
  font-size: 1.1em;
  line-height: 1.6em;
}

ol {
  list-style: decimal;
  margin-left: 20px;
}

ul {
  list-style: square;
  margin-left: 20px;
}

#content li {

  margin-bottom: 10px;
}

.page-wrapper {
  padding-top: 350px ;
  background: url("../images/image-bg.png");
  background-size: auto 400px;
  background-position: 50% 0;
  background-repeat:  repeat-x;
}

.destinace-flex {display: flex;flex-wrap: wrap;}
.destinace-item {
  flex: 1 50%;
  max-width: 48%;
  margin: 1%;
}

.destinace-item a {
  text-decoration: none;
}


.clanek-in img {
  max-width: 200px;
  height: auto;
  float: left;
  margin-right: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.field--name-field-cerveny-titulek-1, 
.field--name-field-cerveny-titulek-2 {
  margin: 20px -45px;
  padding: 15px 45px;
  color: #fff;
  background: #CA000D;
  border-radius: 5px;
  font-size: 20px;
  letter-spacing: 0.05em;
}

/*============================ Navbar ===================================== */
header#navbar {
  background-color: #fff;
  display: flex;
  box-shadow: 0 0 10px -1px rgba(0,0,0,0.3);
}
header#navbar a {


}
@media all and (min-width: 1270px) {
  header#navbar {

  }
}
@media all and (min-width: 1920px) {
  header#navbar {

  }
}
header#navbar.fixed {
  position: fixed;
  width: 100%;
  z-index: 99;
  top: 0;
  left: 0;

}

.toolbar-horizontal header#navbar.fixed {

  top: 79px;
  
}

header#navbar .inside-nav  {
  display: flex;
  margin: 0 auto;
  width: 90%;
  max-width: 1210px;
}  
header#navbar  .region--brand {
  max-width: 250px;
  padding: 0.3em 0.8em;
  flex: 1;
}
header#navbar nav {
  -webkit-flex: 5  ;
  -moz-flex: 5  ;
  -ms-flex: 5  ;
  flex: 5  ;
  max-width: calc(100% - 250px);
  position: relative;
}
@media (max-width: 990px) {
  header#navbar > nav {
    max-width: none;
    overflow-y: scroll;
    max-height: calc(100vh - 4.5em);
  }
}
/*================================ 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;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #aaa;
  width: 6px;
  height: 11px;
  left: 9px;
  top: 4px;
  content: '';
}
.edit-link:before {
  position: absolute;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  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;
}
/*================================ 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 ===============================*/

.region--footer-cp-in {
  color: #fff;
  background: #333;
  padding: 30px;
  text-align: center;
}

#block-tpp-paticka {
  float: left; 
  width: calc(100% - 300px);
}

#block-tpp-paticka ul.menu--footer {
 block
 padding:0;
 margin: 0;
}
#block-tpp-paticka ul.menu--footer:after {
 block
 position: relative;
 clear: both;
 content: "";
}
#block-tpp-paticka ul li{
  float: left;
  list-style: none;
  padding:10px;
  margin: 0;
}
#block-tpp-socialnisite {
  float: right;width: 300px;
}
#block-tpp-socialnisite .field--name-field-facebook,
#block-tpp-socialnisite .field--name-field-twitter,
#block-tpp-socialnisite .field--name-field-instagram,
#block-tpp-socialnisite .field--name-field-youtube {
  position: relative;
  float: left;
  width: 32px;
  height: 32px;
  display: block;
  text-indent: -5555px;
  overflow: hidden;
  margin-left: 15px;
  background: url("../images/fb-icon.svg") 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;

}


#block-tpp-socialnisite .field--name-field-youtube {
  background-image: url("../images/yt-icon.svg")  ;
}

#block-tpp-socialnisite .field--name-field-twitter  {
  background-image: url("../images/x-icon.svg");
}


#block-tpp-socialnisite .field--name-field-instagram  {
  background-image: url("../images/in-icon.svg");
}




.region--footer-in {
  background: #202020;
  color#fff;
  padding: 30px 0;

}

.region--footer-in footer.region--footer a {

  color:#fff;

}



footer.region--footer:after {
  position: relative;
  clear: both;
  content: "";
  display: block;
}

@media all and (min-width: 1270px) {
 .region--footer-in footer.region--footer  {
  margin: 0 auto;
  width: 90%;
  max-width: 1210px;
}
}
#block-sitebranding {
  margin-left: 2em;
  width: 100%;
  margin-bottom: 1.5em;
}
@media (max-width: 799px) {
  #block-sitebranding {
    width: auto;
    display: inline-block;
    margin-left: 0;
  }
}
#block-sitebranding a {
  display: inline-block;
  width: 10em;
}
#block-copyright {
  padding-top: 1em;
  text-align: center;
  width: 100%;
}
/*# sourceMappingURL=global.css.map */


@media all and (max-width: 1600px) {

  .banner-bannervlevo {right: calc(100% + 10px);}
  .banner-bannervpravo {left: calc(100% + 10px)}

  #content {

    max-width: 992px;

  }
  }

  @media all and (max-width: 1350px) {

    .banner-bannervpravo,
    .banner-bannervlevo {
      display: none;
    }

  }





.page-node-type--hlavni-stranka #content h1 {
  font-weight: 600;
  color: #184998;
}



.field--name-field-podtitulek-hp {
    position: absolute;
    top: -65px;
    left: 290px;
    font-size: 14px;
    line-height: 20px;
    color: #979797;
}



  table td {
    padding: 8px;
    border-top: 1px solid #ddd;
  }

  table tr:nth-child(even) {
    background: #eee;
  }



  @media all and (max-width: 992px) {

#content li, #content p {
    font-size: 1em;
    line-height: 1.3em;
}

  table td {
    font-size: 13px;
  }

.tablewrapper {
  overflow-x:auto ;
  position: relative; 
  width: 100%;
  border: 1px solid #184998;

}


 

.tablewrapper table {
  min-width: 800px;
  
}


      header#navbar nav {
    max-width: 100%;
  }

    .icon--burger__top, .icon--burger__center, .icon--burger__bottom {

      background: #184998;

    }

    .toolbar {
      display: none;
    }

    .toolbar-horizontal header#navbar.fixed {
      top: 0;
    }

    .more-info {
    position: absolute;
    top: 73px;
     
}

    header#navbar .inside-nav {

      width: 96%;

      position: relative;
    }

    .destinace-item {
      flex: 1 100%;
      max-width: 96%;
      margin: 2%;
    }


    #content {
      padding: 25px;
    }

    .region--content {
      padding-top: 1em;
    }

    .page-node-type--hlavni-stranka .region--content {
      padding-top: 0em;
    }

    .webform-flexbox {
      flex-wrap: wrap;
    }

    .field--name-field-cerveny-titulek-1, 
    .field--name-field-cerveny-titulek-2 {
    margin: 20px -25px;
    padding: 15px 20px;
    border-radius: 0;
    font-size: 16px;
}

header#navbar .region--brand {
    max-width: 168px;
   
}

#block-tpp-paticka {
    float: none;
    width: 100%  ;
    margin-bottom: 15px;
}

#block-tpp-socialnisite {
    float: none;
    width: 100%  ;
}

#block-tpp-paticka:after,
#block-tpp-socialnisite:after{
  display: block;
  position: relative;
  clear: both;
  content: "";
}

 
#edit-flexbox-02 .webform-flex--1 {
    flex: 2;
}


  }


@media all and (max-width: 767px) {
   .webform-flex--1 {
    flex: 1 96%;
    max-width: 96%;
    margin:0 2%;
  }   

  .webform-flex--3 {
    flex: 1 96%;
    max-width: 96%;
    margin:0 2%;
  }

 .webform-flex--container > .form-item > input:not([type="checkbox"]), 
 .webform-flex--container > .form-item > textarea,
 .webform-flex--container > .form-item > select {
     max-width: 100%;
  }
}


@media all and (max-width: 760px) {

  .field--name-field-podtitulek-hp {
    position: relative;
    top: auto;
    left: auto;
   
}


 .clanek-in img {
  max-width: 100px;

}
}





@media all and (max-width: 580px) {
  #content li, #content p {
    font-size: 0.9em;
    line-height: 1.3em;
  }

    .more-info {
    position: absolute;
 
    width: 96%;
    left: 2%;
}

  #content {
    width: 96%;
    padding: 15px;
  }

}