.hn {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
.h13 {
  margin-top: 0.4em;
  margin-bottom: 0.25em;
  font-weight: bold;
  font-family: 'Termina', sans-serif;
}
.h46 {
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}
/*====================== 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 #3f4e55;
  padding: 1em 1.5em;
  font-family: 'Montserrat', sans-serif;
  border-radius: 0.6rem;
  max-width: 100%;
}
input[type=tel] {
  border: 0.1rem solid #3f4e55;
  padding: 1em 1.5em;
  font-family: 'Montserrat', sans-serif;
  border-radius: 0.6rem;
  max-width: 100%;
}
input[type=text] {
  border: 0.1rem solid #3f4e55;
  padding: 1em 1.5em;
  font-family: 'Montserrat', sans-serif;
  border-radius: 0.6rem;
  max-width: 100%;
}
input[type=password] {
  border: 0.1rem solid #3f4e55;
  padding: 1em 1.5em;
  font-family: 'Montserrat', sans-serif;
  border-radius: 0.6rem;
  max-width: 100%;
}
input[type=submit] {
  cursor: pointer;
}
select {
  border-radius: 0.1em;
  border: 0.1em solid #b4c8d2;
  appearance: none;
  box-shadow: none;
  background-color: #fff;
  padding: 1em 2.5em 1em 1.5em;
  line-height: 1.2em;
  font-weight: bold;
  background-image: url("/themes/custom/tpp/images/caret_down.svg");
  background-repeat: no-repeat;
  background-size: 0.75em;
  background-position: calc(100% - 1em) center;
}
textarea {
  border: 0.1rem solid #3f4e55;
  padding: 1em 1.5em;
  font-family: 'Montserrat', sans-serif;
  border-radius: 0.6rem;
  max-width: 100%;
}
form .description {
  font-size: 0.8em;
}
.form-item {
  padding: 0 0 15px 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: 3em;
  padding: 1em 3em;
  background-color: white;
}
.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: #b4c8d2;
  font-weight: bold;
  font-size: 0.8em;
  cursor: pointer;
  transition: color 200ms ease-in, background-color 200ms ease-in;
}
.bef-exposed-form .form-radios label:hover {
  background-color: #3f4e55;
  color: white;
}
.bef-exposed-form .form-radios input[type=radio] {
  display: none;
}
.bef-exposed-form .form-radios input[type=radio]:checked + label {
  background-color: #3f4e55;
  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: #3f4e55;
  background: white;
  padding: 1rem 1.75rem;
  border-radius: 0.1rem;
  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.arrow {
  position: relative;
  padding-right: calc(1.75rem + 1.5em);
}
.button.arrow::after {
  content: '';
  display: block;
  position: absolute;
  width: 1.25em;
  height: 0.6875em;
  right: 0;
  top: calc(50% - 0.34375em);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.button.arrow::after {
  background-image: url("/themes/custom/tpp/images/arrow_right.svg");
}
.button.arrow::after {
  right: 1.25em;
}
.button--primary {
  color: #3f4e55;
  background: white;
  padding: 1rem 1.75rem;
  border-radius: 0.1rem;
  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;
  background: #afca0b;
  color: white;
}
.button--primary.arrow {
  position: relative;
  padding-right: calc(1.75rem + 1.5em);
}
.button--primary.arrow::after {
  content: '';
  display: block;
  position: absolute;
  width: 1.25em;
  height: 0.6875em;
  right: 0;
  top: calc(50% - 0.34375em);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.button--primary.arrow::after {
  background-image: url("/themes/custom/tpp/images/arrow_right.svg");
}
.button--primary.arrow::after {
  right: 1.25em;
}
.button--secondary {
  color: #3f4e55;
  background: white;
  padding: 1rem 1.75rem;
  border-radius: 0.1rem;
  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;
  background: #5bc5f2;
  color: white;
}
.button--secondary.arrow {
  position: relative;
  padding-right: calc(1.75rem + 1.5em);
}
.button--secondary.arrow::after {
  content: '';
  display: block;
  position: absolute;
  width: 1.25em;
  height: 0.6875em;
  right: 0;
  top: calc(50% - 0.34375em);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.button--secondary.arrow::after {
  background-image: url("/themes/custom/tpp/images/arrow_right.svg");
}
.button--secondary.arrow::after {
  right: 1.25em;
}
.button--secondary:hover {
  color: #ffffff;
  background-color: #5bc5f2;
  box-shadow: 0 0.3rem 0.43rem -0.125rem rgba(0, 0, 0, 0.2);
}
.button--inverted {
  color: #5bc5f2;
  background: #ffffff;
  border: 0.1rem solid #5bc5f2;
}
.button--inverted:hover {
  color: #5bc5f2;
  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;
}
.flexslider {
  background: none;
  border: none;
}
/*================================ Global styling ============================== */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #3f4e55;
  padding: 15px 0 0;
  transition: padding-top 200ms ease-in;
  background-color: #f3f5f6;
  font-weight: 500;
}
body.stan-scrolled {
  padding: 5px 0 0;
}
body.stan-scrolled .stan-bar {
  height: 5px;
}
.stan-bar {
  width: 100%;
  height: 15px;
  position: fixed;
  top: 0;
  z-index: 99;
  transition: height 200ms ease-in;
}
@media all and (max-width: 62rem) {
  .stan-bar {
    height: 5px;
  }
}
html,
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.paragraph ul,
.container--node-body ul {
  list-style: initial;
  padding-left: 1em;
}
.paragraph ol,
.container--node-body ol {
  list-style: decimal;
  padding-left: 1em;
}
.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 > * {
  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;
  -webkit-align-items: center;
}
.flex .flex--stretch {
  align-items: center;
  -webkit-align-items: center;
}
.container {
  width: 96%;
  max-width: 78rem;
  margin: 0 auto;
}
#block-tpp-page-title {
  text-align: center;
}
.page-wrapper {
  margin: auto;
}
strong {
  font-weight: bold;
}
small {
  font-size: 0.75rem;
}
i,
em {
  font-style: italic;
}
p {
  line-height: 1.2;
}
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: 500;
  line-height: 1.1;
  color: inherit;
  margin-top: 0.4em;
  margin-bottom: 0.25em;
  font-family: 'Termina', sans-serif;
  font-size: 2em;
  font-weight: bold;
}
@media (max-width: 50rem) {
  h1 {
    font-size: 1.6em;
  }
}
h2 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
  margin-top: 0.4em;
  margin-bottom: 0.25em;
  font-weight: bold;
  font-family: 'Termina', sans-serif;
  font-size: 1.75em;
}
@media (max-width: 50rem) {
  h2 {
    font-size: 1.575em;
  }
}
h3 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
  margin-top: 0.4em;
  margin-bottom: 0.25em;
  font-weight: bold;
  font-family: 'Termina', sans-serif;
  font-size: 1.5em;
}
@media (max-width: 50rem) {
  h3 {
    font-size: 1.35em;
  }
}
h4 {
  font-family: inherit;
  font-weight: 500;
  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: 500;
  line-height: 1.1;
  color: inherit;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
  font-size: 1em;
}
h6 {
  font-family: inherit;
  font-weight: 500;
  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;
}
blockquote,
q {
  quotes: '„' '“';
}
q::before {
  content: open-quote;
}
q::after {
  content: close-quote;
}
blockquote {
  text-align: justify;
}
blockquote > p:first-child::before {
  content: open-quote;
}
blockquote > p:last-child::after {
  content: close-quote;
}
.stan-social {
  display: flex;
  align-items: center;
}
.social-block {
  display: flex;
}
.social-block > li + li {
  margin-left: 1em;
}
.social-block.black .ico--fb,
.field-social.black .ico--fb {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  background-image: url("/themes/custom/tpp/images/social_black.svg");
  background-position-x: 0;
}
.social-block.black .ico--yt,
.field-social.black .ico--yt {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  background-image: url("/themes/custom/tpp/images/social_black.svg");
  background-position-x: 66.66666667%;
}
.social-block.black .ico--in,
.field-social.black .ico--in {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  background-image: url("/themes/custom/tpp/images/social_black.svg");
  background-position-x: 33.33333333%;
}
.social-block.black .ico--tw,
.field-social.black .ico--tw {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  background-image: url("/themes/custom/tpp/images/social_black.svg");
  background-position-x: 100%;
}
.social-block.white .ico--fb,
.field-social.white .ico--fb {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  background-image: url("/themes/custom/tpp/images/social_black.svg");
  background-position-x: 0;
  background-image: url("/themes/custom/tpp/images/social_white.svg");
}
.social-block.white .ico--yt,
.field-social.white .ico--yt {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  background-image: url("/themes/custom/tpp/images/social_black.svg");
  background-position-x: 66.66666667%;
  background-image: url("/themes/custom/tpp/images/social_white.svg");
}
.social-block.white .ico--in,
.field-social.white .ico--in {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  background-image: url("/themes/custom/tpp/images/social_black.svg");
  background-position-x: 33.33333333%;
  background-image: url("/themes/custom/tpp/images/social_white.svg");
}
.social-block.white .ico--tw,
.field-social.white .ico--tw {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  background-image: url("/themes/custom/tpp/images/social_black.svg");
  background-position-x: 100%;
  background-image: url("/themes/custom/tpp/images/social_white.svg");
}
.stan-contact dt,
.field-contact dt {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.stan-contact dd,
.field-contact dd {
  margin-bottom: 0.5em;
}
.stan-contact.black .ico--mail,
.field-contact.black .ico--mail {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  background-image: url("/themes/custom/tpp/images/icons_stan_white.svg");
  background-position-x: 66.66666667%;
  background-image: url("/themes/custom/tpp/images/icons_stan.svg");
}
.stan-contact.black .ico--phone,
.field-contact.black .ico--phone {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  background-image: url("/themes/custom/tpp/images/icons_stan_white.svg");
  background-position-x: 100%;
  background-image: url("/themes/custom/tpp/images/icons_stan.svg");
}
.stan-contact.black .ico--map,
.field-contact.black .ico--map {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  background-image: url("/themes/custom/tpp/images/icons_stan_white.svg");
  background-position-x: 0;
  background-image: url("/themes/custom/tpp/images/icons_stan.svg");
}
.stan-contact.black .ico--time,
.field-contact.black .ico--time {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  background-image: url("/themes/custom/tpp/images/icons_stan_white.svg");
  background-position-x: 33.33333333%;
  background-image: url("/themes/custom/tpp/images/icons_stan.svg");
}
.stan-contact.white,
.field-contact.white {
  color: white;
}
.stan-contact.white .ico--mail,
.field-contact.white .ico--mail {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  background-image: url("/themes/custom/tpp/images/icons_stan_white.svg");
  background-position-x: 66.66666667%;
}
.stan-contact.white .ico--phone,
.field-contact.white .ico--phone {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  background-image: url("/themes/custom/tpp/images/icons_stan_white.svg");
  background-position-x: 100%;
}
.stan-contact.white .ico--map,
.field-contact.white .ico--map {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  background-image: url("/themes/custom/tpp/images/icons_stan_white.svg");
  background-position-x: 0;
}
.stan-contact.white .ico--time,
.field-contact.white .ico--time {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  background-image: url("/themes/custom/tpp/images/icons_stan_white.svg");
  background-position-x: 33.33333333%;
}
.stan-contact a,
.field-contact a,
.stan-contact.no-link,
.field-contact.no-link {
  display: inline-flex;
  align-items: flex-end;
}
.stan-contact a.center,
.field-contact a.center,
.stan-contact.no-link.center,
.field-contact.no-link.center {
  align-items: center;
}
.stan-contact a > .ico,
.field-contact a > .ico,
.stan-contact.no-link > .ico,
.field-contact.no-link > .ico {
  flex-shrink: 0;
}
.stan-contact .ico,
.field-contact .ico {
  margin-right: 0.5em;
}
a.field-contact {
  display: inline-flex;
  align-items: flex-end;
}
.contact-info a {
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.contact-info > .address {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
}
.contact-info > .address::before {
  width: 50px;
  height: 50px;
}
nav.breadcrumb {
  width: 96%;
  max-width: 78rem;
  margin: 0 auto;
  padding: 2em 0;
}
nav.breadcrumb a {
  font-size: inherit;
  text-decoration: none;
  color: #3f4e55;
}
nav.breadcrumb ol {
  display: flex;
}
nav.breadcrumb ol > li {
  font-size: 0.8em;
  color: #b4c8d2;
}
nav.breadcrumb ol > li + li {
  position: relative;
  padding-left: 3em;
}
nav.breadcrumb ol > li + li::before {
  content: '';
  display: block;
  position: absolute;
  width: 0.5em;
  height: 0.9em;
  background-repeat: no-repeat;
  background-image: url("/themes/custom/tpp/images/caret_right.svg");
  background-size: contain;
  background-position: center;
  left: 1.5em;
  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;
  }
}
main.content {
  padding-top: 6rem;
  min-height: 50vh;
}
@media all and (max-width: 62rem) {
  main.content {
    padding-top: 4.5rem;
  }
}
/*============================ Navbar ===================================== */
header#navbar {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  z-index: 99;
  background-color: white;
  height: 6rem;
  transition: height 200ms ease-in;
}
@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 .stan-praha {
  text-transform: uppercase;
  color: white;
  font-weight: bold;
  position: relative;
  font-size: 1.25em;
  display: flex;
  align-items: center;
  padding: 0 1.5em;
  height: 3em;
  top: calc((6rem / 2) - 1.3em);
  margin-right: 1em;
  transition: font-size 200ms ease-in, top 200ms ease-in;
}
header#navbar .stan-praha::before {
  z-index: 9;
  content: '';
  display: block;
  position: absolute;
  top: -0.25em;
  left: 0;
  width: 0;
  height: 0;
  border-right: 1em solid transparent;
  border-bottom-width: 0.35em;
  border-bottom-style: solid;
  border-bottom-color: inherit;
}
header#navbar .stan-praha .klic {
  width: 3.5em;
  height: 1.6em;
  position: absolute;
  right: 1.5em;
  top: -0.8em;
}
header#navbar > #block-tpp-branding {
  display: flex;
  align-items: center;
  max-width: 14.5em;
  padding: 0 0.8em;
  transition: padding 200ms ease-in;
}
header#navbar > #block-tpp-branding img {
  transition: width 200ms ease-in;
  max-height: 4.5rem;
  width: calc((6rem - 0.75rem) * 22 / 9);
}
header#navbar > nav {
  -webkit-flex: 5 1 0;
  -moz-flex: 5 1 0;
  -ms-flex: 5 1 0;
  flex: 5 1 0;
  max-width: 45em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
header#navbar > nav#block-tpp-main-menu .stan-social {
  display: none;
}
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;
}
@media all and (max-width: 62rem) {
  header#navbar .menu--label {
    display: block;
    font-size: 0.625em;
    font-weight: bold;
    text-transform: uppercase;
    bottom: -1.6rem;
    position: relative;
    margin-left: -0.1rem;
    color: #b4c8d2;
  }
}
.icon--burger {
  display: none;
}
body.stan-scrolled header#navbar {
  height: 4.2rem;
}
body.stan-scrolled header#navbar > #block-tpp-branding img {
  width: calc((6rem * 0.7 - 0.75rem) * 22 / 9);
}
body.stan-scrolled header#navbar .stan-praha {
  font-size: 0.9em;
  top: calc((6rem * 0.7 / 2) - 1.3em);
}
@media (max-width: 62rem) {
  .user-logged-in #navbar.fixed {
    top: 0;
  }
  #toolbar-administration {
    display: none;
  }
  body {
    padding-top: 5px !important;
  }
  body.toolbar-tray-open.toolbar-vertical.toolbar-fixed {
    margin-left: 0!important;
  }
  body.stan-scrolled {
    padding-top: 5px !important;
  }
  body.stan-scrolled header#navbar {
    height: 4.5rem;
  }
  body.stan-scrolled header#navbar > #block-tpp-branding img {
    width: calc((4.5rem - 0.75rem) * 22 / 9);
  }
  body.stan-scrolled header#navbar .stan-praha {
    top: calc((4.5rem / 2) - 1.3em);
  }
  header#navbar {
    justify-content: flex-start;
  }
  header#navbar .stan-praha {
    font-size: 0.9em;
    top: calc((4.5rem / 2) - 1.3em);
  }
  header#navbar > #block-tpp-branding img {
    width: calc((4.5rem - 0.75rem) * 22 / 9);
  }
}
@media (max-width: 23.5rem) {
  header#navbar > #block-tpp-branding img {
    width: calc((4.5rem - 1.25rem) * 22 / 9);
  }
  header#navbar .stan-praha {
    font-size: 0.8em;
  }
}
/*=====================  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.is-active > .link__title {
  font-weight: bold;
}
.menu__item--append > .menu__link {
  font-style: italic;
}
.menu__link--main {
  color: #3f4e55;
  width: 100%;
  display: table;
  text-align: center;
  text-decoration: none;
  padding: 1em 1.3em;
  font-size: 0.875em;
  font-weight: 500;
}
.menu__link--main span {
  display: table-cell;
  vertical-align: middle;
}
.menu__link--main:hover,
.menu__link--main.is-active {
  color: #5bc5f2;
  text-decoration: none;
}
.menu__link--main:hover,
.menu__item--main:hover > .menu__link--main {
  color: #5bc5f2;
}
.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 #3f4e55;
  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: #5bc5f2;
}
.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;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  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;
  }
  header#navbar nav#block-tpp-main-menu {
    position: absolute;
    right: -22em;
    top: 4.5rem;
    width: 22em;
    max-width: 100vw;
    height: calc(100vh - 4.5rem - 5px);
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1em;
    padding-left: 3em;
    background-color: white;
    border-top: 0.15em solid #f3f5f6;
    transition: right 300ms cubic-bezier(0.77, 0, 0.175, 1);
  }
  header#navbar nav#block-tpp-main-menu .stan-social {
    display: block;
    padding-left: 1em;
    margin-top: 1em;
  }
  header#navbar > .stan-social {
    position: absolute;
    right: 0;
    max-height: 0;
    overflow: hidden;
    top: 4.5rem;
  }
  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;
    padding: 1.25em 1em;
    overflow: hidden;
  }
  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.2em);
    right: 1.75em;
    width: 1.8em;
    height: 1.5em;
    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: 1.8em;
    height: 0.216em;
    background: #3f4e55;
    position: absolute;
    top: 0;
    left: 0;
  }
  .icon--burger__center {
    top: 0.492em;
    opacity: 1;
  }
  .icon--burger__bottom {
    top: 0.984em;
  }
  .navbar--opened .icon--burger .icon--burger__center {
    opacity: 0;
  }
  .navbar--opened .icon--burger .icon--burger__top {
    transform: rotate(45deg);
    top: 0.6em;
  }
  .navbar--opened .icon--burger .icon--burger__bottom {
    transform: rotate(-45deg);
    top: 0.6em;
  }
}
/*================================ 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;
}
body[class*="page--user"] #block-tpp-page-title,
body[class*="page--user"] #block-pagetitle {
  margin-top: -6rem;
  height: calc(6rem + 9em);
  padding-top: 6rem;
  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: #3f4e55;
  background: white;
  padding: 1rem 1.75rem;
  border-radius: 0.1rem;
  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;
  background: #afca0b;
  color: white;
}
body[class*="page--user"] form.user-login-form input[type=submit].arrow {
  position: relative;
  padding-right: calc(1.75rem + 1.5em);
}
body[class*="page--user"] form.user-login-form input[type=submit].arrow::after {
  content: '';
  display: block;
  position: absolute;
  width: 1.25em;
  height: 0.6875em;
  right: 0;
  top: calc(50% - 0.34375em);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
body[class*="page--user"] form.user-login-form input[type=submit].arrow::after {
  background-image: url("/themes/custom/tpp/images/arrow_right.svg");
}
body[class*="page--user"] form.user-login-form input[type=submit].arrow::after {
  right: 1.25em;
}
body[class*="page--user"] form.user-login-form input[type=submit].arrow {
  position: relative;
  padding-right: calc(1.75rem + 1.5em);
}
body[class*="page--user"] form.user-login-form input[type=submit].arrow::after {
  content: '';
  display: block;
  position: absolute;
  width: 1.25em;
  height: 0.6875em;
  right: 0;
  top: calc(50% - 0.34375em);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
body[class*="page--user"] form.user-login-form input[type=submit].arrow::after {
  background-image: url("/themes/custom/tpp/images/arrow_right.svg");
}
body[class*="page--user"] form.user-login-form input[type=submit].arrow::after {
  right: 1.25em;
}
/*================================ 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: 2em;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  background-color: #3f4e55;
  color: #b4c8d2;
}
@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) {
  width: 26rem;
  margin-bottom: 4em;
}
@media (max-width: 80rem) {
  footer.region--footer > *:first-child,
  footer.region--footer > :nth-child(2),
  footer.region--footer > :nth-child(3) {
    width: 32%;
  }
}
footer.region--footer > *:nth-child(4),
footer.region--footer > :nth-child(5),
footer.region--footer > :nth-child(6),
footer.region--footer > :nth-child(7) {
  width: 19.5rem;
  margin-bottom: 5rem;
}
@media (max-width: 80rem) {
  footer.region--footer > *:nth-child(4),
  footer.region--footer > :nth-child(5),
  footer.region--footer > :nth-child(6),
  footer.region--footer > :nth-child(7) {
    width: 24%;
  }
}
footer.region--footer .stan-logo-alt img {
  margin: auto;
}
footer.region--footer > nav {
  padding: 0 1em 1em;
}
footer.region--footer > nav li + li {
  margin-top: 1em;
}
footer.region--footer > nav a.menu__link {
  text-decoration: none;
  font-weight: normal;
}
footer.region--footer > nav a.menu__link:hover {
  text-decoration: underline;
}
footer.region--footer .social-block {
  margin: auto;
}
footer.region--footer .menu__title {
  color: white;
  font-weight: bold;
  font-size: 1.1em;
  padding-bottom: 1.5em;
}
footer.region--footer .stan-contact {
  font-weight: bold;
}
.stan-copyright {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3rem;
  color: #3f4e55;
  background-color: white;
}
.stan-copyright small {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  max-width: 78rem;
}
@media all and (max-width: 80rem) {
  .stan-copyright small {
    margin: 0 2%;
  }
}
.stan-copyright p + p {
  margin: 0;
}
@media (max-width: 62rem) {
  footer.region--footer > :nth-child(4),
  footer.region--footer > :nth-child(5),
  footer.region--footer > :nth-child(6),
  footer.region--footer > :nth-child(7) {
    width: 36%;
    margin-bottom: 3rem;
  }
  footer.region--footer > :nth-child(6),
  footer.region--footer > :nth-child(7) {
    margin-bottom: 5rem;
  }
}
@media (max-width: 35rem) {
  footer.region.region--footer {
    flex-direction: column;
    flex-wrap: nowrap;
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4em;
  }
  footer.region.region--footer > div,
  footer.region.region--footer > nav {
    width: auto;
    margin-bottom: 1.5rem;
    padding-left: 0;
    padding-right: 0;
  }
  footer.region.region--footer .stan-copyright {
    text-align: center;
    width: 100%;
    margin-bottom: 0;
  }
  footer.region.region--footer .stan-copyright small {
    flex-direction: column;
    justify-content: center;
  }
  footer.region.region--footer .menu__title {
    padding-bottom: 1.2em;
  }
}
.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: #b4c8d2;
}
.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: #5bc5f2;
}
.pager__item:hover > a {
  color: white;
  background-color: #ffffff;
}
